Tags
Active_Directory Adobe AFP ARD Background Boot Bootcamp Chrome Command Default User DEP Deployment Dual_Boot El Capitan External boot GIS Group_Policy High Sierra Image Installer JAMF KACE Keyserver Kiosk Lion Login Macintosh Matlab Mavericks Mt Lion Novell Packaging Reference Security Silent Installer SIP Sleep Software Spss Startup User_Profile VectorWorks Windows Windows 10 Windows to GoContact Me
Contact me by email ... [email protected]Login
Tag Archives: Macintosh
Mac – Add Login items – Startup programs for all user
On the mac to have an application start automatically for all users add the application to the file “loginwindow.plist” in /Library/Preferences. An example: <?xml version=”1.0″ encoding=”UTF-8″?> <!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”> <plist version=”1.0″> <dict> <key>AutoLaunchedApplicationDictionary</key> <array> <dict> <key>Hide</key> … Continue reading
Image Build – Mac – AFP location files for each graduating class
Students have network file space on our Achilles server based on their graduating year. I presently provide links to these locations in a common area on the Mac image. in /Library/Application Support/Williams/Network File Space/Achilles are a series of .afloc files … Continue reading
Posted in Labs
Tagged AFP, Deployment, Image, Macintosh
Comments Off on Image Build – Mac – AFP location files for each graduating class
Mac – Apple dropped support for X11 in Mt Lion
Apple move X11 development to the “crowd”. See the post at: http://support.apple.com/kb/HT5293 To get X11 on Mt Lion (10.8.x), See the link at: http://xquartz.macosforge.org/landing/
Mac – XCode 4 on Mt Lion
Apparently, Apple no longer installs the command line tools for XCode automatically. Once you install XCode you need to go to the Preferences, then Downloads to install these as an extra step … http://stackoverflow.com/questions/11705912/upgrading-to-mountain-lion-and-xcode-4-broke-my-make
Mac – Software Packaging Reference
A good article on re-packaging software for Macs that includes links to useful tools: http://www.mactech.com/articles/mactech/Vol.25/25.01/2501MacEnterprise-PackagingforDistribution/index.html
Posted in Software
Tagged Deployment, Macintosh, Packaging, Software
Comments Off on Mac – Software Packaging Reference
Mac – What makes a volume bootable
To quote from the link below: Bootability comes down to a few simple rules: The hard drive enclosure must support booting a Macintosh (applies to external hard drives only) The computer must support booting from the interface used to … Continue reading
Mac – GarageBand Loops
GarageBand Apple Loops are stored in \Library\Audio\Apple Loops See: http://support.apple.com/kb/HT1045 And — Here is a utility to download all Apple Loops to a mac: https://github.com/carlashley/appleLoops
Training – Penn State Mac Admins Conference 2012 Videos
The annual Penn State Mac Administrators conference is geered toward high-end enterprise wide mac administration. Many useful videos of conference sessions are at: http://www.youtube.com/user/psumacconf/videos
Mac – Command to remove Users “Large” and “Old” files
This command finds all files larger than 10 MB AND which haven’t been accessed in over 4 weeks: sudo find /Users -size +10M -atime +4w This finds the same and removes them (there is no undo!): sudo find /Users -size … Continue reading