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

WordPress Multi-site with Single Sign On (SSO)

Step 1: Login Access the correct environment using wp_admin login with the DevOps standard password:…

Skillset Required as a 2021 Systems Administrator

Long were the days of a SysAdmin only requiring to know how to babysit server…

Make Changes to Network Shared Printer

From a Windows 7 Workstation, click Start >> Run >> \\SRVIFILE02 >> Enter >> click…