• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
TRIGGERcmd
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Combine two commands

Windows
4
4
2.0k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M
    mark kreger
    last edited by mark kreger May 13, 2019, 5:08 AM May 13, 2019, 5:06 AM

    Is there a way to combine delete browser history and the clean up commands? Possibly clearing Chromes history as well as internet explorer?

    R 1 Reply Last reply May 13, 2019, 10:58 PM Reply Quote 0
    • R
      Russ @mark kreger
      last edited by May 13, 2019, 10:58 PM

      @mark-kreger, you could create a c:\tools folder, and in it, create a ClearHistory.bat file in it with these contents:

      REM Clear IE history:
      rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
      
      REM Clear Chrome history:
      cd /d C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data
      del /s History*
      

      Then create a TRIGGERcmd command that runs c:\tools\ClearHistory.bat

      Russell VanderMey

      1 Reply Last reply Reply Quote 0
      • S
        StartServer
        last edited by May 11, 2020, 5:20 AM

        I have the issue that the cmd window stays open after executing the bat file.
        Usually cmd.exe /c or start /c would close the window. Here adding /c would not work at all. 😢
        Thoughts?

        1 Reply Last reply Reply Quote 0
        • X
          Xander
          last edited by May 11, 2020, 2:31 PM

          You should just be able to add an "Exit" command at the end of your batch.

          Or, you can 'pipeline' your commands by putting the | command in between them:

           cd /d C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data | del /s History*
          
          1 Reply Last reply Reply Quote 0
          • First post
            Last post