Powershell怎么以管理员身份运行
右键点击开始
开始按钮右键点【Windows 终端(管理员)】
Cortana 搜索栏
使用 Cortana 搜索栏以管理员身份运行 PowerShell(Windows 10)
- Windows 10 在任务栏中带有 Cortana 搜索字段。 在搜索字段中键入 PowerShell。
- 右键单击 Windows PowerShell,然后选择以管理员身份运行。 它将打开 Windows PowerShell,它将以管理员身份运行。
powershell
执行命令
- 同时按下
Windows + R
键以弹出“运行”对话框。 - 在框中键入
PowerShell
,然后单击 OK(确定)按钮。 普通的 Windows PowerShell 将以当前用户身份启动。 - 键入命令
start-process PowerShell -verb runas
,然后按enter
键。 - 以上命令将以管理员身份提升
Windows PowerShell
的权限。