SCCM Reports – No SCCM agent workstation client

select all SMS_R_System.Name0,SMS_R_System.Last_Logon_Timestamp0,SMS_R_System.Resource_Domain_OR_Workgr0,SMS_R_System.Client0,SMS_R_System.Operating_System_Name_and0 from vSMS_R_System AS SMS_R_System WHERE (Client0 IS NULL) AND (Operating_System_Name_and0 NOT LIKE N’%OS X%’) AND (Operating_System_Name_and0 LIKE N’%Microsoft Windows NT Workstation%’) ORDER … Read more

WSUS – Index was outside the bounds of the array

I didn’t Microsoft is so bad at WSUS….the issue was KB3159706 was recently installed on our SCCM WSUS Server…and everything broke after that…   https://www.sepago.de/blog/2016/04/22/wsus-service-stopped-do-not-install-kb3148812-on-configuration-manager-or-wsus   … Read more

WSUS SUSDB Recovery Pending

Saw this issue when I logged into the WSUS database via management studio: SUSDB(Recovery Pending). When I checked SoftwareDistribution.log with my WSUS, then I realized that … Read more

Cisco IP Communicator SCCM Package

Cisco IP Communicator has MSI file, but it needs command-line switches to finish the installation, otherwise it will prompt user to type in those information, … Read more

SCCM WSUS Software Updates Troubleshooting Log Locations

WSUS Server: C:\Program Files\Update Services\LogFiles\SoftwareDistribution.log SCCM: D:\Program Files\Microsoft Configuration Manager\Logs\WSUSCtrl.log and wsyncmr.log Client: C:\Windows\WindowsUpdate.log C:\Windows\CCM\WUAHandler.log C:\Windows\CCM\UpdateDeployment.og

Add a SCCM deployment with Powershell

Here is a powershell command for creating a SCCM deployment   Start-CMApplicationDeployment -CollectionName “Collection Name” -Name “Softwarename” -DeployAction Install -DeployPurpose Available -UserNotification DisplayAll -AvaliableDate (Get-Date) … Read more