怎么在window系统文件夹中 Shift加鼠标右键 出现powershell窗口

简单粗暴

这种方法比较简单粗暴,直接合并注册表就可以了。

新建一个文本文档,复制下面的代码,选择另存为,文件类型为所有文件,编码选择ANSI,文件名为PowershellAdmin.reg(文件名可以随便起,但是后缀名需要是.reg,表明它的文件类型是注册表项),然后双击 PowershellAdmin.reg 合并注册表,提示如下内容:

怎么在window系统文件夹中 Shift加鼠标右键 出现powershell窗口

点击是,然后提示“已成功添加到注册表中”,欧克,搞定!!!

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin]
"Extended"=""
"NoWorkingDirectory"=""
"ShowBasedOnVelocityId"=dword:00639bc8
@=""
"MUIVerb"="在此处打开管理员 Powershell 窗口(A)"

[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\command]
@="powershell.exe -command Start-Process powershell -ArgumentList \\\"-noexit\\\",\\\"Set-Location -literalPath ‘%V‘\\\" -Verb runAs"

怎么在window系统文件夹中 Shift加鼠标右键 出现powershell窗口

上一篇:深入浅出谈谈深度学习~


下一篇:Delphi - exit、break、continue等跳出操作的区别