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

SUBINACL and TAKEOWN

Change owner:subinacl /file C:\demofile.doc /setowner=SS64Dom\AliceTsubinacl /subdirectories "C:\Documents and Settings\USER\Desktop\FOLDER\*.*" /setowner=DOMAIN\USER

Jenkins: How to Clone a Job

To create a new job, use this quick how-to. This instruction is a quick walk-through…

Enable Remote Desktop Remotely

Quick tip on how to enable Remote Desktop remotely (by editing the remote registry)1. On…