How do I run a PowerShell script as administrator using a shortcut?

Question:

I’m trying to run a PowerShell script as administrator using a shortcut. I have tried many ways, but it still does not work:

With this command, it will create two PowerShell windows and one window will close.

I also tried this one:

Can some one please help?

Answer:

Tl;dr

This will do the trick:


Explanation

First, you have to call PowerShell to be able to execute Start-Process. You don’t need any additional paramters at this point, because you just use this first PowerShell to launch another one. You do it like this:


Inside the curly braces you can insert any script block. First you will retrieve your current working directory (CWD) to set it in the new launched PowerShell. Then you call PowerShell with Start-Process and add the -Verb RunAs parameter to elevate it:

Then you need to add all desired PowerShell parameters to the ArgumentList. In your case, these will be:

Finally, you pass the commands that you want to execute to the -Command parameter. Basically, you want to call your script file. But before doing so, you will set your CWD to the previously retrieved directory and THEN call your script:

In total:

Source:

How do I run a PowerShell script as administrator using a shortcut? by licensed under CC BY-SA | With most appropriate answer!

Leave a Reply