diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index f3a7443..978c1d7 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -102,6 +102,9 @@ echo ### DISABLE tasks ### echo ##################### echo. +call disable-accountpicture.cmd +echo. + call disable-logonbackground.cmd echo. diff --git a/scripts/config/user-192.png b/scripts/config/user-192.png new file mode 100644 index 0000000..7fc7853 Binary files /dev/null and b/scripts/config/user-192.png differ diff --git a/scripts/disable-accountpicture.cmd b/scripts/disable-accountpicture.cmd new file mode 100644 index 0000000..4a7e8d5 --- /dev/null +++ b/scripts/disable-accountpicture.cmd @@ -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 ####### +