diff --git a/scripts/deploy/logon.cmd b/scripts/deploy/logon.cmd index 95ffa15..73855da 100644 --- a/scripts/deploy/logon.cmd +++ b/scripts/deploy/logon.cmd @@ -4,6 +4,22 @@ set TOOLS=c:\tools echo ####### %0 ####### +echo show workplace icon ... +echo add This PC icon for current user on desktop Windows 10 ... +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" ^ + /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^ + /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f + +echo add userhome icon on windows 10 desktop for current user +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" ^ + /v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0 /f +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^ + /v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0 /f + +rem refresh desktop (W10 style) +ie4uinit.exe -show + echo remove wallpaper ... reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters diff --git a/scripts/tweaks/contextmenu_systemsettings.reg b/scripts/tweaks/contextmenu_systemsettings.reg index fe6061c..5f316d9 100644 Binary files a/scripts/tweaks/contextmenu_systemsettings.reg and b/scripts/tweaks/contextmenu_systemsettings.reg differ diff --git a/scripts/tweaks/win10_disable_lockscreen.reg b/scripts/tweaks/win10_disable_lockscreen.reg index 84000dc..5bcd4ad 100644 Binary files a/scripts/tweaks/win10_disable_lockscreen.reg and b/scripts/tweaks/win10_disable_lockscreen.reg differ