Old firefox datas
I can't delete old firefox datas folder from my desktop
All Replies (6)
Hi,
What happens when you try to do that?
It need administrator after I give it it says "seek permission from {username}"
Not sure what may cause this, but if you're an administrator on your device, you can try the following (assuming you're on Windows): Warning: this will permanently delete the folder and all the files inside, so make sure you don't need any of them before proceeding.
- Press Win+R.
- Enter cmd and press Ctrl+Shift+Enter.
- Windows should ask you to allow the Command Prompt make changes to your device. Click Yes.
- In the opened window, enter
rmdir /s /q "path/to/folder"(replace path/to/folder with the path to your folder) and press Enter.
You may have done a Refresh at some point. https://support.mozilla.org/en-US/kb/refresh-firefox-reset-add-ons-and-settings
Note: The refresh will place your old Firefox profile on your desktop in a folder named Old Firefox Data. If your problem persists, you can partially restore lost information by copying files to the newly created profile. If you no longer need this folder, we encourage you to delete it, since it contains sensitive information.
Denys said
Not sure what may cause this, but if you're an administrator on your device, you can try the following (assuming you're on Windows): Warning: this will permanently delete the folder and all the files inside, so make sure you don't need any of them before proceeding.
- Press Win+R.
- Enter cmd and press Ctrl+Shift+Enter.
- Windows should ask you to allow the Command Prompt make changes to your device. Click Yes.
- In the opened window, enter
rmdir /s /q "path/to/folder"(replace path/to/folder with the path to your folder) and press Enter.
This did absolutely nothing at all. All the commands ended with "access denied". Is there any other way to remove all this junk?
Modified
Margie Lazou said
This did absolutely nothing at all. All the commands ended with "access denied". Is there any other way to remove all this junk?
Hi Margie,
Try the following (replacing path/to/folder with the path to your folder):
- Press Win+R.
- Enter cmd and press Ctrl+Shift+Enter.
- Windows should ask you to allow the Command Prompt make changes to your device. Click Yes.
- In the Command Prompt, enter
takeown /f "path\to\folder" /r /d yand press Enter. - In the Command Prompt, enter
icacls "path\to\folder" /grant %username%:F /tand press Enter. - Close all your opened applications, except of the Command Prompt
- Press Win+R.
- Enter resmon and press Enter. A Windows Resource Monitor window will open.
- In the Search Handles, paste your path\to\folder (e.g., copied from the Command Prompt) and press Enter.
- Pay attention to the PID column. Now you'll force-stop all the processes using the folder.
- For each of the processes listed, in the Command Prompt run
taskkill /PID <pid_number> /F(replacing <pid_number> with the corresponding number from the Resource Monitor PID column). - In the Command Prompt, run
rmdir /s /q "path/to/folder"again.
Does that help?
Modified