Posted On July 21, 2020

How to discover WSUS Server from Your Local Machine

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to discover WSUS Server from Your Local Machine
# Method 1: PowerShell (the obvious choice)
(Get-ItemProperty HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate).WuServer

# Method 2: Command Line
REG QUERY "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate" /v "WUServer"

# Method 3: Compile the log and read it
Get-WindowsUpdateLog -LogPath C:\windowsupdate.log
findstr 'WSUS server:' c:\WindowsUpdate.log

# Method 4: Ask your colleague
# Hey dude, where's our WSUS at?

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

NUMLOCK windows XP

Go to Start>> Run. Type in: regedit [Enter] or click OK. Navigate to the following…

PowerShell: Discover Domains and Trusts in Microsoft Windows Environment

PS C:\Windows\system32> Get-ADTrust -Filter *Direction : BiDirectionalDisallowTransivity : FalseDistinguishedName : CN=kimconnectschools.org,CN=System,DC=kimconnect,DC=k12,DC=ca,DC=usForestTransitive : TrueIntraForest : FalseIsTreeParent…

How to check to see if your email domain is blacklisted

Find your IP address: https://www.whatismyip.com/ Test the real-time spam list matching your IP:   Check…