This commit is contained in:
Michael H.G. Schmidt 2021-01-14 00:43:00 +01:00
parent 06e6c42909
commit a123dbd8c1
3 changed files with 18 additions and 0 deletions

View File

@ -102,6 +102,9 @@ echo ### DISABLE tasks ###
echo ##################### echo #####################
echo. echo.
call disable-accountpicture.cmd
echo.
call disable-logonbackground.cmd call disable-logonbackground.cmd
echo. echo.

BIN
scripts/config/user-192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

View File

@ -0,0 +1,15 @@
@echo off
set TARGET="%ALLUSERSPROFILE%\Microsoft\User Account Pictures"
echo ####### %0 #######
echo disabling account pictures on logon screen ...
move /Y %TARGET%\user-192.png %TARGET%\user-192.bak
copy /Y config\user-192.png %TARGET%
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" ^
/v UseDefaultTile /t REG_DWORD /d 1 /f
echo ####### %0 #######