maniootek Posted November 5, 2020 Posted November 5, 2020 (edited) I have some app which ask me for administrator password to run it (when I am logged in normal user account in Windows 10 without admin privileges). All I want to do is run this app without popup to enter admin password. I tried this code but with no sucess. #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") RunAs("admin", @ComputerName, "pass123", 2, $file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) Error message says "Access denied" Any idea? Edited November 5, 2020 by maniootek
mLipok Posted November 5, 2020 Posted November 5, 2020 #requireadmin #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") RunAs("admin", @ComputerName, "pass123", 2, $file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
maniootek Posted November 5, 2020 Author Posted November 5, 2020 3 minutes ago, mLipok said: #requireadmin #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") RunAs("admin", @ComputerName, "pass123", 2, $file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) You mean to add #RequireAdmin to the script? But this makes no sense and it is not what I mean. From helpfile: Quote #RequireAdmin Specifies that the current script requires full administrator rights to run. 7 minutes ago, maniootek said: I am logged in normal user account in Windows 10 without admin privileges
mLipok Posted November 5, 2020 Posted November 5, 2020 (edited) In such case how you want to Accept this request from third party app ? Edited November 5, 2020 by mLipok Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
maniootek Posted November 5, 2020 Author Posted November 5, 2020 (edited) 34 minutes ago, mLipok said: In such case how you want to Accept this request from third party app ? Sorry but I don't know what you mean. So this is not possible to do what I am trying to achieve? when I add #RequireAdmin then it's not working too, still ask me for admin password Edited November 5, 2020 by maniootek
Nine Posted November 5, 2020 Posted November 5, 2020 Try flag = 1 Because flag = 2 means that the process will authenticate only to network resources with the specified account, but keep using local resources with the original account. Maybe this is why you are ask for pw “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
maniootek Posted November 5, 2020 Author Posted November 5, 2020 31 minutes ago, Nine said: Try flag = 1 Because flag = 2 means that the process will authenticate only to network resources with the specified account, but keep using local resources with the original account. Maybe this is why you are ask for pw I tried all flags. No results
mLipok Posted November 5, 2020 Posted November 5, 2020 (edited) 3 hours ago, maniootek said: Sorry but I don't know what you mean. So this is not possible to do what I am trying to achieve? As you say the StartUp.exe requires Admin. So this following modified script #requireadmin #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") RunAs($file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) .... should firstly PopUp admin rights requirements/dialog and then do not ask about rising rights for running StartUp.exe Check it if you are able with the same credentials as was trying to provide with RunAs(), maybe you provide wrong credentials ? Edited November 5, 2020 by mLipok Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
maniootek Posted November 5, 2020 Author Posted November 5, 2020 20 minutes ago, mLipok said: As you say the StartUp.exe requires Admin. So this following modified script #requireadmin #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") RunAs($file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) .... should firstly PopUp admin rights requirements/dialog and then do not ask about rising rights for running StartUp.exe Check it if you are able with the same credentials as was trying to provide with RunAs(), maybe you provide wrong credentials ? In my case, this makes no sense. This app is designed to be used in my worker pc, who has no password for admin account.
mLipok Posted November 5, 2020 Posted November 5, 2020 I guess that before...... my testing example is to check if you pass the credentials correctly, and if they are passed correctly by RunAs(). I mean if you provide credentials by hand, as an effect of #RequireAdmin and not by RunAs() ...... and it will not bring additionall request from StartUp.exe then this will mean that AutoIt is running StartUp.exe with Run() correctly without the need to incrase your rights/credentials provided by you as a result of #RequireAdmin It will also mean that the problem is in RunAs() btw. small fix to the testing example: #requireadmin #include <AutoItConstants.au3> #include <WinAPIError.au3> $file = @ScriptDir & "\StartUp.exe" if not FileExists($file) then exit msgbox(0,0,"file does not exists") Run($file) if @error then msgbox(0,0,_WinAPI_GetLastErrorMessage()) Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
GokAy Posted November 6, 2020 Posted November 6, 2020 Hey, you may need to enable local administrator for this. Check out the link, and decide if it suits your needs: https://www.ghacks.net/2014/11/12/how-to-enable-the-hidden-windows-10-administrator-account/
Moderators JLogan3o13 Posted November 6, 2020 Moderators Posted November 6, 2020 @maniootek How about some clarification. You keep saying it requires "Admin Password", which I see some take (as I would) to mean you are trying to pass specific credentials. Are you meaning that the UAC prompt comes up on launch, and you are looking for a way to bypass said prompt? "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!
caramen Posted November 6, 2020 Posted November 6, 2020 (edited) @mLipok The issue is, he wants to run a program as administrator without elevating the script itself. This case can be useful for the propagation of an installation process under your right in a user's session. It's like to do the MAJ + RIGHT-CLICK to run as an executable. And UAC can or not be prompted depending on what the EXE will do. @GokAy Pointing a good possibility too. A disabled session can make the admin session unable to being called. And finally @JLogan3o13 is right to ask about UAC. But from what I understand it's not the case here. Let's see ... Here you got an example of working on premise RunAs in a domain environment : $iResult = RunAs( ""&@aUserName , _ @ComputerName , _ ""&@aPassword , _ 1 , _ @ComSpec & ' /c c:\temptest\Hello.exe', _ @SystemDir , _ @SW_HIDE , _ BitOR($STDERR_CHILD, $STDOUT_CHILD) ) Edited November 6, 2020 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
maniootek Posted November 6, 2020 Author Posted November 6, 2020 Well, let me be more specific in this case. Users in my PC: - worker1 (normal account) - boss1 (admin account) - Amdministrator (default account which is disabled) If I run some app in worker1 account, UAC ask for boss1 password. Probably it happens because this app makes some changes in the computer and must be run with admin privilages. There is small shield icon in this exe file. I want let worker1 to run this app without entering any password.
caramen Posted November 6, 2020 Posted November 6, 2020 Woooo Woooo Woooo Stop./ @JLogan3o13 had the good suspicion then x). It's not the same issue so. My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
caramen Posted November 6, 2020 Posted November 6, 2020 (edited) - worker1 (normal account) __Can run a program under admin right. __Can't dodge UAC prompt. - boss1 (admin account) __Can run all program. __Can dodge UAC prompt. - Administrator (default account which is disabled) __Can run all program. __Can dodge UAC prompt. Edited November 6, 2020 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
Moderators JLogan3o13 Posted November 6, 2020 Moderators Posted November 6, 2020 There are two different issues, passing of boss1's credentials, and the UAC. If you want help with doing a RunAs, and passing specific credentials, that is great. But UAC is for when an application needs administrative access to system resources, and is a built-in MS security measure. If the issue comes down to being the UAC, aside from telling you to research how to disable it via the registry, we will not be discussing how to get around it. Just want to make this clear. "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!
maniootek Posted November 6, 2020 Author Posted November 6, 2020 So what is your idea to let worker1 use this app? I don't want give worker1 admin rights as they can install any app without my knowledge.
caramen Posted November 6, 2020 Posted November 6, 2020 (edited) You have to be more specific on your question. Could you just enter the password every day ? If you are the administrator you configure the UAC to not being prompt on that application only. Then you could do a RunAs After. Or you totally disable the UAC. Or you could give your right one time for ever, in scheduled task. Edited November 6, 2020 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki
maniootek Posted November 6, 2020 Author Posted November 6, 2020 I didn't know it's possible to disable UAC for specific application. I just searched Internet and I found some tutorial but it's not easy, it's many steps to do so (some edits in registry).
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