Last active
May 26, 2022 00:21
-
-
Save ijortengab/86fa9f1dc2b16b639af98d6a88f4f4ec to your computer and use it in GitHub Desktop.
Batch and Registry File for new Computer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; Created by: Shawn Brink | |
; http://www.tenforums.com | |
; Tutorial: http://www.tenforums.com/tutorials/2712-quick-access-add-remove-frequent-folders-windows-10-a.html | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] | |
"ShowFrequent"=dword:00000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; Created by: Shawn Brink | |
; http://www.tenforums.com | |
; Tutorial: http://www.tenforums.com/tutorials/2713-quick-access-add-remove-recent-files-windows-10-a.html | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] | |
"ShowRecent"=dword:00000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; Created by: Shawn Brink | |
; Created on: November 6th 2016 | |
; Tutorial: http://www.tenforums.com/tutorials/3734-file-explorer-open-pc-quick-access.html | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"LaunchTo"=dword:00000003 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Created by: Shawn Brink | |
:: http://www.tenforums.com | |
:: Tutorial: http://www.tenforums.com/tutorials/3476-recent-items-frequent-places-reset-clear.html | |
del /F /Q %APPDATA%\Microsoft\Windows\Recent\* | |
del /F /Q %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\* | |
del /F /Q %APPDATA%\Microsoft\Windows\Recent\CustomDestinations\* | |
taskkill /f /im explorer.exe | |
start explorer.exe | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment