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 … Read more
I have to check if machine has MS March update installed, and SCCM cannot make my job simpler 🙁 So I created a new compliance … Read more
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 usage … 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
Check the “Model Identifier” from your already installed Mac VM, usually it is VMware7,1. Add this into your NBImageInfo.plist of your boot image: <key>EnabledSystemIdentifiers</key> <array> … 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 full listing of enabling DEBUG Modes: Enabling and Generating a Debug Log for Admin, Imaging & Remote 1) Create Debug Folder in Casper … Read more
Here are my two scripts for install and scan with MalwareBytes on Casper. First one is to download, install and register MBBR: #/bin/sh # MBBR … Read more
we have a few macs that cannot enroll MDM, when I check the jamf log from the mac, it said Error installing the computer level … Read more