web-dev-qa-db-ja.com

PowerShellでコンピューターの名前を変更できません

$script = { Rename-Computer -ComputerName "ADMINIS-ID1PS7V" -NewName "SERVER1" }
$computerName = "ADMINIS-ID1PS7V"
$username = "Administrator"
$pw = "123!@#qaZ"

# Create Credentials
$securepw = ConvertTo-SecureString $pw -asplaintext -force
$cred = new-object -typename System.Management.Automation.PSCredential -argument $username, $securepw

# Create and use session
$session = New-PSSession -credential $cred -ComputerName $computerName
Invoke-Command -Session $session -ScriptBlock $script
Remove-PSSession $session
  • マシンのファイアウォールを無効にしました。
  • 私は走ったenable-PSRemoting -force
  • GPO with Allow remote server management through WinRMで有効にする*

私は得続けます:

Fail to rename computer 'ADMINIS-ID1PS7V' to 'SERVER1' due to the following exception: Access is denied.
    + CategoryInfo          : OperationStopped: (ADMINIS-ID1PS7V:String) [Rename-Computer], InvalidOperationException
    + FullyQualifiedErrorId : FailToRenameComputer,Microsoft.PowerShell.Commands.RenameComputerCommand
    + PSComputerName        : ADMINIS-ID1PS7V
4
Jason

-computernameパラメーターを持つコマンドレットを使用するようにリモーティング(invoke-command)するのはなぜですか?コマンドを直接実行してみましたか?

4
Mike Shepard