#Shell Script
7 posts
-
Feb 2, 2023
Some Simple Shell Scripts to Install Mac Apps for Intune
Here are some typical shell script codes for mac application installation
-
Feb 2, 2023
Shell Script to Install Cisco Anyconnect VPN via Intune
There is an excellent article talks about how to deploy the Cisco Anyconnect VPN client via Intune: <https://maclovin.org/blog native/2021/cge1p5lkn8xdyxz8bgcumg61u7davp Basically : 1. Add Cisco Team...
-
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 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"[,:}]"...
-
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...
-
Jul 6, 2015
ESET Mac SCCM Custom Installer Package
We have ESET 5 for Mac in our environment, we can use ESET Remote Install on all the macs, but since we have SCCM and planning to use it manage macs, I decided to create a custom ESET install package...
-
Jul 6, 2015
Mac Deployment One Click Script
We don't have Casper in our environment, so everything is still quite manual when deploying a mac. One day I was so tired of endless click to join a mac to AD. then I start working on mac deployment....