My Automated Powershell Script for SCCM Patching Process
we are slowing moving every machine to SCCM patching lately, and I have to move 100 machines each week, so I created this automated powershell … Read more
we are slowing moving every machine to SCCM patching lately, and I have to move 100 machines each week, so I created this automated powershell … Read more
It was such a pain to create a sccm visio/project package for this ! I tried a few different ways of msi uninstall via the … Read more
Here is my Powershell script for Finding a file with random characters in the end, if the system find the file, it will email to … Read more
Here is my powershell script for finding if a process is running with SCCM compliance rule. $process = Get-Process Process-name-xxx -ErrorAction SilentlyContinue if ($process) { Write-Host … Read more
Here is the SQL statement for my SCCM Report on disk free space under 20%, it will display the user machine AD Site, PC Name, … Read more
Here is my SQL Statement for SCCM Report – Software Metering Report for Last Usage Over 30 Days Ago SELECT DISTINCT TOP (100) PERCENT … Read more
Here are some useful articles for SCCM troubleshooting: SCCM Issues by Category: http://arnavsharma.net/system-centre–more/basic-sccm-troubleshooting-made-easy PXE Boot: http://blog.jocha.se/tech/sccm-2012-troubleshooting-pxe How to read SCCM log files: https://www.swc.com/blog/microsoft-system-center/sccm-troubleshooting-101-log-files SCCM … Read more
We started using SCCM WSUS for workstation patches, but I always saw half machines success with half machines waiting for updates. It was always the … Read more
https://blogs.technet.microsoft.com/smartinez/2014/06/27/reboot-pending-report-how-to-create-the-report/
This SCCM report is really a complicated one, I used lots of views to do the information I need, such as : AD Site, Machine … Read more