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
#!/usr/bin/python3 | |
import plistlib, sys | |
plist = "/System/Library/PrivateFrameworks/SoftwareUpdateMacController.framework/Versions/A/Resources/SUMacControllerError.loctable" | |
with open(plist, 'rb') as f: | |
d = plistlib.load(f)['en'] | |
if len(sys.argv) == 1: |
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
import Foundation | |
import ServiceManagement | |
func printStatus(plistPath: String) -> String { | |
let plistURL = URL(fileURLWithPath: plistPath) | |
let status = SMAppService.statusForLegacyPlist(at: plistURL) | |
switch status { | |
case .notRegistered: | |
return plistPath + " is not registered" |
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
#!/usr/bin/python | |
import sys, datetime, time, subprocess | |
def apple_year_offset(dateobj, years=0): | |
# Convert to a maleable format | |
mod_time = dateobj.timetuple() | |
# Offset year by number of years | |
mod_time = time.struct_time(tuple([mod_time[0]+years]) + mod_time[1:]) | |
# Convert back to a datetime obj | |
return datetime.datetime.fromtimestamp(int(time.mktime(mod_time))) |
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
#!/bin/bash | |
until [[ -d "/Volumes/Deploy Studio Test" ]]; do | |
sleep 5 | |
done | |
cp -r "/Volumes/Deploy Studio Test/Deploy/Workflows/High Sierra Install/Macintosh HD/copy" "~/Desktop" | |
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
#!/usr/bin/python3 | |
''' | |
Display CPU usage for a given process | |
emoji ref: https://github.com/sheagcraig/Spruce/blob/master/spruce.py | |
''' | |
import subprocess | |
import time | |
import argparse |
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
#!/usr/bin/python | |
import sys, os | |
import urllib, urllib2 | |
import base64 | |
import json | |
import requests | |
import xml.etree.ElementTree as ET | |
def requests_xml(jss_user, jss_pass, jss_url, category): |
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
#!/usr/bin/env python | |
''' | |
download macsysadmin videos | |
requires: | |
pip install requests | |
pip install beautifulsoup4 | |
''' |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
# ================================================================================ | |
# check-1012-sierra-compatibility.py | |
# | |
# This script checks if the current system is compatible with macOS 10.12 Sierra. | |
# These checks are based on the installCheckScript and volCheckScript in | |
# distribution file of OSInstall.mpkg installer package. The OSInstall.mpkg can be | |
# found in the root of InstallESD disk image. |
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
{ | |
"output_name": "macos-netboot", | |
"bridged": true, | |
"netboot": true, | |
"netboot_hdsize": 60, | |
"netboot_osvers": "10.12" | |
} |
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
#!/usr/bin/python | |
from SystemConfiguration import SCDynamicStoreCreate, SCDynamicStoreCopyValue | |
net_config = SCDynamicStoreCreate(None, "net", None, None) | |
def get_primaryinterface(): | |
states = SCDynamicStoreCopyValue(net_config, "State:/Network/Global/IPv4") | |
return states['PrimaryInterface'] |
NewerOlder