added vivetool to logon.cmd

This commit is contained in:
Michael H.G. Schmidt 2021-04-12 12:54:46 +02:00
parent 3f243083d8
commit c10ae7ca3b

View File

@ -101,45 +101,45 @@ echo ##### USER TWEAKS
echo #####
echo.
echo add "This PC" icon for current user on desktop Windows 10 ...
echo Adding "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 1>nul
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^
/v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f 1>nul
echo refresh desktop (W10 style)
echo Refreshing desktop (W10 style)
ie4uinit.exe -show
echo add seconds to clock ...
echo Adding seconds to clock ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "ShowSecondsInSystemClock" /t REG_DWORD /d 1 /f 1>nul
echo disable search box on taskbar ...
echo Disabling search box on taskbar ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^
/v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul
echo disable multi tasking view button on the taskbar ...
echo Disabling 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
echo disable cortana button on the taskbar ...
echo Disabling 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 ...
echo Disabling 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 ...
echo Disabling notification center ...
reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
/v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul
echo loading OpenShell config ...
echo Loading OpenShell config ...
rem config must be full qualified pathname (OpenShell BUG!)
set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml
"%ProgramFiles%"\Open-Shell\StartMenu.exe -xml %CONFIG%
echo removing user folders from explorer navigation pane ...
echo Removing user folders from explorer navigation pane ...
for %%K in (
{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}
{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}
@ -154,20 +154,20 @@ for %%K in (
/v "%%K" /t REG_DWORD /d 1 /f 1>nul
)
echo adding home folder to explorer navigation pane ...
echo Adding home folder to explorer navigation pane ...
reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{59031a47-3f72-44a7-89c5-5595fe6b30ee}" ^
/v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f 1>nul
echo make explorer show ThisPC on top ...
echo Make explorer show ThisPC on top ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "LaunchTo" /t REG_DWORD /d 1 /f 1>nul
echo cleanup recent files and libraries ...
echo Cleaning up recent files and libraries ...
del /F /Q %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\* 2>nul
del /F /Q %APPDATA%\Microsoft\Windows\Recent\* 2>nul
del /F /Q %APPDATA%\Microsoft\Windows\Libraries\* 2>nul
echo restarting explorer ...
echo Restarting explorer ...
taskkill /f /im explorer.exe 2>nul
rem sleep 2 seconds ...
ping 127.0.0.1 -n 2 >nul 2>&1
@ -180,50 +180,57 @@ echo 1 >%STATUSFILE%
echo.
echo #####
echo ##### cleaning ...
echo ##### CLEANING ...
echo #####
echo.
echo reorganizing start menu and desktop ...
echo Reorganizing start menu and desktop ...
echo ########################################
echo.
rem ... stupid OS problem #4
rem why the heck are "System Tools" installed per user ? stupid Microsoft.
echo System Tools ...
echo Moving system tools links ...
move /Y %STARTMENU%\"System Tools\*.*" ^
%STARTMENU_PUBLIC%\"System Tools" 2>nul
rem remove and rename some stuff ...
rem Removing and renaming some start menu stuff ...
move /Y %STARTMENU_PUBLIC%\"System Tools\computer.lnk" ^
%STARTMENU_PUBLIC%\"System Tools\This PC.lnk" 2>nul
del /F %STARTMENU_PUBLIC%\"System Tools\Command Prompt.lnk" 2>nul
rem ... stupid OS problem #5
rem same here for the accessibility tools. WHY ? stupid Microsoft.
echo Accessibility Tools ...
echo Moving accessibility tools ...
move /Y %STARTMENU%\"Accessibility\*.*" ^
%STARTMENU_PUBLIC%\"Accessibility" 2>nul
rem ... stupid OS problem #6
rem Edge is such a zombie!
echo Microsoft Edge ...
echo Removing microsoft edge links in start menu...
del /F %STARTMENU%\"Microsoft Edge.lnk" 2>nul
del /F %USERPROFILE%\"Desktop\Microsoft Edge.lnk" 2>nul
rem ... stupid OS problem #7
rem Rewards ? Really ? Seriously ?
echo Disabling nag screen in windows settings ...
%TOOLS%\vivetool delconfig 18299130 1
rem IE too!
echo IE, sigh ...
echo Removing IE links in start menu, sigh ...
del /F %STARTMENU%\"Accessories\Internet Explorer.lnk" 2>nul
rem finally remove some useless directories in the users start menu ...
echo Startmenu crap ...
echo Removing more startmenu crap ...
rd /S /Q %STARTMENU%\"Accessories" 2>nul
rd /S /Q %STARTMENU%\"Accessibility" 2>nul
rd /S /Q %STARTMENU%\"Administrative Tools" 2>nul
rd /S /Q %STARTMENU%\"Maintenance" 2>nul
rd /S /Q %STARTMENU%\"System Tools" 2>nul
rd /S /Q %STARTMENU%\"Windows Powershell" 2>nul
echo.
echo cleaning users home directory ...
echo Cleaning users home directory ...
echo ########################################
echo.
@ -246,7 +253,7 @@ echo Searches ...
rd /S /Q %USERPROFILE%\Searches 2>nul
echo.
echo starting workstation service ...
echo Starting workstation service ...
net start workstation 1>nul 2>nul
net config workstation