quick access bugfix

This commit is contained in:
Michael H.G. Schmidt 2021-03-31 22:36:57 +02:00
parent ebb1f49c47
commit 42dd1704ec

View File

@ -160,6 +160,11 @@ echo make explorer show ThisPC on top ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "LaunchTo" /t REG_DWORD /d 1 /f 1>nul /v "LaunchTo" /t REG_DWORD /d 1 /f 1>nul
echo cleanup 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 taskkill /f /im explorer.exe 2>nul
rem sleep 2 seconds ... rem sleep 2 seconds ...
@ -240,11 +245,6 @@ rd /S /Q %USERPROFILE%\Links 2>nul
echo Searches ... echo Searches ...
rd /S /Q %USERPROFILE%\Searches 2>nul rd /S /Q %USERPROFILE%\Searches 2>nul
echo 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. echo.
echo starting workstation service ... echo starting workstation service ...
net start workstation 1>nul 2>nul net start workstation 1>nul 2>nul