switch from shitty installwimtweak to commercial NTLite tool

This commit is contained in:
Michael H.G. Schmidt 2022-12-25 20:52:46 +01:00
parent b62847c5c7
commit abd16d181d
19 changed files with 132 additions and 341 deletions

43
03_MakeBoot.cmd Normal file
View File

@ -0,0 +1,43 @@
@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
)
clear
echo =========================================
echo START of BOOT image creation process ...
echo =========================================
date /t
time /t
echo.
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo.
date /t
time /t
echo ======
echo READY.
echo ======

54
04_PrepareImage.cmd Normal file
View File

@ -0,0 +1,54 @@
@echo off
rem check for wim script directory ...
if NOT EXIST wim (
echo ERROR: script directory [ wim ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd wim
)
clear
echo =========================================
echo START of MAIN image preparation ...
echo =========================================
date /t
time /t
echo.
rem start scripts
for %%S in (
export-image.cmd
mount-image.cmd
) do (
echo ########## calling [ %%S ] ##########
call %%S
echo.
)
rem go back ...
cd ..
echo checking for NTLite ...
if NOT EXIST %NTLITE% (
echo.
echo ERROR: program [ NTLite ] NOT FOUND!
exit /b
) else (
echo calling NTLite ...
rem stupid windows: the "" are needed or NTlite will not be started - sigh -
start /B "" %NTLITE%
)
echo.
date /t
time /t
echo ======
echo READY.
echo ======

View File

@ -10,26 +10,17 @@ if NOT EXIST wim (
)
clear
echo ===================================
echo START of image creation process ...
echo ===================================
echo =========================================
echo END of MAIN image preparation ...
echo =========================================
date /t
time /t
echo.
echo cleanup ...
del /F Apps*.txt 2>nul
del /F Packages*.txt 2>nul
rem start scripts
for %%S in (
mount-boot.cmd
finish-boot.cmd
export-image.cmd
mount-image.cmd
remove-apps.cmd
finish-image.cmd
) do (

View File

@ -37,22 +37,8 @@ echo using image %ISOFILE% ...
echo mounting disk image (iso) with powershell ...
powershell Mount-DiskImage -ImagePath %ISOFILE%
set answer=
:askyes
set /p answer="copy windows image (WIM) files (Y/N)? "
if /i "%answer:~,1%" EQU "Y" (
echo copying files from image to targetpath %USBDRIVE% ...
robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10
GOTO CONT
)
if /i "%answer:~,1%" EQU "N" (
echo copying files from image to targetpath %USBDRIVE% ...
robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim /XF *.esd
goto CONT
)
echo Please type Y or N.
goto askyes
:CONT
echo copying files from image to targetpath %USBDRIVE% ...
robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim
echo unmounting disk image (iso) ...
powershell Dismount-Diskimage -ImagePath %ISOFILE%

View File

@ -1,7 +1,7 @@
@echo off
set SOURCES=c:\TEMP\W10\sources
set BOOT=boot.wim
set IMAGE=install.esd
set IMAGE=install.wim
set SCRIPT_SETTINGS=scripts\settings.cmd
set COMPANY_SETTINGS=company\settings.cmd

View File

@ -0,0 +1,22 @@
@echo off
echo ####### %0 #######
echo KILLING PC health check ...
taskkill /f /im PCHealthCheck.exe > NUL 2>&1
echo DELETING PC health check folder ...
rd "%ProgramFiles%\PCHealthCheck" /Q /S > NUL 2>&1
echo remove PC health check from application list ...
reg DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{7B1FCD52-8F6B-4F12-A143-361EA39F5E7C}" /f > NUL 2>&1
echo removing PC health check registry keys ...
reg DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealthCheck" /f > NUL 2>&1
reg DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHC" /f > NUL 2>&1
echo removing link in Start menu ...
del /F "%ProgramData%\Microsoft\Windows\Start Menu\Programs\PC Health Check.lnk"
echo ####### %0 #######

View File

@ -4,7 +4,6 @@ https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip
https://curl.se/windows/dl-7.79.1/curl-7.79.1-win64-mingw.zip curl.zip
https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe

1 https://www.7-zip.org/a/7z1900-x64.msi 7z-setup.msi
4 https://curl.se/windows/dl-7.79.1/curl-7.79.1-win64-mingw.zip curl.zip
5 https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe
6 http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip
https://www.deskmodder.de/blog/wp-content/uploads/2018/06/install-wim-tweak.zip installwimtweak.zip
7 https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe
8 https://www.nirsoft.net/utils/offlineregistryfinder-x64.zip offlineregistryfinder.zip
9 https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe openshell-setup.exe

View File

@ -1,37 +0,0 @@
549981C3F5F10_1.1911.21713.0_neutral_~_8wekyb3d8bbwe
BingWeather_4.25.20211.0_neutral_~_8wekyb3d8bbwe
DesktopAppInstaller_2019.125.2243.0_neutral_~_8wekyb3d8bbwe
GetHelp_10.1706.13331.0_neutral_~_8wekyb3d8bbwe
Getstarted_8.2.22942.0_neutral_~_8wekyb3d8bbwe
HEIFImageExtension_1.0.22742.0_x64__8wekyb3d8bbwe
Microsoft3DViewer_6.1908.2042.0_neutral_~_8wekyb3d8bbwe
MicrosoftEdge.Stable_84.0.522.52_neutral__8wekyb3d8bbwe
MicrosoftOfficeHub_18.1903.1152.0_neutral_~_8wekyb3d8bbwe
MicrosoftSolitaireCollection_4.4.8204.0_neutral_~_8wekyb3d8bbwe
MicrosoftStickyNotes_3.6.73.0_neutral_~_8wekyb3d8bbwe
MixedReality.Portal_2000.19081.1301.0_neutral_~_8wekyb3d8bbwe
MSPaint_2019.729.2301.0_neutral_~_8wekyb3d8bbwe
Office.OneNote_16001.12026.20112.0_neutral_~_8wekyb3d8bbwe
People_2019.305.632.0_neutral_~_8wekyb3d8bbwe
ScreenSketch_2019.904.1644.0_neutral_~_8wekyb3d8bbwe
SkypeApp_14.53.77.0_neutral_~_kzf8qxf38zg5c
VP9VideoExtensions_1.0.22681.0_x64__8wekyb3d8bbwe
Wallet_2.4.18324.0_neutral_~_8wekyb3d8bbwe
WebMediaExtensions_1.0.20875.0_neutral_~_8wekyb3d8bbwe
WebpImageExtension_1.0.22753.0_x64__8wekyb3d8bbwe
Windows.Photos_2019.19071.12548.0_neutral_~_8wekyb3d8bbwe
WindowsAlarms_2019.807.41.0_neutral_~_8wekyb3d8bbwe
WindowsCamera_2018.826.98.0_neutral_~_8wekyb3d8bbwe
windowscommunicationsapps_16005.11629.20316.0_neutral_~_8wekyb3d8bbwe
WindowsFeedbackHub_2019.1111.2029.0_neutral_~_8wekyb3d8bbwe
WindowsMaps_2019.716.2316.0_neutral_~_8wekyb3d8bbwe
WindowsSoundRecorder_2019.716.2313.0_neutral_~_8wekyb3d8bbwe
Xbox.TCUI_1.23.28002.0_neutral_~_8wekyb3d8bbwe
XboxApp_48.49.31001.0_neutral_~_8wekyb3d8bbwe
XboxGameOverlay_1.46.11001.0_neutral_~_8wekyb3d8bbwe
XboxGamingOverlay_2.34.28001.0_neutral_~_8wekyb3d8bbwe
XboxIdentityProvider_12.50.6001.0_neutral_~_8wekyb3d8bbwe
XboxSpeechToTextOverlay_1.17.29001.0_neutral_~_8wekyb3d8bbwe
YourPhone_2019.430.2026.0_neutral_~_8wekyb3d8bbwe
ZuneMusic_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe
ZuneVideo_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe
1 549981C3F5F10_1.1911.21713.0_neutral_~_8wekyb3d8bbwe
2 BingWeather_4.25.20211.0_neutral_~_8wekyb3d8bbwe
3 DesktopAppInstaller_2019.125.2243.0_neutral_~_8wekyb3d8bbwe
4 GetHelp_10.1706.13331.0_neutral_~_8wekyb3d8bbwe
5 Getstarted_8.2.22942.0_neutral_~_8wekyb3d8bbwe
6 HEIFImageExtension_1.0.22742.0_x64__8wekyb3d8bbwe
7 Microsoft3DViewer_6.1908.2042.0_neutral_~_8wekyb3d8bbwe
8 MicrosoftEdge.Stable_84.0.522.52_neutral__8wekyb3d8bbwe
9 MicrosoftOfficeHub_18.1903.1152.0_neutral_~_8wekyb3d8bbwe
10 MicrosoftSolitaireCollection_4.4.8204.0_neutral_~_8wekyb3d8bbwe
11 MicrosoftStickyNotes_3.6.73.0_neutral_~_8wekyb3d8bbwe
12 MixedReality.Portal_2000.19081.1301.0_neutral_~_8wekyb3d8bbwe
13 MSPaint_2019.729.2301.0_neutral_~_8wekyb3d8bbwe
14 Office.OneNote_16001.12026.20112.0_neutral_~_8wekyb3d8bbwe
15 People_2019.305.632.0_neutral_~_8wekyb3d8bbwe
16 ScreenSketch_2019.904.1644.0_neutral_~_8wekyb3d8bbwe
17 SkypeApp_14.53.77.0_neutral_~_kzf8qxf38zg5c
18 VP9VideoExtensions_1.0.22681.0_x64__8wekyb3d8bbwe
19 Wallet_2.4.18324.0_neutral_~_8wekyb3d8bbwe
20 WebMediaExtensions_1.0.20875.0_neutral_~_8wekyb3d8bbwe
21 WebpImageExtension_1.0.22753.0_x64__8wekyb3d8bbwe
22 Windows.Photos_2019.19071.12548.0_neutral_~_8wekyb3d8bbwe
23 WindowsAlarms_2019.807.41.0_neutral_~_8wekyb3d8bbwe
24 WindowsCamera_2018.826.98.0_neutral_~_8wekyb3d8bbwe
25 windowscommunicationsapps_16005.11629.20316.0_neutral_~_8wekyb3d8bbwe
26 WindowsFeedbackHub_2019.1111.2029.0_neutral_~_8wekyb3d8bbwe
27 WindowsMaps_2019.716.2316.0_neutral_~_8wekyb3d8bbwe
28 WindowsSoundRecorder_2019.716.2313.0_neutral_~_8wekyb3d8bbwe
29 Xbox.TCUI_1.23.28002.0_neutral_~_8wekyb3d8bbwe
30 XboxApp_48.49.31001.0_neutral_~_8wekyb3d8bbwe
31 XboxGameOverlay_1.46.11001.0_neutral_~_8wekyb3d8bbwe
32 XboxGamingOverlay_2.34.28001.0_neutral_~_8wekyb3d8bbwe
33 XboxIdentityProvider_12.50.6001.0_neutral_~_8wekyb3d8bbwe
34 XboxSpeechToTextOverlay_1.17.29001.0_neutral_~_8wekyb3d8bbwe
35 YourPhone_2019.430.2026.0_neutral_~_8wekyb3d8bbwe
36 ZuneMusic_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe
37 ZuneVideo_2019.19071.19011.0_neutral_~_8wekyb3d8bbwe

View File

@ -1,6 +1,5 @@
@echo off
set SOURCES=c:\TEMP\W10\sources
set ESD=%SOURCES%\install.esd
set WIM=%SOURCES%\install.wim
set W10PRO=%SOURCES%\w10pro.wim
set STATEFILE=%SOURCES%\w10pro.txt
@ -15,33 +14,6 @@ if EXIST %STATEFILE% (
)
if EXIST %ESD% (
echo.
echo [%0] INFO: found %ESD%
echo [%0] INFO: deleting %WIM% ...
del %WIM% 2>nul
echo [%0] INFO: exporting image from %ESD% ...
dism /Export-Image ^
/SourceImageFile:%ESD% ^
/DestinationImageFile:%WIM% ^
/SourceName:"Windows 10 Pro" ^
/Compress:Max ^
/CheckIntegrity
if %ERRORLEVEL% NEQ 0 (
echo [%0] ERROR: while extracting %ESD%
exit /b
)
echo.
echo READY.
exit /b
)
if EXIST %WIM% (
rem cleanup ...

View File

@ -1,9 +1,7 @@
@echo off
set IMAGE=c:\TEMP\IMAGE
set SOURCES=c:\TEMP\W10\sources
set ESD=%SOURCES%\install.esd
set WIM=%SOURCES%\install.wim
set TEMPFILE=%SOURCES%\temp.esd
if NOT EXIST %WIM% (
echo.
@ -25,7 +23,7 @@ if %ERRORLEVEL% NEQ 0 (
)
echo [%0] INFO: showing directory contents :
dir %IMAGE%\Windows\Setup\scripts
dir %IMAGE%\Windows\Setup\scripts %IMAGE%\Windows\prompt-user.exe
echo [%0] INFO: doing cleanup on mountpoint %IMAGE% ...
dism /Image:%IMAGE% /Cleanup-Image /StartComponentCleanup /ResetBase
@ -33,23 +31,3 @@ dism /Image:%IMAGE% /Cleanup-Image /StartComponentCleanup /ResetBase
echo [%0] INFO: unmounting and committing changes to %WIM% ...
dism /Unmount-Wim /MountDir:%IMAGE% /Commit
echo [%0] INFO: directory of %IMAGE% :
dir %IMAGE%
echo [%0] INFO: exporting %WIM% to %TEMPFILE% ...
dism /Export-Image ^
/SourceImageFile:%WIM% ^
/DestinationImageFile:%TEMPFILE% ^
/SourceName:"Windows 10 Pro" ^
/Compress:Recovery ^
/CheckIntegrity
echo [%0] INFO: renaming new esd file to %ESD% ...
move /Y %TEMPFILE% %ESD%
rem delete wim file only in case there is an esd file ...
if EXIST %ESD% (
echo [%0] INFO: deleting %WIM%
del /F %SOURCES%\install.wim 2>nul
)

View File

@ -12,7 +12,7 @@ GOTO END
echo "usage: %0 <FILENAME>"
echo.
dir /B %SOURCES%\*.esd %SOURCES%\*.wim
dir /B %SOURCES%\*.wim
echo.
:END

View File

@ -1,6 +1,7 @@
@echo off
set SOURCES=c:\TEMP\W10\sources
set IMAGE=c:\TEMP\IMAGE
set NTLITE="%ProgramFiles%\NTLite\NTLite.exe"
echo creating image mountpoint ...
mkdir %IMAGE% 1>nul 2>nul
@ -8,6 +9,6 @@ mkdir %IMAGE% 1>nul 2>nul
rem set write access ...
attrib -R %SOURCES%\install.wim 2>nul
echo mounting install.IMAGE to %IMAGE% ...
echo mounting install.wim to %IMAGE% ...
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Name:"Windows 10 Pro" /MountDir:%IMAGE%

View File

@ -28,3 +28,4 @@ net use %DRIVE%: \\%SERVER%\%SHARE% /USER:%USER% %PASSWORD%
echo READY.
echo.

View File

@ -1,164 +0,0 @@
Adobe-Flash
Containers-ApplicationGuard
Containers-Client
Containers-DisposableClientVM
Containers-Guest-Gated
Containers-OptionalFeature
Containers-Server
DeviceAccess
HyperV
LanguageFeatures-WordBreaking
Media-FaceAnalysis
Media-Ocr
Microsoft-Composable-PlatformExtension
Microsoft-Hyper-V
Microsoft-IoTUAP-ShellExt-Tools
Microsoft-Mobile
Microsoft-PPIProjection
Microsoft-UtilityVM
Microsoft-Windows-3DAudio
Microsoft-Windows-ApiSetSchemaExtension-HyperV
Microsoft-Windows-AppCompat
Microsoft-Windows-AppManagement
Microsoft-Windows-AppServerClient
Microsoft-Windows-Backup
Microsoft-Windows-Basic-Http-Minio
Microsoft-Windows-BioEnrollment
Microsoft-Windows-BITS
Microsoft-Windows-Browser
Microsoft-Windows-BusinessScanning
Microsoft-Windows-Casting
Microsoft-Windows-Client-AssignedAccess
Microsoft-Windows-Client-EmbeddedExp
Microsoft-Windows-Client-Optional-Features
Microsoft-Windows-Client-ShellLauncher
Microsoft-Windows-Common-Modem
Microsoft-Windows-COM-MSMQ
Microsoft-Windows-Compression
Microsoft-Windows-ContactSupport
Microsoft-Windows-ContentDeliveryManager
Microsoft-Windows-CoreSystem-DebugTransports
Microsoft-Windows-Cortana
Microsoft-Windows-DataCenterBridging
Microsoft-Windows-DeviceSync
Microsoft-Windows-DirectoryServices
Microsoft-Windows-EnterpriseClientSync
Microsoft-Windows-FodMetadata
Microsoft-Windows-Geolocation
Microsoft-Windows-Hello-Face
Microsoft-Windows-Help
Microsoft-Windows-HVSI-Components
Microsoft-Windows-HyperV-OptionalFeature-HypervisorPlatform
Microsoft-Windows-HyperV-OptionalFeature-VirtualMachinePlatform
Microsoft-Windows-Identity-Foundation
Microsoft-Windows-IIS-WebServer
Microsoft-Windows-International
Microsoft-Windows-InternetExplorer
Microsoft-Windows-Internet
Microsoft-Windows-Killbits
Microsoft-Windows-LanguageEnablingComponents
Microsoft-Windows-LanguageFeatures
Microsoft-Windows-Legacy
Microsoft-Windows-Links
Microsoft-Windows-Lxss
Microsoft-Windows-Management-SecureAssessment
Microsoft-Windows-Migration
Microsoft-Windows-MiracastView
Microsoft-Windows-MobileBroadband
Microsoft-Windows-MobileCore
Microsoft-Windows-MobilePC
Microsoft-Windows-MRT10
Microsoft-Windows-MSMQ
Microsoft-Windows-MultiPoint-Connector
Microsoft-Windows-Network-Connectivity-Assistant
Microsoft-Windows-NetworkDiagnostics
Microsoft-Windows-Network-QoS
Microsoft-Windows-NFS
Microsoft-Windows-Not-Supported-On-LTSB
Microsoft-Windows-OfflineFiles
Microsoft-Windows-OneCore-Containers
Microsoft-Windows-OneDrive
Microsoft-Windows-ParentalControls
Microsoft-Windows-PAW-Feature
Microsoft-Windows-PeerDist
Microsoft-Windows-PeerToPeer
Microsoft-Windows-PerformanceCounters
Microsoft-Windows-PhotoBasic
Microsoft-Windows-Printing-InternetPrinting-Client
Microsoft-Windows-Printing-LocalPrinting-Enterprise
Microsoft-Windows-Printing-PremiumTools
Microsoft-Windows-Printing-PrintToPDFServices
microsoft-windows-printing-wfs-fod-package-Wrapper
Microsoft-Windows-Printing-WFS-FoD-Package
Microsoft-Windows-Printing-XPSServices
Microsoft-Windows-Provisioning
Microsoft-Windows-Proximity
Microsoft-Windows-QuickAssist
Microsoft-Windows-RDC
Microsoft-Windows-RemoteAssistance
Microsoft-Windows-RemoteDesktop
Microsoft-Windows-RemoteFX
Microsoft-Windows-RetailDemo
Microsoft-Windows-Search2
Microsoft-Windows-SearchEngine
Microsoft-Windows-SenseClient
Microsoft-Windows-Serial
Microsoft-Windows-ShareMedia
Microsoft-Windows-Shell-HomeGroup
Microsoft-Windows-Shell-SettingSync
Microsoft-Windows-Skype
Microsoft-Windows-SMB1Client-D
Microsoft-Windows-SMB1Deprecation-Group
Microsoft-Windows-SMB1
Microsoft-Windows-SMB1Server-D-Opt
Microsoft-Windows-SmbDirect-Opt
Microsoft-Windows-SmbDirect
Microsoft-Windows-SNMP
Microsoft-Windows-StorageService
Microsoft-Windows-Store
Microsoft-Windows-SystemRestore
Microsoft-Windows-TabletPC
Microsoft-Windows-TabletPCMath
microsoft-windows-tabletpcmath-package-Wrapper
Microsoft-Windows-TabShellExperience
Microsoft-Windows-TerminalServices
Microsoft-Windows-TextPrediction-Dictionaries
Microsoft-Windows-TextPrediction
Microsoft-Windows-TroubleShooting
Microsoft-Windows-TS
Microsoft-Windows-UpdateTargeting-ClientOS
Microsoft-Windows-UserExperience
microsoft-windows-userexperience-desktop-package-Wrapper
Microsoft-Windows-Virtualization-RemoteFX-User-Mode-Transport
Microsoft-Windows-Virtualization
Microsoft-Windows-VirtualPC
Microsoft-Windows-VirtualXP
Microsoft-Windows-WebcamExperience
Microsoft-Windows-WindowsFoundation-LanguagePack
Microsoft-Windows-WinOcr
Microsoft-Windows-WinRT
Microsoft-Windows-WinSATMediaFiles
Microsoft-Windows-WMIPerf
Microsoft-Windows-WordBreaking
Microsoft-Windows-WorkplaceJoin
Microsoft-Windows-Xps
Microsoft-Xbox
MSMQ-Driver-Package
MultiPoint
Networking-MPSSVC-Rules-EnterpriseEdition-Package
OpenSSH-Client-Package
openssh-client-package-Wrapper
RemoteDesktopServices
Sensors-Universal
Server-Help
Windows-Defender
WindowsSearchEngineSKU-Group
Microsoft-OneCore-Multimedia-CastingCommon
Microsoft-OneCore-Multimedia-CastingReceiver
Microsoft-OneCore-Multimedia-CastingTransmitter
Microsoft-OneCore-DeviceUpdateCenter
Microsoft-OneCore-DirectX-Database
Microsoft-OneCore-IsolatedUserMode
Microsoft-Onecore-SPP-VirtualDevice
Microsoft-OneCore-VirtualizationBasedSecurity
Microsoft-Windows-WMPNetworkSharingService
1 Adobe-Flash
2 Containers-ApplicationGuard
3 Containers-Client
4 Containers-DisposableClientVM
5 Containers-Guest-Gated
6 Containers-OptionalFeature
7 Containers-Server
8 DeviceAccess
9 HyperV
10 LanguageFeatures-WordBreaking
11 Media-FaceAnalysis
12 Media-Ocr
13 Microsoft-Composable-PlatformExtension
14 Microsoft-Hyper-V
15 Microsoft-IoTUAP-ShellExt-Tools
16 Microsoft-Mobile
17 Microsoft-PPIProjection
18 Microsoft-UtilityVM
19 Microsoft-Windows-3DAudio
20 Microsoft-Windows-ApiSetSchemaExtension-HyperV
21 Microsoft-Windows-AppCompat
22 Microsoft-Windows-AppManagement
23 Microsoft-Windows-AppServerClient
24 Microsoft-Windows-Backup
25 Microsoft-Windows-Basic-Http-Minio
26 Microsoft-Windows-BioEnrollment
27 Microsoft-Windows-BITS
28 Microsoft-Windows-Browser
29 Microsoft-Windows-BusinessScanning
30 Microsoft-Windows-Casting
31 Microsoft-Windows-Client-AssignedAccess
32 Microsoft-Windows-Client-EmbeddedExp
33 Microsoft-Windows-Client-Optional-Features
34 Microsoft-Windows-Client-ShellLauncher
35 Microsoft-Windows-Common-Modem
36 Microsoft-Windows-COM-MSMQ
37 Microsoft-Windows-Compression
38 Microsoft-Windows-ContactSupport
39 Microsoft-Windows-ContentDeliveryManager
40 Microsoft-Windows-CoreSystem-DebugTransports
41 Microsoft-Windows-Cortana
42 Microsoft-Windows-DataCenterBridging
43 Microsoft-Windows-DeviceSync
44 Microsoft-Windows-DirectoryServices
45 Microsoft-Windows-EnterpriseClientSync
46 Microsoft-Windows-FodMetadata
47 Microsoft-Windows-Geolocation
48 Microsoft-Windows-Hello-Face
49 Microsoft-Windows-Help
50 Microsoft-Windows-HVSI-Components
51 Microsoft-Windows-HyperV-OptionalFeature-HypervisorPlatform
52 Microsoft-Windows-HyperV-OptionalFeature-VirtualMachinePlatform
53 Microsoft-Windows-Identity-Foundation
54 Microsoft-Windows-IIS-WebServer
55 Microsoft-Windows-International
56 Microsoft-Windows-InternetExplorer
57 Microsoft-Windows-Internet
58 Microsoft-Windows-Killbits
59 Microsoft-Windows-LanguageEnablingComponents
60 Microsoft-Windows-LanguageFeatures
61 Microsoft-Windows-Legacy
62 Microsoft-Windows-Links
63 Microsoft-Windows-Lxss
64 Microsoft-Windows-Management-SecureAssessment
65 Microsoft-Windows-Migration
66 Microsoft-Windows-MiracastView
67 Microsoft-Windows-MobileBroadband
68 Microsoft-Windows-MobileCore
69 Microsoft-Windows-MobilePC
70 Microsoft-Windows-MRT10
71 Microsoft-Windows-MSMQ
72 Microsoft-Windows-MultiPoint-Connector
73 Microsoft-Windows-Network-Connectivity-Assistant
74 Microsoft-Windows-NetworkDiagnostics
75 Microsoft-Windows-Network-QoS
76 Microsoft-Windows-NFS
77 Microsoft-Windows-Not-Supported-On-LTSB
78 Microsoft-Windows-OfflineFiles
79 Microsoft-Windows-OneCore-Containers
80 Microsoft-Windows-OneDrive
81 Microsoft-Windows-ParentalControls
82 Microsoft-Windows-PAW-Feature
83 Microsoft-Windows-PeerDist
84 Microsoft-Windows-PeerToPeer
85 Microsoft-Windows-PerformanceCounters
86 Microsoft-Windows-PhotoBasic
87 Microsoft-Windows-Printing-InternetPrinting-Client
88 Microsoft-Windows-Printing-LocalPrinting-Enterprise
89 Microsoft-Windows-Printing-PremiumTools
90 Microsoft-Windows-Printing-PrintToPDFServices
91 microsoft-windows-printing-wfs-fod-package-Wrapper
92 Microsoft-Windows-Printing-WFS-FoD-Package
93 Microsoft-Windows-Printing-XPSServices
94 Microsoft-Windows-Provisioning
95 Microsoft-Windows-Proximity
96 Microsoft-Windows-QuickAssist
97 Microsoft-Windows-RDC
98 Microsoft-Windows-RemoteAssistance
99 Microsoft-Windows-RemoteDesktop
100 Microsoft-Windows-RemoteFX
101 Microsoft-Windows-RetailDemo
102 Microsoft-Windows-Search2
103 Microsoft-Windows-SearchEngine
104 Microsoft-Windows-SenseClient
105 Microsoft-Windows-Serial
106 Microsoft-Windows-ShareMedia
107 Microsoft-Windows-Shell-HomeGroup
108 Microsoft-Windows-Shell-SettingSync
109 Microsoft-Windows-Skype
110 Microsoft-Windows-SMB1Client-D
111 Microsoft-Windows-SMB1Deprecation-Group
112 Microsoft-Windows-SMB1
113 Microsoft-Windows-SMB1Server-D-Opt
114 Microsoft-Windows-SmbDirect-Opt
115 Microsoft-Windows-SmbDirect
116 Microsoft-Windows-SNMP
117 Microsoft-Windows-StorageService
118 Microsoft-Windows-Store
119 Microsoft-Windows-SystemRestore
120 Microsoft-Windows-TabletPC
121 Microsoft-Windows-TabletPCMath
122 microsoft-windows-tabletpcmath-package-Wrapper
123 Microsoft-Windows-TabShellExperience
124 Microsoft-Windows-TerminalServices
125 Microsoft-Windows-TextPrediction-Dictionaries
126 Microsoft-Windows-TextPrediction
127 Microsoft-Windows-TroubleShooting
128 Microsoft-Windows-TS
129 Microsoft-Windows-UpdateTargeting-ClientOS
130 Microsoft-Windows-UserExperience
131 microsoft-windows-userexperience-desktop-package-Wrapper
132 Microsoft-Windows-Virtualization-RemoteFX-User-Mode-Transport
133 Microsoft-Windows-Virtualization
134 Microsoft-Windows-VirtualPC
135 Microsoft-Windows-VirtualXP
136 Microsoft-Windows-WebcamExperience
137 Microsoft-Windows-WindowsFoundation-LanguagePack
138 Microsoft-Windows-WinOcr
139 Microsoft-Windows-WinRT
140 Microsoft-Windows-WinSATMediaFiles
141 Microsoft-Windows-WMIPerf
142 Microsoft-Windows-WordBreaking
143 Microsoft-Windows-WorkplaceJoin
144 Microsoft-Windows-Xps
145 Microsoft-Xbox
146 MSMQ-Driver-Package
147 MultiPoint
148 Networking-MPSSVC-Rules-EnterpriseEdition-Package
149 OpenSSH-Client-Package
150 openssh-client-package-Wrapper
151 RemoteDesktopServices
152 Sensors-Universal
153 Server-Help
154 Windows-Defender
155 WindowsSearchEngineSKU-Group
156 Microsoft-OneCore-Multimedia-CastingCommon
157 Microsoft-OneCore-Multimedia-CastingReceiver
158 Microsoft-OneCore-Multimedia-CastingTransmitter
159 Microsoft-OneCore-DeviceUpdateCenter
160 Microsoft-OneCore-DirectX-Database
161 Microsoft-OneCore-IsolatedUserMode
162 Microsoft-Onecore-SPP-VirtualDevice
163 Microsoft-OneCore-VirtualizationBasedSecurity
164 Microsoft-Windows-WMPNetworkSharingService

View File

@ -1,19 +0,0 @@
@echo off
set IMAGE=c:\TEMP\IMAGE
echo exporting APPS list BEFORE doing any changes ...
dism /Image:%IMAGE% /Get-ProvisionedAppxPackages 1>Apps-BEFORE.txt
FOR /F %%P in (apps-to-remove.csv) do (
echo removing APPX package [ Microsoft.%%P ]
dism /Image:%IMAGE% /Remove-ProvisionedAppxPackage /PackageName:Microsoft.%%P
)
echo exporting remaining APPS list ...
dism /Image:%IMAGE% /Get-ProvisionedAppxPackages 1>Apps-AFTER.txt
rem showing packages ...
dir Apps*.txt

View File

@ -1,37 +0,0 @@
@echo off
set IMAGE=c:\TEMP\IMAGE
rem the CHECKFILE is a file that will be monitored against deletion ...
set CHECKFILE=%IMAGE%\Windows\SysWOW64\mf.dll
echo exporting PACKAGE list BEFORE doing any changes ...
install_wim_tweak /p %IMAGE% /l
move /Y Packages.txt Packages-BEFORE.txt
rem ###################################
rem MAIN loop ( remove packages ) ...
rem ###################################
FOR /F %%P in (packages-to-remove.csv) do (
echo removing PACKAGE [ %%P ] ...
install_wim_tweak.exe /p %IMAGE% /c "%%P" /r /n
rem we will exit here in case the checkfile was deleted by a package removal ...
if NOT EXIST %CHECKFILE% (
echo ERROR: File %CHECKFILE% was deleted
exit /b
)
)
echo CLEANUP ...
del /F SOFTWAREBKP 1>nul 2>nul
echo exporting remaining PACKAGES list ...
install_wim_tweak /p %IMAGE% /l
move /Y Packages.txt Packages-AFTER.txt
rem showing package files ...
dir Packages*.txt

View File

@ -5,6 +5,7 @@ set BOOT=c:\TEMP\BOOT
echo unmounting image and discarding changes ...
dism /Unmount-Wim /MountDir:%IMAGE% /Discard
echo.
echo unmounting boot and discarding changes ...
dism /Unmount-Wim /MountDir:%BOOT% /Discard