Skip to content

Instantly share code, notes, and snippets.

@fret2buzz
Created January 11, 2014 23:21
Show Gist options
  • Select an option

  • Save fret2buzz/8378321 to your computer and use it in GitHub Desktop.

Select an option

Save fret2buzz/8378321 to your computer and use it in GitHub Desktop.
delete folder with all subfolders
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