gpt4 book ai didi

powershell - 无法使用批处理文件运行 PowerShell 脚本

转载 作者:行者123 更新时间:2023-12-03 18:58:31 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





PowerShell says "execution of scripts is disabled on this system."

(37 个回答)


11 个月前关闭。




我编写了一个 PowerShell 脚本来授予运行访问权限以在没有管理员权限的情况下运行。所以我需要从批处理文件运行该脚本。在这里,我附上了我的 PowerShell 脚本和批处理文件。我无法从我的批处理文件运行 PowerShell 脚本。
访问.ps1

powershell -File "%~dpn0.ps1" %*
Start-Process PowerShell -ArgumentList "Set-ExecutionPolicy Unrestricted -Force" -Verb RunAs
$key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SOFTWARE\Wow6432Node\Unicorn",[Microsoft.Win32.RegistryKeyPermissionCheck]::ReadWriteSubTree,[System.Security.AccessControl.RegistryRights]::ChangePermissions)
$acl = $key.GetAccessControl()
$rule = New-Object System.Security.AccessControl.RegistryAccessRule (".\USERS","FullControl",@("ObjectInherit","ContainerInherit"),"None","Allow")
$acl.SetAccessRule($rule)
$key.SetAccessControl($acl)

Write-Host "Successfully set permission to PM Registry!"
访问.bat
@ECHO OFF
PowerShell.exe -Command "& '%~dpn0.ps1'"
PAUSE
这是错误
enter image description here

最佳答案

在您的系统上,不允许执行 PowerShell 脚本。通过执行(具有管理权限)允许它:

Set-ExecutionPolicy RemoteSigned
或者绕过它(在您的 .bat 中):
PowerShell.exe -ExecutionPolicy Bypass -File .\Access.ps1
Access.ps1 ,以下行几乎没用:
Start-Process PowerShell -ArgumentList "Set-ExecutionPolicy Unrestricted -Force" -Verb RunAs
因为您已经需要执行脚本的权限才能运行此脚本。

关于powershell - 无法使用批处理文件运行 PowerShell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65335812/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com