Я пытаюсь выполнить удаленный доступ к другому рабочему столу с помощью Enter-PSSession от Powershell для автоматического запуска сценария, однако я даже не могу подключиться к удаленному рабочему столу.

Enter-PSSession -Computername 172.16.164.14 -credential $cred

Но он говорит, что доступ запрещен. Это сообщение об ошибке:

Enter-PSSession : Connecting to remote server 172.16.164.14 failed with the 

following error message : Access is
denied. For more information, see the about_Remote_Troubleshooting Help topic.
At line:1 char:1
+ Enter-PSSession -Computername 172.16.164.14 -credential $cred
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (172.16.164.14:String) [Enter-PSSession], PSRemotingTransportException
    + FullyQualifiedErrorId : CreateRemoteRunspaceFailed

Я также пытался использовать:

Invoke-Command -ComputerName 7450-56Z0BP2 -FilePath -C:\user_automation\automate.vbs -credential $cred

где 7450-56Z0BP2 - имя хоста, но ошибка, которую он мне дал:

    [7450-56Z0BP2] Connecting to remote server 7450-56Z0BP2 failed with the following error message : WinRM cannot process
the request. The following error with errorcode 0x80090311 occurred while using Kerberos authentication: We can't sign
you in with this credential because your domain isn't available. Make sure your device is connected to your
organization's network and try again. If you previously signed in on this device with another credential, you can sign
in with that credential.
 Possible causes are:
  -The user name or password specified are invalid.
  -Kerberos is used when no authentication method and no user name are specified.
  -Kerberos accepts domain user names, but not local user names.
  -The Service Principal Name (SPN) for the remote computer name and port does not exist.
  -The client and remote computers are in different domains and there is no trust between the two domains.
 After checking for the above issues, try the following:
  -Check the Event Viewer for events related to authentication.
  -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or
use HTTPS transport.
 Note that computers in the TrustedHosts list might not be authenticated.
   -For more information about WinRM configuration, run the following command: winrm help config. For more
information, see the about_Remote_Troubleshooting Help topic.
    + CategoryInfo          : OpenError: (7450-56Z0BP2:String) [], PSRemotingTransportException
    + FullyQualifiedErrorId : AuthenticationFailed,PSSessionStateBroken

Я не уверен, что может быть причиной того, что я не могу получить доступ к удаленному компьютеру. Я могу получить к нему доступ через приложение «Подключение к удаленному рабочему столу» в Windows 10, но не могу войти в систему, используя скрипт powershell

0