管理者としてPowershellを起動したい時があったのでメモ。
実行環境
PS C:\Users\hoge> $PSVersionTable Name Value ---- ----- PSVersion 5.1.18362.628 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.18362.628 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1 PS C:\Users\hoge>
コマンドプロンプトから管理者としてPowershellを起動するとき
C:\Users\hoge>powershell -NoProfile -ExecutionPolicy Unrestricted "start-process powershell -verb runas"
C:\Users\hoge>
非管理者で起動したPowershellから管理者としてPowershellを起動するとき
PS C:\Users\hoge> Start-Process powershell -Verb runas PS C:\Users\hoge>