Question

Delete browser data

  • 13 December 2022
  • 5 replies
  • 196 views

Badge +7

Hello I would to delete the browser data through CMD I used 

Application: Open program/file command to impelention but does not work

 

 


5 replies

Userlevel 7
Badge +13

Hi @Noura . ,

 

I can see in the Application path you have provided something which actually not the path of CMD. If you are trying to invoke CMD for this, please specify its complete path there and try.

Userlevel 3
Badge +6

Dear @Noura . 

 

Use proper location of Program/file so you can access the CMD command

"C:\Users\shahzaib.qureshiAppData\Roaming\Microsoft\Windows\Start Menu\Programs\System Tools\Command Prompt.lnk"

 

Regards,

Userlevel 5
Badge +9

@Noura . 

Have you try create a .bat file for this actions? i noticed the parameters but im not sure about the invoked script in the Location section.

Regards.

Userlevel 1
Badge +4

@Noura

A while ago, I had a problem with this, every time I cleared the cache and content, my A360 plugin would not work on the next run, and I had to configure again.

why are you deleting? You can run browser in incognito mode and enable this option, so it never save cache


 

 

Userlevel 5
Badge +14

Here are cmd line cmds to clear / delete files

 

erase "%TEMP%\*.*" /f /s /q
for /D %%i in ("%TEMP%\*") do RD /S /Q "%%i"

erase "%TMP%\*.*" /f /s /q
for /D %%i in ("%TMP%\*") do RD /S /Q "%%i"

erase "%ALLUSERSPROFILE%\TEMP\*.*" /f /s /q
for /D %%i in ("%ALLUSERSPROFILE%\TEMP\*") do RD /S /Q "%%i"

erase "%SystemRoot%\TEMP\*.*" /f /s /q
for /D %%i in ("%SystemRoot%\TEMP\*") do RD /S /Q "%%i"


@rem Clear IE cache - (Deletes Temporary Internet Files Only)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
erase "%LOCALAPPDATA%\Microsoft\Windows\Tempor~1\*.*" /f /s /q
for /D %%i in ("%LOCALAPPDATA%\Microsoft\Windows\Tempor~1\*") do RD /S /Q "%%i"

@rem Clear Google Chrome cache
erase "%LOCALAPPDATA%\Google\Chrome\User Data\*.*" /f /s /q
for /D %%i in ("%LOCALAPPDATA%\Google\Chrome\User Data\*") do RD /S /Q "%%i"


@rem Clear Firefox cache
erase "%LOCALAPPDATA%\Mozilla\Firefox\Profiles\*.*" /f /s /q
for /D %%i in ("%LOCALAPPDATA%\Mozilla\Firefox\Profiles\*") do RD /S /Q "%%i"

Reply