gcue Posted December 5, 2011 Posted December 5, 2011 i am trying to run this command in windows 7 (runs computer management for a remote PC) RUN("mmc compmgmt.msc -s /computer:\\" & $asset) nothing happens even if i specify the working directory OR specify the path to mmc and/or compmgmt i got it to work this way but seems to work slower $cmd = "mmc compmgmt.msc -s /computer:\\" & $asset Run(@ComSpec & " /c " & $cmd, @WindowsDir & "\system32", @SW_HIDE) any of you come across this or have any ideas?
gcue Posted December 6, 2011 Author Posted December 6, 2011 (edited) forgot to mention that the first method works in XP but not in Win7 RUN("mmc compmgmt.msc /computer:" & $asset) Edited December 6, 2011 by gcue
KaFu Posted December 6, 2011 Posted December 6, 2011 You've got UAC enabled? And is your script running with elevated access rights? OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2025-May-18) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
gcue Posted December 6, 2011 Author Posted December 6, 2011 (edited) i enabled UAC (http://www.howtogeek.com/howto/windows-v...ntrol-uac-the-easy-way-on-wind) scrolled all the way to the topusers running it have admin rightsstill nothin Edited December 6, 2011 by gcue
KaFu Posted December 6, 2011 Posted December 6, 2011 32bit or 64bit Win7? OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2025-May-18) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
JFX Posted December 6, 2011 Posted December 6, 2011 (edited) Run will not show you an uac promt, nor it will accept auto elevation, it will failed to launch an application that needs admin rights. Use shellexecute or run your script elevated. Edited December 6, 2011 by JFX
gcue Posted December 6, 2011 Author Posted December 6, 2011 Run will not show you an uac promt, nor it will accept auto elevation, it will failed to launch an application that needs admin rights.Use shellexecute or run your script elevated.i tried shellexecute and it didnt work got an error - guess it looks for filetypes and didnt know what to do with that commandwhen i "ran as administrator", it worked - how can i do this automatically? i cant have all users do this everytime they run the script
BrewManNH Posted December 6, 2011 Posted December 6, 2011 Use RunAs 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
JFX Posted December 6, 2011 Posted December 6, 2011 how does your Shellexecute line looks. try: $asset = '' ShellExecute('mmc', 'compmgmt.msc /computer:\\' & $asset) or add #RequireAdmin on top of your script
KaFu Posted December 6, 2011 Posted December 6, 2011 (edited) Use runas... the verb... $asset = '' ShellExecute('mmc', 'compmgmt.msc /computer:' & $asset,'','runas') Edited December 6, 2011 by KaFu OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2025-May-18) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
gcue Posted December 6, 2011 Author Posted December 6, 2011 each of your suggestions worked great. many many thanks!!
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