From 34639dd6382b6bacad1040eefa81f8f19f2070f8 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sat, 13 Feb 2021 22:04:02 +0100 Subject: [PATCH] . --- scripts/deploy/OfflineRegistryFinder.cfg | 15 ++++---------- scripts/deploy/logon.cmd | 26 +++++++++++++++++++++--- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/scripts/deploy/OfflineRegistryFinder.cfg b/scripts/deploy/OfflineRegistryFinder.cfg index f26dfea..63936e3 100644 --- a/scripts/deploy/OfflineRegistryFinder.cfg +++ b/scripts/deploy/OfflineRegistryFinder.cfg @@ -1,15 +1,12 @@ [General] -MarkOddEvenRows=0 -ShowGridLines=0 +MarkOddEvenRows=1 +ShowGridLines=1 SaveFilterIndex=0 ShowInfoTip=1 ShowTimeInGMT=0 -RegHiveFolder1=C:\TEMP -RegHiveFolder2= -RegHiveFolder3= -TimeRangeFrom=01-01-1601 00:00:00 -TimeRangeTo=01-01-1601 00:00:00 TimeFilter=1 +RegHiveFolder1=c:\tools +RegHiveFolder2=C:\TEMP LastTimeValue=1 LastTimeUnit=2 FindStrMode=0 @@ -20,7 +17,3 @@ SearchInValueName=1 SearchInValue=1 UseMaxItemsFind=1 MaxItemsFind=100 -MainFont=00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 03 04 00 00 A9 00 00 00 67 0E 00 00 6E 06 00 00 -Columns=BA 03 00 00 78 00 01 00 E1 01 02 00 78 00 03 00 64 00 04 00 FA 00 05 00 03 01 06 00 C1 02 07 00 -Sort=0 diff --git a/scripts/deploy/logon.cmd b/scripts/deploy/logon.cmd index d56b843..f639e42 100644 --- a/scripts/deploy/logon.cmd +++ b/scripts/deploy/logon.cmd @@ -69,11 +69,31 @@ rem ##### echo disable search box on taskbar ... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^ - /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul + /v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul -echo disable multi tasking view button on taskbar ... +echo disable multi tasking view button on the taskbar ... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ - /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f 1>nul + /v "ShowTaskViewButton" /t REG_DWORD /d 0 /f 1>nul + +echo disable cortana button on the taskbar ... +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ + /v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul + +echo disable autotray for the taskbar ... +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ + /v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul + +echo disable notification center ... +reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ + /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul + +echo disable windows ink completely ... +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace" ^ + /v "AllowWindowsInkWorkspace" /t REG_DWORD /d 0 /f 1>nul + +echo remove store icon from taskbar ... +reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ + /v "NoPinningStoreToTaskbar" /t REG_DWORD /d 0 /f 1>nul echo restarting explorer ... taskkill /f /im explorer.exe 1>nul 2>nul