Назад | Перейти на главную страницу

Управляйте контроллером домена удаленно через powershell на компьютере, не присоединенном к домену

Что нужно сделать? Является ли это возможным?

Возможно, вы сможете это сделать, хотя я не уверен на 100%, что вы можете указать доверенный хост, который не является членом домена для DC.

Из about_remote_troubleshooting

Если локальный компьютер не входит в домен, для удаленного взаимодействия требуется следующая процедура.

1. Configure the computer for HTTPS transport or add the names of the
   remote computers to the TrustedHosts list on the local computer.
   For instructions, see "How to Add a Computer to the TrustedHosts
   List" below.

2. Verify that a password is set on the workgroup-based computer. If a
   password is not set or the password value is empty, you cannot run
   remote commands.
   To set password for your user account, use User Accounts in Control
   Panel. 

3. Use the Credential parameter in all remote commands.
   This is required even when you are submitting the credentials
   of the current user.

и

Чтобы просмотреть список доверенных хостов, используйте следующую команду:

get-item wsman:\localhost\Client\TrustedHosts

To add the names of particular computers to the list of trusted hosts,
use the following command format:

set-item wsman:\localhost\Client\TrustedHosts -value <ComputerName>