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
-
Mar 31, 2017
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 script to run weekly. 1.My first script is to move...
-
Mar 31, 2017
SCCM Visio / Project Uninstaller Package
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 product code, all failed. then I started using the setup /uninstall ,...
-
Mar 14, 2017
How to use NetSUS to Netboot a VM
1. Check the βModel Identifierβ from your already installed Mac VM, usually it is VMware7,1. 2. Add this into your NBImageInfo.plist of your boot image: <key EnabledSystemIdentifiers</key <array...
-
Feb 17, 2017
Find A File with Random Characters and Send Email by SCCM Compliance Rule
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 our alert mailbox as well. This is done by SCCM Compliance Rule: File...
-
Feb 17, 2017
SCCM Compliance Rule for Finding Process Running
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 "Running" }...
-
Feb 13, 2017
Casper Debug Log Location
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 Application Directory:...
-
Feb 13, 2017
Casper MalwareBytes Package
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 Scanner Ray Qiu Feb 2, 2017 Download Installer cd /tmp curl...
-
Feb 1, 2017
Casper MDM Enrollment Issue
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 mdm profile: profiles install for file:'/Library/Application...
-
Jan 24, 2017
SCCM Report for Disk Free Space Under 20%
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, Last Logon User, Total Disk Space, Free Space, Free Space Percent( All in...