gpt4 book ai didi

windows - 如何在不同域的远程计算机上运行 powershell 命令

转载 作者:可可西里 更新时间:2023-11-01 10:24:50 25 4
gpt4 key购买 nike

我想在几台服务器上运行一些脚本,但问题是它们都在不同的域中。如果它们在同一个域中,那么我可以运行它是 Powershell,但跨域我该怎么做?任何人都可以对此有所了解吗?

最佳答案

在服务器端

Enable-PSRemoting 

在客户端,执行以下命令:

cd wsman:localhost\Client

Set-Item AllowUnencrypted -Value $true -force

Set-Item TrustedHosts -Value * -force

然后使用以下命令从客户端计算机在服务器计算机中创建 session :

$cred=get-credential

$Session= New-PSSession -computername Server01 -credential $cred -Port 5985

Enter-PSSession $Session

(应提供服务器计算机上的有效凭据)

关于windows - 如何在不同域的远程计算机上运行 powershell 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20870359/

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