Jump to content

Start Chrome - chrome://settings/clearBrowserData


MattX
 Share

Recommended Posts

I have a simple taskbar script which has some hotkeys setup + it brings up a list of a few websites. As clearing the cache is important at the moment for some users I wanted the option of chrome opening with the page that shows the clear browser settings. Thinking this would be straight forward like launching any browser eg:

chrome.exe www.autoitscript.com

I put in

chrome.exe chrome://settings/clearBrowserData

thinking it would launch and display that option page - it doesn't. It just defaults [ well in my case ] to google. I don't want to have to code deleting the user's %appdata%\AppData\Local\Google\Chrome\User Data\Default\Cache folder but will if required. It would be great just to get that page when they click on the option of use the hotkey.

Any ideas or work arounds anyone ?

Link to comment
Share on other sites

Ended up doing this:

Func ClearCache()
    If FileExists("C:Program FilesGoogleChromeApplicationchrome.exe") Then
    Run("C:Program FilesGoogleChromeApplicationchrome.exe about:blank", "C:Program FilesGoogleChromeApplication")
    WinWait("about:blank - Google Chrome")
    Send("^a chrome://settings/clearBrowserData{ENTER}")
    ElseIf FileExists("C:Program Files (x86)GoogleChromeApplicationchrome.exe") Then
    Run("C:Program Files (x86)GoogleChromeApplicationchrome.exe about:blank", "C:Program Files (x86)GoogleChromeApplication")
    WinWait("about:blank - Google Chrome")
    Send("^a chrome://settings/clearBrowserData{ENTER}")
Else
    MsgBox(48,"Chrome Not Installed !!","Error !!" & @CRLF & "You can't delete cache from chrome as it is not installed." & @CRLF & "Please contact the IT Helpdesk.")
    EndIf
EndFunc
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...