Skip to main content

The trust relationship between this workstation and the primary domain failed.







We can use netdom.exe in XP but in Windows7 we dont have this command.

netdom.exe utility needs to stored in C:\Windows\System32 and netdom.exe.mui file should be copied toC:\Windows\System32\en-US folder

Download netdom.exe from here. These two files have been exacted from KB958830.
·         Make sure the netdom.exe and netdom.exe.mui files are stored in the mentioned folder locations
·         Open an elevated command prompt
·         Run: netdom.exe resetpwd /server:domaincontroller /userD:ivan /passwordD *
·         Enter password
·         Reboot the machine




Got the info from http://www.networknet.nl/apps/wp/archives/1938

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...