Palladian1881 Posted April 13, 2018 Posted April 13, 2018 Hi, I'm trying to write a script to automatically dismiss a Windows authentication popup (image below). My script works just fine in other programs (like notepad), but won't work on the popup screen. Sleep(5000) Send("!y") I've also tried this (because "No" is highlighted by default): Sleep(5000) Send("{LEFT}") Send("{ENTER}") And this: WinWaitActive("User Account Control") Send("!y") Windows seems to be blocking action from other programs while the popup is active. Is there a way around this restriction? Thanks!
Palladian1881 Posted April 13, 2018 Author Posted April 13, 2018 I can't. It's on a work-controlled computer.
Moderators JLogan3o13 Posted April 13, 2018 Moderators Posted April 13, 2018 @Palladian1881 then it is there for a reason. I am assuming you are operating under an account with Administrative rights? You can always add #RequireAdmin to the top of your script, though you will still need to accept the UAC. It will not, however, halt the completion of the script once you hit okay once. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Palladian1881 Posted April 13, 2018 Author Posted April 13, 2018 Added #RequireAdmin to my script, and it does generate its own UAC popup now, but the script still does not function on the original popup. My script looks like this now: #RequireAdmin Sleep(5000) Send("{LEFT}") Send("{ENTER}") As a note, my company has asked me to automate our database builds to run at 2am, but will not grant me an exception for them to run without UAC. So is there anything else that could be preventing the script from working properly on the UAC popup window?
BrewManNH Posted April 13, 2018 Posted April 13, 2018 As far as I am aware of, those are not scriptable. Otherwise they'd be a HUGE security hole. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Palladian1881 Posted April 13, 2018 Author Posted April 13, 2018 That's unfortunate. Is there anything else you'd suggest I try to get around this problem?
Moderators JLogan3o13 Posted April 13, 2018 Moderators Posted April 13, 2018 No, we would not suggest a way to bypass security measures - as is clearly stated in the forum rules (you read those, right??). If you are tasked by your organization to do something that requires a higher level of access, then you need to have them give you that access. Have them set up a service account for you that will have the rights to run this script. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
jdelaney Posted April 13, 2018 Posted April 13, 2018 (edited) No UAC for scheduled tasks set to run as admin. try that. (Or is my recollection off ) Edited April 13, 2018 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
AdamUL Posted April 13, 2018 Posted April 13, 2018 You can do this with the UAC UDF, but it would need to be a different script to set the UAC setting. As the script will get the UAC prompt when run, and you have to be an admin user to change the setting. After the script is run, the admin user will not get any more UAC prompts. Normal users will. This does not require a reboot of the system. #RequireAdmin #include <UAC.au3> _UAC_SetConsentPromptBehaviorAdmin($UAC_ELEVATE_WITHOUT_PROMPTING) If @error then MsgBox(16, "Error", "Unable to set UAC setting.") Adam
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