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
-
Apr 11, 2018
Fix WPAD Vulnerability by Changing Host File with SCCM
It was a bit more diffcult than I thought, originally I was using compliance settings, but then it didn't work so well. So I go back to the classic application deployment by SCCM. Here is the...
-
Apr 5, 2018
Rapid7 Insight Agent Update Fix Discover Script
Rapid7 Insight Agent Update Fix Discover Script Rui Qiu v1.1 4/3/2018 $folder = "C:\Program Files\Rapid7\Endpoint Agent" if (test path $folder) { $content = (get content config.json | where { $\...
-
Mar 30, 2018
Issues Installing Shavlik (Ivanti Patch)
I didn't realize a simple issue can cause a big issue with Shavlik: When launching the installer from Shavlik, you have to "Unblock" the file before running the isntaller, otherwise you will get...
-
Mar 30, 2018
How to Set up SCCM SSRS Email Notification
First go to your SQL Reporting server, and launch "Reporting Services Configuration Manager": It is best to use an internal SMTP server. And once you have set it up, you can use this Powershell...
-
Mar 15, 2018
SCCM WSUS Update Failed with 0x80244022
When I checked the error code, it said HTTP error 503 from WUAHandler.log, it turned out that the Wsuspool was stopped in IIS, and I have to changed the "Private Memory Limit" to 4194304....
-
Jan 16, 2018
How to Uninstall NoMAD
Here is a simple shell script to uninstall NoMAD: /bin/ls l /dev/console | /usr/bin/awk ‘{ print $3 }' And you can use this to search files after uninstallation just to verify it is gone:
-
Jan 8, 2018
Force Install macOS Update
Here is a simple command to force install macOS updates in the background: softwareupdate i a After running that, you can use casper to notify user to reboot :) and here is a useful link to enable...
-
Jan 4, 2018
Extract a JSON value from a BASH script
find the simple bash script for extracting JSON value from this GitHub: <https://gist.github.com/cjus/1047794 function jsonValue() { KEY=$1 num=$2 awk F"[,:}]"...
-
Dec 12, 2017
Shell Script to Remove Centrify, Move Wifi/LAN, and Request 802.1 Certificate
Here is a long script of doing a lot of things, it deletes the Centrify Binding, Centrify certificates and itself, binds the machine to AD via native plugin and requests a 802.1x certificate via...