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

Windows XP and Browser Compatibilities

1. Internet Explorer: The highest IE version that a machine running on Windows XP would…

Set up centralized logging on Windows Server

Server: # winrm qc If this computer has VMWare workstation installed, it's "public network" needs…

VSS Error: Snapshots were found, but they were outside of your allowed context

Error: PS C:\Windows\system32> vssadmin delete shadows /for=c: /allvssadmin 1.1 - Volume Shadow Copy Service administrative…