Briandr 0 Posted October 10, 2013 (edited) Hi, I am looking for a script that can enable the following GPO: Allow non-administrators to install drivers for these device setup classes. I found this code in another thread. I am hopeful something like this can be used for the setting I am trying to change. This disables changing home page settings (User ConfigurationAdministrative TemplatesWindows ComponentsInternet Explorer) - Enable run(@comspec & " /c gpedit.msc") WinWaitActive("Group Policy") send("{down 8}{right}") sleep(1000) send("{down}{right}") sleep(1000) send("{down 2}{tab}") sleep(1000) send("{down 11}") sleep(1000) send("!ar") WinWaitActive("Disable changing home page settings Properties") send("!e") ControlClick("Disable changing home page settings Properties", "", "Button6" ) I know what the sleep is doing is I am just not sure of the sends. I assume they are mouse clicks or keyboard movements. Any help adjusting this code would be appreciated. Thanks. Edited October 10, 2013 by Briandr Share this post Link to post Share on other sites
water 2,359 Posted October 10, 2013 Send Sends simulated keystrokes to the active window. Run Au3Recorder and let it create the AutoIt script for you while you change the setting in GPEdit. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - 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 - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Briandr 0 Posted October 10, 2013 Hi, Thanks for the information. Do I need to adjust this after running Au3Recorder so that when it is runs with on a system where the user does not have admin rights? I can push the compiled EXE so it runs under the System context. So maybe I don't need to adjust the script?? Share this post Link to post Share on other sites
water 2,359 Posted October 10, 2013 Why do you set the GPO on the client side? Wouldn't it be easier/safer to do it on the server side? My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - 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 - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Briandr 0 Posted October 10, 2013 (edited) I would agree it would make more sense to do it this way. Not sure why an AD OU's can't be tweaked. Its not like its a non AD shop, but I am not sure if all of the computers are in AD. Trust me I don't like the bang head on wall approach. Edited October 10, 2013 by Briandr Share this post Link to post Share on other sites
water 2,359 Posted October 10, 2013 Do I need to adjust this after running Au3Recorder so that when it is runs with on a system where the user does not have admin rights? I can push the compiled EXE so it runs under the System context. So maybe I don't need to adjust the script?? At least "#RequireAdmin" needs to be added to the script. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - 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 - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites