fixed linux python script to call python3, removed binaries, changed windows batch files to call the installed python distribution. use the release to run with a bundled python distribution

This commit is contained in:
Paolo Infante 2022-02-13 13:26:22 +01:00
parent d6b60e4e2c
commit 25fd6b4966
7 changed files with 5 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View File

@ -27,10 +27,10 @@ elif [ -d /usr/lib/vmware/lib/libvmwarebase.so/ ]; then
fi
echo Patching...
python2 ./unlocker.py
python3 ./unlocker.py
echo Getting VMware Tools...
python3 gettools.py
python3 ./gettools.py
cp ./tools/darwin*.* /usr/lib/vmware/isoimages/
echo Finished!

View File

@ -15,7 +15,7 @@ if [[ $EUID -ne 0 ]]; then
fi
echo Getting VMware Tools...
python3 gettools.py
python3 ./gettools.py
cp ./tools/darwin*.* /usr/lib/vmware/isoimages/
echo Finished!

Binary file not shown.

View File

@ -44,7 +44,7 @@ xcopy /F /Y "%InstallPath%vmwarebase.dll" .\backup\
echo.
echo Patching...
unlocker.exe
python unlocker.py
echo.
echo Getting VMware Tools...

View File

@ -18,7 +18,7 @@ for /F "tokens=2* delims= " %%A in ('REG QUERY %KeyName% /v InstallPath') do se
echo VMware is installed at: %InstallPath%
echo Getting VMware Tools...
gettools.exe
python gettools.py
xcopy /F /Y .\tools\darwin*.* "%InstallPath%"
popd