gpt4 book ai didi

Powershell 远程启用

转载 作者:行者123 更新时间:2023-12-02 23:31:47 25 4
gpt4 key购买 nike

我无法使用 powershell 连接到远程机器。我做的程序是:

  • 启用-PSRemoting -Force
  • 设置项 WSMan:\localhost\Client\TrustedHosts *
  • 重启服务 winrm
  • Enter-PSSession IpAddress

  • 当我从我的服务器机器运行最后一步(第 4 步)时,出现如下错误:

    Enter-PSSession : Connecting to remote server failed with the following error message : Access is denied.



    我已经在客户端和服务器机器上尝试了所有上述 4 个步骤。请帮忙

    谢谢
    真理

    最佳答案

    检查远程机器上的端口

    PS Z:> cd WSMan:\localhost\Listener
    PS WSMan:\localhost\Listener> dir
    [cut]
    PS WSMan:\localhost\Listener> cd .\Listener_1084132640
    PS WSMan:\localhost\Listener\Listener_1084132640> dir
    WSManConfig:
    Microsoft.WSMan.Management\WSMan::localhost\Listener\Listener_1084132640
    Name Value
    ---- -----
    Address *
    Transport HTTP
    Port 5985



    然后连接正确的端口

    $remotePowerShellPort = 5985 $ConnectionURI = ("http://{0}:{1}" -f $targetServer, $remotePowerShellPort)
    $remoteSession = New-PSSession -ConnectionURI $ConnectionURI
    Invoke-Command -Session $remoteSession -ScriptBlock { dir }
    Remove-PSSession $remoteSession

    关于Powershell 远程启用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5458565/

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