gpt4 book ai didi

powershell - 以另一个用户身份运行 PowerShell 并启动脚本

转载 作者:行者123 更新时间:2023-12-03 07:22:01 31 4
gpt4 key购买 nike

我不会详细说明为什么需要它,但用户必须能够将 PowerShell 作为服务帐户启动,并且当 PowerShell 加载时它需要运行脚本。我已经可以使用存储的凭据(存储为安全字符串)启动 PowerShell,但我一生都无法运行脚本(位于 $args 中)。我尝试了多种方法,下面是我目前的情况。任何帮助将不胜感激。

$user = "domain\service.account" 
$pwd1 = "big long huge string of characters"
$pwd = ($pwd1 | ConvertTo-SecureString)
$Credential = New-Object System.Management.Automation.PSCredential $user, $pwd
$args = "\\domain.local\location\location\location\Script\script.ps1"
Start-Process powershell.exe -Credential $Credential -ArgumentList ("-file $args")

最佳答案

您可以在指定的用户凭据下打开一个新的 powershell 窗口,如下所示:

start powershell -credential ""

enter image description here

关于powershell - 以另一个用户身份运行 PowerShell 并启动脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28989750/

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