我在regedit中将背景上下文菜单编辑为“在此处打开电源外壳”,如何使其以管理员身份打开?

时间:2019-02-17 11:56:55

标签: powershell windows-10 admin regedit

值数据:powershell.exe -admin -noexit -command设置位置-literalPath'%V'

-admin导致Powershell关闭,因为无法识别。我的问题是如何从上下文菜单中以管理员身份打开Powershell?

我按照另一个stackoverflow答案尝试了此功能,以测试是否以管理员身份运行:


function Test-Administrator  
{  
    $user = [Security.Principal.WindowsIdentity]::GetCurrent();
    (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)  
}


Test-Administrator

(it prints false)


0 个答案:

没有答案