Skip to main content
Question

Delete browser data

  • December 13, 2022
  • 5 replies
  • 327 views

Forum|alt.badge.img+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

Padmakumar
Premier Pathfinder | Tier 7
Forum|alt.badge.img+15
  • Premier Pathfinder | Tier 7
  • December 13, 2022

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.


Zaibi
Forum|alt.badge.img+6
  • Navigator | Tier 3
  • December 13, 2022

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,


Raul Jaimes
Forum|alt.badge.img+9
  • Navigator | Tier 3
  • December 14, 2022

@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.


Emerson.F2
Forum|alt.badge.img+4
  • Navigator | Tier 3
  • December 16, 2022

@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


 

 


rbkadiyam
Premier Pathfinder | Tier 7
Forum|alt.badge.img+17
  • Premier Pathfinder | Tier 7
  • December 28, 2022

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"