Jump to content
Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Damme's windows stuff: Difference between revisions

From World Wide Wiegert Wiki - WWWW
No edit summary
No edit summary
Line 1: Line 1:
== DISM ==
<syntaxhighlight lang="bash" line="1">
Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\boot.wim -Index 1
Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\boot.wim -Index 2
dism /export-image /SourceImageFile:"install.esd" /SourceIndex:6 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity
Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\install.wim -Index 1
Add-WindowsDriver -Path C:\Temp\surface\mount\ -Driver C:\Temp\surface\unpacked\SurfaceUpdate\ -Recurse
Dismount-WindowsImage -Path C:\Temp\surface\mount\ -Save
DISM /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:install.esd /DestinationName:"Windows 10 Pro - Surface 5 drivers" /Compress:recovery
DISM /Get-WimInfo /WimFile:"install.esd"
dism /Delete-Image /ImageFile:install.esd /Index:3
DISM /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:new.esd /Compress:recovery
</syntaxhighlight>
== Fixes ==
== Fixes ==
* windows debloater https://github.com/Sycnex/Windows10Debloater
* windows debloater https://github.com/Sycnex/Windows10Debloater

Revision as of 07:01, 26 August 2023

DISM

Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\boot.wim -Index 1
Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\boot.wim -Index 2

dism /export-image /SourceImageFile:"install.esd" /SourceIndex:6 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

Mount-WindowsImage -Path C:\Temp\surface\mount\ -ImagePath .\install.wim -Index 1
Add-WindowsDriver -Path C:\Temp\surface\mount\ -Driver C:\Temp\surface\unpacked\SurfaceUpdate\ -Recurse
Dismount-WindowsImage -Path C:\Temp\surface\mount\ -Save

DISM /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:install.esd /DestinationName:"Windows 10 Pro - Surface 5 drivers" /Compress:recovery

DISM /Get-WimInfo /WimFile:"install.esd"
dism /Delete-Image /ImageFile:install.esd /Index:3
DISM /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:new.esd /Compress:recovery

Fixes

Other