From 8bbd4a505dd68445fba9fa2f80bc29c7ee2b5522 Mon Sep 17 00:00:00 2001 From: Zack T Date: Wed, 10 Jan 2018 20:12:54 -0700 Subject: [PATCH] v1.0 = Initial Version + Initial Version --- Software/license_Minitab.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Software/license_Minitab.sh diff --git a/Software/license_Minitab.sh b/Software/license_Minitab.sh new file mode 100644 index 0000000..db1d8a2 --- /dev/null +++ b/Software/license_Minitab.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +########################################################### +# Script Name: license_Minitab.sh +# By: Zack Thompson / Created: 3/6/2017 +# Version: 1.0 / Updated: 3/6/2017 / By: ZT +# +# Description: This script is used activate Minitab with a Network License Server. +# +########################################################### + +# All that is required is to write in the plist file the name of the license server. +Echo "Adding network server address for activation..." +sudo defaults write /Library/Application\ Support/Minitab/Minitab\ Express/mtblic.plist "License File" @server.company.com + +# Set permissions on the file for everyone to be able to read. +sudo chmod 644 /Library/Application\ Support/Minitab/Minitab\ Express/mtblic.plist + +Echo "Configuration Complete!" + +exit 0