diff --git a/wimscripts/SetupComplete.cmd b/wimscripts/SetupComplete.cmd index 98449d0..670acbe 100644 --- a/wimscripts/SetupComplete.cmd +++ b/wimscripts/SetupComplete.cmd @@ -1,5 +1,14 @@ -rem Disable Windows Hi Animation ... +@echo off +set SCRIPTS=%WINDIR%\Setup\scripts +rem Disable Windows Hi Animation ... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f +rem allow execution of any powershell script ... +powershell -Command ^ +"if (Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine) { 'POWERSHELL: Execution Policy set to ALL' }" + +rem call powershell stuff ... +powershell %SCRIPTS%\SetupComplete.ps1 + diff --git a/wimscripts/SetupComplete.ps1 b/wimscripts/SetupComplete.ps1 new file mode 100644 index 0000000..9ab8a70 --- /dev/null +++ b/wimscripts/SetupComplete.ps1 @@ -0,0 +1,5 @@ +rem REMOVE all applications except the Store... + +Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage +Get-AppxProvisionedPackage -online | where-object {$_.name -notlike "*store*"} | Remove-AppxProvisionedPackage -online + diff --git a/wimscripts/finish-image.cmd b/wimscripts/finish-image.cmd index 0e5297b..9136014 100644 --- a/wimscripts/finish-image.cmd +++ b/wimscripts/finish-image.cmd @@ -1,5 +1,10 @@ -set SOURCES=c:\TEMP\Win10\sources -set MNT=c:\TEMP\WIM +@set SOURCES=c:\TEMP\Win10\sources +@set MNT=c:\TEMP\WIM + +@rd /S /Q %MNT%\Windows\Setup\scripts 1>nul 2>nul +@mkdir %MNT%\Windows\Setup\scripts 1>nul 2>nul +copy /Y SetupComplete*.cmd %MNT%\Windows\Setup\scripts +copy /Y SetupComplete*.ps1 %MNT%\Windows\Setup\scripts dism /Image:%MNT% /Cleanup-Image /StartComponentCleanup /ResetBase dism /Unmount-Wim /MountDir:%MNT% /Commit