Jump to content

...


Recommended Posts

How do I make my compiled AutoIt3 script an ongoing running process in Windows which is viewable in TaskMgr while running in the background? Thank you in advanced. :shocked:

Why not just create the scipt without a gui inteface then when you run it will continously run until a condition is met that exits the script.

EndFuncAutoIt is the shiznit. I love it.
Link to comment
Share on other sites

Why not just create the scipt without a gui inteface then when you run it will continously run until a condition is met that exits the script.

If you want to stop the user from seeing or slow them down from stopping the process you could consider following code:

;Stealth Mode

Opt("TrayIconHide", 1)

;Break Key Disabled (Cannot Quit)

Break(0)

;Disable Task Manager (Ctrl+Alt+Del)

;RegWrite("HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLICIES\SYSTEM", "DisableTaskMgr", "REG_DWORD", "1")

;Enable Task Manager (position this in your code when you want to give the user access to Ctrl+Alt+Del)

RegWrite("HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLICIES\SYSTEM", "DisableTaskMgr", "REG_DWORD", "0")

Cheers Ant....

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...