Я пытаюсь установить удаленное подключение Powershell к компьютеру рабочей группы с компьютера, присоединенного к домену. Оба находятся в одной сети. я вхожу в сеанс PSSession из учетной записи администратора.
У меня есть учетная запись администратора на целевом компьютере, которая отличается от учетной записи администратора на клиенте, с которого я устанавливаю удаленное соединение.
Я передаю учетные данные учетной записи администратора целевого компьютера в командлете enter pssessionn, но не могу установить удаленное соединение.
Я добавил ip своего локального компьютера в список доверенных хостов на целевой системе. Я также могу пропинговать целевую систему. Я новичок в powershell, Что я делаю не так?
Ошибка, которую я получаю, если я использую учетные данные администратора целевой системы:
Enter-PSSession : Connecting to remote server DESKTOP-XXXXXXX 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.
At line:1 char:1
+ Enter-PSSession -ComputerName DESKTOP-XXXXXXX -Credential Get-Credent ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (DESKTOP-XXXXXXX:String) [Enter-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed