Results 1 to 7 of 7

Thread: Closing out of processes

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default Closing out of processes

    Is there a way I can write a peice of code that closes out of chrome.exe with simba? If not batch? If not batch then Java?


    My computer tends to leave like 10 google chrome process's running after I have already closed them -.- and I am to lazy to always open up task manager and close them

  2. #2
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    You could do it with simba easily, but you could also leave them? That is how google chrome runs, multi-processes to have things running faster.
    Or you could also just close the process tree, that will kill them all in 1 click.




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  3. #3
    Join Date
    Jul 2012
    Posts
    437
    Mentioned
    10 Post(s)
    Quoted
    165 Post(s)

    Default

    try this as a batch file
    Code:
    taskkill /F /IM chrome.exe
    pause

  4. #4
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by [XoL] View Post
    You could do it with simba easily, but you could also leave them? That is how google chrome runs, multi-processes to have things running faster.
    Or you could also just close the process tree, that will kill them all in 1 click.
    Could I do this with simba

  5. #5
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Quote Originally Posted by RJJ95 View Post
    Could I do this with simba
    Couldn't you just write a script that press crtl alt del, then closes the process tree? idk seems pretty straight forward..besides for the fact you would just watch your computer manually close them instead of you doing it




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  6. #6
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Chrome multi threads to run faster....why u wanna close em? Lol

    I just use a Program like clean mem, Runs every 30mins to clear out un used files/Memory/tasks and any errors. dead useful

    Ups the amount of bots i can run per gb by like 250% lol

  7. #7
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    :l Chrome should be able to multi-thread without spamming the processes in task manager.. When I create threads in my applications, I don't make 12 separate processes. Firefox doesn't do this either and it has multi-threading.

    And yeah this can be done in Simba using an extension or plugin. I don't think there is a built in function for killing processes. I think there is one for enumerating windows by Process.. Not sure..

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •