When trying to authenticate butler in the Command Prompt, I get this message:
"butler" is not recognized as an internal or external command, operable program or batch file
Help?
I'm far too late to the party but just for future reference: this error message is trying to tell you that the folder where you installed butler is not included in your %PATH% environment variable.
To quote from the manual:
.zip file to a folder of your choice (e.g. C:\butler)Win + X and select System
Path, then click Edit
C:\butler)
You either forgot the third bullet prompt or did something wrong while doing it.
Also, changes to your PATH will only take effect in command prompt windows you open after doing those changes, not in command prompt windows that were already open before. Just open a new command prompt, or reboot your computer if you want to be sure.
Explanation: When you type something like `butler` into your command prompt, Windows goes through the folders that are listed in your PATH variable to see if any of them contain an executable file called `butler`. If yes, it runs that file, and if no, it throws the error message you've encountered.
(People might come across this post via Google so I think a little thread necromancy is excusable)