This commit is contained in:
Michael H.G. Schmidt 2020-12-24 14:58:04 +01:00
parent 2c9efcd215
commit 5064e18944
3 changed files with 22 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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