gpt4 book ai didi

powershell - 将密码硬编码到 powershell "New-PSSession"

转载 作者:行者123 更新时间:2023-12-02 15:57:59 25 4
gpt4 key购买 nike

我有一个脚本可以在其他计算机上为给定用户获取和设置用户的 Windows 环境变量。是否可以对该用户的密码进行硬编码,以便我不必每次运行脚本时都键入它?

我的脚本看起来像这样:

$s5 = New-PSSession -computername testauto2, testauto3 -Credential
Domain\testautouser

invoke-command -session $s5[0] -scriptblock {[Environment]::GetEnvironmentVariable("TestBrowser", "user")}

最佳答案

是的 - 只要您对安全隐患(某个文件中的密码)感到满意,您完全可以这样做...

这是一个例子:

 $pw = convertto-securestring -AsPlainText -Force -String <insert pw here>
$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist "Domain\User",$pw
$session = new-pssession -computername <computer> -credential $cred

关于powershell - 将密码硬编码到 powershell "New-PSSession",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10011794/

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