Skip to content

Instantly share code, notes, and snippets.

<?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>PayloadIdentifier</key>
<string>com.apple.mdm.moostophelees.talkingmoose.net.d8300e90-1b4b-0133-b2d5-38e856168efc.alacarte</string>
<key>PayloadRemovalDisallowed</key>
<true />
<key>PayloadScope</key>
<string>User</string>
<?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>kSubUIAppCompletedFirstRunSetup1507</key>
<true/>
</dict>
</plist>
@talkingmoose
talkingmoose / Export Outlook Events.scpt
Created October 9, 2015 14:04
Export events from all calendars in Outlook for Mac to individual .ics files
tell application "Finder"
set tmpFolder to "Outlook Calendars"
try
set tmpLocation to make new folder with properties {name:tmpFolder} at path to desktop
on error
set tmpLocation to folder tmpFolder of folder (path to desktop)
end try
end tell
tell application "Microsoft Outlook"
@talkingmoose
talkingmoose / Export Outlook Contacts.scpt
Last active October 9, 2015 14:08
Export contacts from all address books in Outlook for Mac to individual .vcf files
tell application "Finder"
set tmpFolder to "Outlook Address Books"
try
set tmpLocation to make new folder with properties {name:tmpFolder} at path to desktop
on error
set tmpLocation to folder tmpFolder of folder (path to desktop)
end try
end tell
tell application "Microsoft Outlook"
@talkingmoose
talkingmoose / Remove Outlook Categories.scpt
Created November 29, 2015 01:30
Removes all categories from selected Outlook messages.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
delete category of aMessage
end repeat
end tell
@talkingmoose
talkingmoose / Add Outlook Category.scpt
Created November 29, 2015 01:32
Add a category to an Outlook item.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
set category of aMessage to category "Family"
end repeat
end tell
@talkingmoose
talkingmoose / Append Outlook Category.scpt
Created November 29, 2015 01:33
Add a category to an Outlook item with existing categories.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
set theList to categories of aMessage
set end of theList to category "Team"
set category of aMessage to theList
end repeat
end tell
@talkingmoose
talkingmoose / Delete Outlook Items.scpt
Created November 29, 2015 01:43
Deletes any selected items (messages, events, contacts, etc.) from Outlook.
tell application "Microsoft Outlook"
set theSelection to the selection
repeat with anItem in theSelection
delete anItem
end repeat
end tell
@talkingmoose
talkingmoose / FTP FileMaker Backups.sh
Created December 7, 2015 15:30
Copy FileMaker backups to remote FTP server for backups. Rotate remote copies of backups on FTP server.
#!/bin/sh
# Script purpose:
# Copy FileMaker backups to remote FTP server for backups.
# Rotate remote copies of backups on FTP server.
# Written by William Smith, 318, Inc.
# August 26, 2015
# Notes:
@talkingmoose
talkingmoose / Change OS X Password
Last active May 22, 2016 17:13
Opens the Users & Groups pane in System Preferences and clicks the Change Password button
tell application "Finder" to open file "Accounts.prefpane" of (path to system preferences)
tell application "System Events"
tell application process "System Preferences"
delay 1
click button "Change Password…" of tab group 1 of window "Users & Groups"
end tell
end tell