To update window, I converted my pen drive into bootable. But now when i want to delete it, I right click on a folder,the Delete option is missing from it.So how can I put it back? This is on a Windows 7 system.
1 Answer
Open a Command Prompt window and use the following syntax to delete a folder and sub-folders along with all the files in them:
rd "<drive:\folderpath>" /s
For example, if the folder path is E:\Boot, to delete it you'd use:
rd E:\Boot /s
If the folder path contains spaces, you need to enclose the path within double-quotes.
2