我正在尝试在域环境计算机上运行此代码以重置本地管理员帐户remoly。
Dim Context As PrincipalContext = New PrincipalContext(ContextType.Machine, "MachineNameOrIP")
Dim oUser As UserPrincipal = UserPrincipal.FindByIdentity(Context, IdentityType.Name, "LocalAdminName")
oUser.SetPassword("SomePassword")
oUser.Save()
总是发生异常,说'找不到网络路径'但是我在该远程计算机的管理员组中。 此代码在Windows Server 2008 R2中正常运行,并且在Windows 7或8.1中中断