通过上下文菜单运行 Powershell 脚本

通过上下文菜单运行 Powershell 脚本

我有这个 PS 脚本

If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator"))

{   
$arguments = "& '" + $myinvocation.mycommand.definition + "'"
Start-Process powershell -Verb runAs -ArgumentList $arguments
Break
}
dir -Recurse | Unblock-File

我想从目录上的右键单击菜单运行它,以便它递归地解除所有文件的阻止

相关内容