PowerShell中以管理员权限启动应用程序的方法
程序员文章站
2022-06-24 11:01:08
又一个powershell比cmd好的地方。在cmd中用管理员权限来启动应用程序很复杂,但在powershell中就简单多了,如下:
复制代码 代码如下:
start-...
又一个powershell比cmd好的地方。在cmd中用管理员权限来启动应用程序很复杂,但在powershell中就简单多了,如下:
start-process notepad -verb runas
start-process "$pshome\powershell.exe" -verb runas