This commit is contained in:
Michael H.G. Schmidt 2021-02-13 22:04:02 +01:00
parent eb2cf72d8d
commit 34639dd638
2 changed files with 27 additions and 14 deletions

View File

@ -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

View File

@ -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