Очень часто приходится менять принадлежность сети одному из 4-х преднастроенных профилей («Неопознанная, Частная, Публичная или Доменная»). PowerShell тут как нельзя кстати:
первой командой получаем список профилей и номер, который закреплен за интерфейсом
Get-NetConnectionProfile
второй командой устанавливаем необходимый профиль (в примере — Private) выбранному интерфейсу
Set-NetConnectionProfile -InterfaceIndex %#% -NetworkCategory Private
Или еще способ от Майкрософт:..
This first command gets the connection profile for the network adapter named Ethernet1. The command stores the results in the $Profile variable.
PS C:\> $Profile = Get-NetConnectionProfile -InterfaceAlias Ethernet1
This second command assigns the value of Public to the NetworkCategory property of the connection profile stored in the $Profile variable.
PS C:\> $Profile.NetworkCategory = Public
This third command sets the network category of the connection profile stored in the $Profile variable.
PS C:\> Set-NetConnectionProfile -InputObject $Profile
Создание Service Accounts
Для одного сервера:
1. Запустить powershell и выполнить команду:
New-ADServiceAccount -Name "Service01" -RestrictToSingleComputer -Enabled $true
2. Подключиться к конечному серверу, установить компонент Remote Server Administration Tools\Role Administration Tools\AD DS and AD LDS Tools\Active Directory module for Windows Powershell
3.На конечном сервере выполнить Powershell команду:
Install-ADServiceAccount -Identity 'Service01'