This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a mobile account for a user | |
sudo /System/Library/CoreServices/ManagedClient.app/Contents/Resources/createmobileaccount -n <username> | |
# Delete a user's mobile account | |
sudo dscl . delete /Users/<username> | |
# List all AD accounts on machine | |
dscl . list /Users UniqueID | awk '$2 > 1000 { print $1 }' | |
# Enable/Disable mobile account support on machine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable a user to unlock FileVault2 drive | |
sudo fdesetup add -usertoadd <username> | |
# Disable a user from unlocking FileVault 2 drive | |
sudo fdesetup remove -user <username> | |
# Unlocking FileVault2 drive | |
diskutil cs list | |
diskutil cs unlockVolume <UUID_of_Logical_Volume> -stdinpassphrase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bind to AD | |
sudo dsconfigad -a <computername> -u <username> -ou "" -domain <domain> | |
# Unbind from AD | |
# Can use a bogus username and password here | |
sudo dsconfigad -force -remove -u user -p pass | |
# Manually create a user profile for an AD user | |
sudo /System/Library/CoreServices/ManagedClient.app/Contents/Resources/createmobileaccount -n <username> | |
sudo createhomedir -c -u <username> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove McAfee EPO | |
cd /Library/McAfee/cma | |
sudo ./uninstall.sh | |
# Remove VirusScan | |
cd /usr/local/McAfee | |
sudo ./uninstallMSC | |
# Force McAfee Check-in with EPO | |
# [C]hecks for new policies and tasks, Sends [P]roperties, [E]nforces polcies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get device names of network adapters | |
networksetup -listallhardwareports | |
# Get network service order | |
networksetup -listnetworkserviceorder | |
# List wireless SSIDs | |
networksetup -listpreferredwirelessnetworks <device> | |
# Get and Set search domains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GET request | |
curl http://<url> | |
# View Header Information Only | |
curl http://<url> -I | |
# Include Header Information with request | |
curl http://<url> -i | |
# POST request w/ body in a file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Refactored to check actual timezone abbreviation versus a particular day */ | |
public function is_BST() { | |
$theTime = time(); | |
$tz = new DateTimeZone('Europe/London'); | |
$transition = $tz->getTransitions($theTime, $theTime); | |
$abbr = $transition[0]['abbr']; | |
return $abbr == 'BST' ? true : false; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Command lines for missing functionality in El Capitan's Disk Utility. | |
# Verify Disk | |
sudo /usr/libexec/repair_packages --verify --standard-pkgs / | |
# Repair Disk | |
sudo /usr/libexec/repair_packages --repair--standard-pkgs / | |
# Verify Disk Permissions | |
sudo /usr/libexec/repair_packages --verify --standard-pkgs --volume / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dsquery * "OU=User Accounts,DC=your,DC=domain,DC=com" -filter "(samaccountname=USER)" -attr * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static bool IsInArray(string[] array, string value) | |
{ | |
foreach (string member in array) | |
{ | |
if (member == value) | |
{ | |
return true; | |
} | |
} | |
return false; |
OlderNewer