KevinTheJedi As promised, I have figured out the issue and am posting for reference. For whatever reason, Powershell will NOT extract the phar. No errors, but nothing happens. I running the commands in the Command prompt, I got an error that "The filename, directory, or volume label syntax is incorrect". Finally, I stumbled upon the following post: https://stackoverflow.com/questions/12997385/extracting-files-from-phar-archive
In the top answer (matches your code verbatim) there is a comment about "Windows related quotes stuff" simply switching the ' in your code with the " to match: php -r "$phar = new Phar('auth-oauth2.phar'); $phar->extractTo('./auth-oauth2');"
got the job done. Ridiculous.