Hello I would to delete the browser data through CMD I used
Application: Open program/file command to impelention but does not work
Hello I would to delete the browser data through CMD I used
Application: Open program/file command to impelention but does not work
Hi
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.
Dear
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,
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.
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
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"
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.