远程重置本地管理员帐户密码

时间:2014-01-22 16:00:35

标签: vb.net

我正在尝试在域环境计算机上运行此代码以重置本地管理员帐户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中中断

0 个答案:

没有答案