Created
December 8, 2021 05:52
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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