我正在尝试重命名上周加入我们域的工作站。从那时起,它至少重新启动了一次。
我的域基于 Windows 2012 R2,并且相关成员正在运行 Windows 10 Pro。如果它是有用的信息,我有三个 DC(是的,它们是同步的)。
重命名大部分时间都有效:
$aa = Get-Credential [email protected]
Rename-Computer -ComputerName mynewpc -NewName alpc001 -DomainCredential $aa
WARNING: The changes will take effect after you restart the computer mynewpc.
但是我有几台机器顽固地拒绝允许重命名:
Rename-Computer -ComputerName otherhp -NewName alpc005 -DomainCredential $aa
Rename-Computer : Fail to rename computer 'otherhp' to 'alpc005' due to the following exception: Cannot create a file when that file already exists.
At line:1 char:1
+ Rename-Computer -ComputerName otherhp -NewName alpc005 -DomainCredent ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (otherhp:String) [Rename-Computer], InvalidOperationException
+ FullyQualifiedErrorId : FailToRenameComputer,Microsoft.PowerShell.Commands.RenameComputerCommand
这是另一个尝试:
netdom renamecomputer otherhp /newname:alpc005 /ud:contoso\administrator /pd:*
Type the password associated with the domain user:
This operation will rename the computer otherhp
to alpc005.
Certain services, such as the Certificate Authority, rely on a fixed machine
name. If any services of this type are running on otherhp,
then a computer name change would have an adverse impact.
Do you want to proceed (Y or N)?
y
Cannot create a file when that file already exists.
The command failed to complete successfully.
没有具有此新名称的计算机(或其他帐户),并且 AD DNS 中也没有它的条目。
来自评论中要求的附加错误报告$error[0] | fl -f
如下:
writeErrorStream : True
Exception : System.InvalidOperationException: Fail to rename computer 'otherhp' to 'alpc005' due to the following exception: Cannot create a file when that file already exists.
TargetObject : otherhp
CategoryInfo : OperationStopped: (otherhp:String) [Rename-Computer], InvalidOperationException
FullyQualifiedErrorId : FailToRenameComputer,Microsoft.PowerShell.Commands.RenameComputerCommand
ErrorDetails :
InvocationInfo : System.Management.Automation.InvocationInfo
ScriptStackTrace : at <ScriptBlock>, <No file>: line 1
PipelineIterationInfo : {0, 1}
PSMessageDetails :
我在用户办公室没有任何 IT 支持,所以我们尽可能远程进行。如果一切都失败了,我想我可以向最终用户授予足够的权限来取消他们的 PC,重命名它,然后重新加入。但如果有一个现实的选择,我真的不想这样做。
建议收到,谢谢。
我被要求提供NETDOM QUERY /Domain:{domain} WORKSTATION
每个 DC 的输出。PC 出现在所有三个列表中;这是结果的一个片段:
PS C:\Windows\system32> NETDOM QUERY /Domain:contoso.com /Server:DC1 WORKSTATION
List of workstations with accounts in the domain:
ALPC004 ( Workstation or Server )
...
OTHERHP
...
有问题的 PC ( OTHERPC
) 没有该( Workstation or Server )
子句 - 但我的许多 PC 也没有这个子句。
最后我最终不得不做的是解决这个问题:
我注意到我仍然无法重命名这台 PC(同样的错误),但至少它现在有了正确的名称。
您的问题是否与 Active Directory 中的旧数据相关联?显然,在降级旧的 Active Directory 服务器时,会留下一些信息。
如何在域控制器降级不成功后删除 Active Directory 中的数据
您是否尝试在其中一台 Active Directory 服务器关闭时重命名主机/客户端?然后是另一个 AD 服务器?
外部信任 - 重复域 SID
您是否尝试过CMD-Let的
-Force
参数?Rename-Computer