Created
January 11, 2014 23:21
-
-
Save fret2buzz/8378321 to your computer and use it in GitHub Desktop.
delete folder with all subfolders
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
| rd /s/q "%allusersprofile%\start menu\programs\games" | |
| the rd stands for remove directory | |
| The /s switch is for all sub directories and files in the dir | |
| The /q switch is for quiet mode, which means it wont ask you for confirmation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment