All posts
- SCCM 132
- Casper 32
- PowerShell 24
- OSD 11
- PowershellUniversal 9
- Mac 8
- Preventative SCCM Monitor and Troubleshoot Website 8
- Shell Script 7
- Active Directory 5
- sql 5
- wsus 5
- Azure Automation 4
- sccm cmg 4
- Tools 4
- 802.1x 3
- AutoIt 3
-
Dec 12, 2017
Casper Configuration Profiles Auto Renewal
If you are using AD certificates inside a configuration profile, here is the easiest way to make it auto renewal: sudo defaults write /Library/Preferences/com.apple.mdmclient...
-
Nov 7, 2017
How to Troubleshoot 802.1x Mac Authentication Issues
It is quite complex to troubleshoot 802.1x authentication issues for Mac. Here are a few sections you can look for errors: 1. RADIUS Server Log This is the most convenient and efficient way to...
-
Nov 6, 2017
802.1X Network Authentication for Mac
Cannot believe I spent so much time just to figure out how to do 802.1x network authentication for Mac :) So for managing macs, we have two ways of setup 802.1x, one is using Apple Profile Manager to...
-
Jul 13, 2017
How to Check Macs with Office 2011 & Office 2016 Installed in Casper
Here are the Casper Smart Groups to see how many office 2011 and office 2016 users:
-
Jun 28, 2017
SCCM SQL Report for All Office Users
Here is the sccm sql report statement to finding out all office users, I have used "Microsoft Office Professional" as the keyword, you can change to any software title you want :) SELECT DISTINCT TOP...
-
Jun 23, 2017
SCCM Package for Tableau & Tableau Reader
Installation command line: TableauReader 64bit 10 3 1.exe /quiet /norestart AUTOUPDATE=0 ACCEPTEULA=1 Detection method: File exist and version equal: C:\Program Files\Tableau\Tableau Reader 10.3\bin
-
May 18, 2017
Cannot Install SCCM client - Setup was unable to compile Sql CE
It turns out the solution is easy : Just delete everything under C:\Windows\CCM
-
May 12, 2017
Another way to check Update Installed via Powershell
I have to check if machine has MS March update installed, and SCCM cannot make my job simpler :( So I created a new compliance rule to check the result, here is the code: $error.clear() try {...
-
Apr 5, 2017
More Accurate SCCM Software Metering Report
I found out that the sccm table view v\ MonthlyUsageSummary is not really accurate, actually v\ GS\ CCM\ RECENTLY\ USED\ APPS.LastUsedTime0 is the best accurate one to determine user's application...