w10install/wimscripts/SetupComplete.cmd

37 lines
1.0 KiB
Batchfile
Raw Normal View History

2020-12-24 14:58:04 +01:00
@echo off
set SCRIPTS=%WINDIR%\Setup\scripts
2020-12-25 15:05:19 +01:00
set LOG=%SCRIPTS%\SetupComplete.txt
2020-12-23 14:46:12 +01:00
2020-12-25 15:05:19 +01:00
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
echo ####### %0 #######
date /t
time /t
echo DISABLE Windows "Hi" animation ...
@echo on
2020-12-23 14:46:12 +01:00
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
2020-12-25 15:05:19 +01:00
@echo off
echo.
2020-12-23 14:46:12 +01:00
2020-12-24 14:58:04 +01:00
rem allow execution of any powershell script ...
2020-12-25 15:05:19 +01:00
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
2020-12-24 14:58:04 +01:00
powershell -Command ^
2020-12-25 15:05:19 +01:00
"$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
} ^
else { ^
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
}"
echo.
2020-12-24 14:58:04 +01:00
rem call powershell stuff ...
2020-12-25 15:05:19 +01:00
powershell -Command %SCRIPTS%\SetupComplete.ps1
date /t
time /t
echo ####### %0 #######
2020-12-24 14:58:04 +01:00