CentBrowser Forum
BATCH FILE TO CLEAR BROWSER HISTORY - Printable Version

+- CentBrowser Forum (https://www.centbrowser.net/en)
+-- Forum: Members Area (https://www.centbrowser.net/en/forumdisplay.php?fid=3)
+--- Forum: General Discuss (https://www.centbrowser.net/en/forumdisplay.php?fid=5)
+--- Thread: BATCH FILE TO CLEAR BROWSER HISTORY (/showthread.php?tid=4032)



BATCH FILE TO CLEAR BROWSER HISTORY - billbrown45 - 05-27-2021

Hello All, Novice here.  Looking for the commands to build a batch file that will clear browser history and then shutdown the computer.  Any help would be greatly appreciated...

BillBrown45


RE: BATCH FILE TO CLEAR BROWSER HISTORY - CentBrowser - 05-28-2021

You need to replace the path of "XXX\User Data\..." with your own path.
Code:
Clearing browser history...
@del /f /s /q "XXX\User Data\Default\History"
@del /f /s /q "XXX\User Data\Default\History-journal"
Shutting down the computer...
@shutdown /p /f



RE: BATCH FILE TO CLEAR BROWSER HISTORY - billbrown45 - 05-29-2021

(05-28-2021, 04:46 PM)CentBrowser Wrote: You need to replace the path of "XXX\User Data\..." with your own path.
Code:
Clearing browser history...
@del /f /s /q "XXX\User Data\Default\History"
@del /f /s /q "XXX\User Data\Default\History-journal"
Shutting down the computer...
@shutdown /p /f
Thanks ~~ Didn't quite work...HISTORY and HISTORY-JOURNAL went away and the entries remain.  I have attached an image...


RE: BATCH FILE TO CLEAR BROWSER HISTORY - CentBrowser - 05-30-2021

(05-29-2021, 12:03 AM)billbrown45 Wrote: Thanks ~~ Didn't quite work...HISTORY and HISTORY-JOURNAL went away and the entries remain.  I have attached an image...
These are Autofill items, not History.
You need to delete "Web Data" and "Web Data-journal" as well.


RE: BATCH FILE TO CLEAR BROWSER HISTORY - billbrown45 - 06-01-2021

Thanks and I will try this....