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

Posted in Labs, Software | Tagged , | Comments Off on Mac – GarageBand Loops

Mac – To add a new admin acct when you’ve forgotten the old one …

Testing this link …
http://www.hackmac.org/hacks/how-to-create-a-new-administrator-account/

Posted in Labs | Tagged | Comments Off on Mac – To add a new admin acct when you’ve forgotten the old one …

Software – OIT installers web site

To update installers on the OIT Software web site …

1) Add the installers to:
\\wp-dev1
Installers are stored in the “Software Uploads” directory structure.

Note: This server is currently accessible from AD joined Lab computers because those have the NTLM security level lowered already by Group Policy. The AD account you use to log into a lab computer will also have to be authorized on this server.

For other computers,you may need to decrease your LAN Manager (NTLM) security level. This is done in your “local security policies” . Here is one of many web sites that explains how to set the NTLM security level: https://technet.microsoft.com/en-us/library/jj852207(v=ws.11).aspx

2) Login into WordPress at:
http://it.williams.edu/wp-login.php

3) Connect to the Software Admin page at:
http://oit.williams.edu/software-admin/

Posted in Software | Tagged , | Comments Off on Software – OIT installers web site

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

Posted in Labs, Software | Tagged | Comments Off on Training – Penn State Mac Admins Conference 2012 Videos

KACE – Software installs from alternative download

Using the KACE 1000 server to install software from the “Alternative” download share … (This preserves disk space on the server for the patch feed.)

1) Create zip file of install files. (Be sure to just zip the files and not the enclosing folder. The install process is going to be looking to work with something like “.\install.exe”)

2) Copy that zip file to \\kstore\apps (Gabe needs to give your account write permission to that share.)

3) Create a dummy zip file which has only one small file but has the exact same name as the zip file you just copied to the \\kstore share (be careful not to overwrite and/or confuse these 2 zip files.)

4) Map a drive on a windows box that is running the KACE 1000 client to the \\kstore\apps share

5) Create the checksum for the zip file stored in the \\kstore\apps location with the command:
"C:\Program Files (x86)\Dell\KACE\KDeploy.exe" -hash=k:\FILENAME.ZIP

6) Log into the KACE 1000 server and go to Inventory – Software – Choose Action – Create New Item …
Enter a relevant Display Name, Select the target Operating Systems, and choose the small dummy zip file as the file to upload and associate with this software item. Save this item.

7) Next go to Distribution – Managed Installations – Choose Action – Create New Item …
Select the software item you just saved above. Leave everything blank till the “Installation Command” section. I select “Configure Manually” and enter the exact install command as in “setup.exe /S” and then check off “Run Command Only” and “Don’t Prepend msiexec”. Also check off “Use Alternative Download” which opens a couple more boxes. In the first, put your share location, mine is: \\kstore\apps, next paste in the checksum you generated earlier, be sure to carefully delete the extra crap at the beginning and end of the actual checksum. Enter the username and password for an account on the share that has read access to the share location. (Gabe is the keeper of these accounts) Enter any notes you may want, also select the target computers which should get the install and set the installation time frame and lastly for the Managed Action: select “Execute Anytime”. Then save the item.

Now – as the targeted computers check-in – they should see that they have an installation waiting and they should attempt the install. Assuming everything is correct above the installs should proceed.

Troubleshooting —

1) Be sure that the install command is absolutely correct. To do this test the install command in a command window on a test computer or VM.
2) Be sure the name of the dummy zip file and the real zip file are identical.
3) Be sure the checksum is created against the real zip file stored on the share.

Posted in Labs, Software | Tagged , , | Comments Off on KACE – Software installs from alternative download

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 +10M -atime +4w -exec rm {} \;

There appear to be large cache files being created in the Fall of 2014 …. this command removes them:
sudo find /Users -size +100M -name lsm_map -atime +2w -exec rm {} \;

When booting to external drive, this finds files 100 MBs large and 4 weeks old and lists them with “ls -lah”:
sudo find "/Volumes/Macintosh HD/Users" -size +100M -atime +4w -exec ls -lah {} \;

Lists the total size of a directory structure:
sudo du -sh /Users/xxx

 

Posted in Labs | Tagged | Comments Off on Mac – Command to remove Users “Large” and “Old” files

Software – Adobe Installation and Licensing Blog and Forum

A useful link to Adobe insider’s Installation and Licensing blog …

http://blogs.adobe.com/oobe/

Also – Adobe has a forum for posting questions at:
http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deployment

Posted in Software | Tagged , , | Comments Off on Software – Adobe Installation and Licensing Blog and Forum