EndFunc Posted April 6, 2007 Posted April 6, 2007 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. 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.
anixon Posted April 6, 2007 Posted April 6, 2007 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 ModeOpt("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....
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now