From 12621aae9e4ea1711addc44f05e7d12e1ea16575 Mon Sep 17 00:00:00 2001 From: Dwerg <35254268+Dwerg@users.noreply.github.com> Date: Tue, 6 Feb 2018 13:41:02 +0100 Subject: [PATCH] Added simple Python install check Now tries to run the "python" command first, if it fails it tries default install path "C:\python27\python.exe". Returns "Check Python install" if those 2 fail. --- Extract keys.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extract keys.bat b/Extract keys.bat index 881fd5c..59c7c31 100644 --- a/Extract keys.bat +++ b/Extract keys.bat @@ -2,10 +2,10 @@ python walletaid.py IF ERRORLEVEL 1 ( CLS - "C:\python27\python.ee" walletaid.py + "C:\python27\python.exe" walletaid.py ) if ERRORLEVEL 1 ( CLS ECHO Check Python install ) -@pause \ No newline at end of file +@pause