Posts

Showing posts from August, 2022

Testing a windows user account password

  You may need to test a Windows user account when troubleshooting an issue but the account in questions may not have permissions to say remote desktop etc. To test the account, open a CMD Window and run the following: runas /u:domain.local\user1 notepad.exe You will then be prompted to enter a password. If the password is incorrect you will get the following: c:\>runas /u:domain.local\user1 notepad.exe Enter the password for domain.local\user1: Attempting to start notepad.exe as user "domain.local\user1" ... RUNAS ERROR: Unable to run - notepad.exe 1326: The user name or password is incorrect. If the password was correct Windows Notepad will open.

Check if multiple nics are set to register with DNS

  This checks all the nics on a server to see if multiple nics have the "Register this in DNS" which if multiple are selected it can cause connectivity issues. 1. Export a list of the servers you wish to check and save it as a txt file in the same location as the script called "computers.txt" as below: server01 server02 server03 server04 2. Copy and paste the below script in to Notepad and save it as a ps1 file: cls $servers = Get-Content computers.txt foreach($server in $servers) { $nics = Get-WmiObject Win32_NetworkAdapterConfiguration -ComputerName $server -ErrorAction Inquire | Where{$_.IPEnabled -eq "TRUE"} foreach($nic in $nics) { Write-Host $server "-" $nic.IPAddress "-" $nic.FullDNSRegistrationEnabled } } 3. Now run the script. Example output: server01 - 10.10.10.10 - True server01 - 192.168.0.1 - False server02 - 10.10.10.20 - True server03 - 10.16.10.30 - True