2021-01-10 15:49:37 +01:00
|
|
|
@echo off
|
2023-02-20 07:56:50 +01:00
|
|
|
set LOG=%SystemDrive%\SetupComplete.txt
|
2021-01-10 15:49:37 +01:00
|
|
|
|
|
|
|
del /F %LOG% 1>nul 2>nul
|
|
|
|
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
|
|
|
|
shift /1
|
|
|
|
|
|
|
|
echo ####### %0 #######
|
|
|
|
date /t
|
|
|
|
time /t
|
|
|
|
echo.
|
|
|
|
|
|
|
|
echo 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
|
|
|
|
echo.
|
|
|
|
|
|
|
|
rem allow execution of any powershell script ...
|
|
|
|
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
|
|
|
|
powershell -Command ^
|
|
|
|
"$R=Get-ExecutionPolicy ; if ($R -eq 'Bypass') { ^
|
|
|
|
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
|
|
|
|
} ^
|
|
|
|
else { ^
|
|
|
|
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
|
|
|
|
}"
|
|
|
|
echo.
|
|
|
|
|
|
|
|
date /t
|
|
|
|
time /t
|
|
|
|
echo ####### %0 #######
|
|
|
|
|