switch from shitty installwimtweak to commercial NTLite tool
This commit is contained in:
parent
b62847c5c7
commit
abd16d181d
43
03_MakeBoot.cmd
Normal file
43
03_MakeBoot.cmd
Normal 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
54
04_PrepareImage.cmd
Normal 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 ======
|
||||
|
@ -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 (
|
@ -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%
|
@ -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
|
||||
|
22
scripts/uninstall-pchealth.cmd
Normal file
22
scripts/uninstall-pchealth.cmd
Normal 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 #######
|
||||
|
@ -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,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,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 ...
|
||||
|
@ -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
|
||||
)
|
||||
|
||||
|
@ -12,7 +12,7 @@ GOTO END
|
||||
echo "usage: %0 <FILENAME>"
|
||||
|
||||
echo.
|
||||
dir /B %SOURCES%\*.esd %SOURCES%\*.wim
|
||||
dir /B %SOURCES%\*.wim
|
||||
echo.
|
||||
|
||||
:END
|
||||
|
@ -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%
|
||||
|
||||
|
@ -27,4 +27,5 @@ net use %DRIVE%: /DELETE 1>nul 2>nul
|
||||
net use %DRIVE%: \\%SERVER%\%SHARE% /USER:%USER% %PASSWORD%
|
||||
|
||||
echo READY.
|
||||
echo.
|
||||
echo.
|
||||
|
||||
|
@ -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,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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user