.
This commit is contained in:
parent
2c9efcd215
commit
5064e18944
@ -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
|
||||
|
||||
|
5
wimscripts/SetupComplete.ps1
Normal file
5
wimscripts/SetupComplete.ps1
Normal 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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user