Skip to content

Instantly share code, notes, and snippets.

@steelproxy
Created December 8, 2021 05:52
Show Gist options
  • Save steelproxy/2187159b98ca277e0d3a75143be4e82b to your computer and use it in GitHub Desktop.
Save steelproxy/2187159b98ca277e0d3a75143be4e82b to your computer and use it in GitHub Desktop.
Script I created to get unlimited free ExpanDrive5 trials with on macOs, don't know if it still works.
clear
printf "Would you like to reset your ExpanDrive trial? (y/n): "
read PROMPT
if [ "$PROMPT" != "y" ]
then
exit
fi
printf "Killing ExpanDrive... "
pkill ExpanDrive
printf "Killed!\nResetting... "
sudo rm -f "/Users/$(whoami)/Library/Application Support/ExpanDrive/ExpanDrive5.ExpanDriveLicense"
printf "\e[1A\e[KResetting... Reset!\nStarting ExpanDrive... "
open -a ExpanDrive
printf "ExpanDrive started!\nPush any key to exit."
read
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment