I need to run a ruby script in elevated mode (Admin priviledges) under Windows. Is it possible?
|
|
Here's how to do it. The easiest way is to restart your executable with elevaded (Admin) privileges using With Ruby you do it like this:
If you have Windows UAC enabled this will give you the familiar Windows pop up dialog that requests Admin privileges. Once you click Yes you're process will run with Admin rights. The secret trick here is using the the undocumented http://msdn.microsoft.com/en-us/library/windows/desktop/bb762153(v=vs.85).aspx Also related discussion on how to manually create an elevated command prompt shortcut (which might be a good enough solution in some cases): http://www.sevenforums.com/tutorials/3718-elevated-command-prompt-shortcut.html |
||||
|
|
|
Another method is to ensure you do not run your script in non-admin mode. I have found this solution to be satisfactory in my experience. It can be determined whether a script is running in admin mode like so -
Credit goes to Peter McEvoy for his answer here |
|||
|
|