Skip to content

Instantly share code, notes, and snippets.

@bryandam
bryandam / ConfigMgrOneLiners.ps1
Created January 29, 2021 14:18
ConfigMgr One Liners
WMIC /Namespace:\\root\ccm path SMS_Client CALL ResetPolicy 1 /NOINTERACTIVE
Client on DP
Peer in the same subnet
DP in the same subnet
Peer in the same AD site
DP in the same AD site
Peer in the same boundary group
DP in current boundary group
DP in neighboring boundary group
DP in Default Site Boundary Group
Windows Update
@bryandam
bryandam / RemoveObsoleteUpdates.txt
Last active April 10, 2018 14:08
SQL Query to Remove Obsolete Updates from WSUS
declare @update varchar( max )
select @update = min( LocalUpdateID ) from spGetObsoleteUpdatesToCleanup
while @update is not null
begin
EXEC spDeleteUpdate @update
select @update = min( LocalUpdateID ) from spGetObsoleteUpdatesToCleanup
end
<#
.SYNOPSIS
Checks WSUS App Pool
.DESCRIPTION
Script will check status of WSUS APP Pool and if 'stopped' will email. Setup script as scheduled task on WSUS instance.
.NOTES
Version: 1.0
Author: dpadgett
Creation Date: 07/02/17
Purpose/Change: Production