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:
parent
d6b60e4e2c
commit
25fd6b4966
BIN
dumpsmc.exe
BIN
dumpsmc.exe
Binary file not shown.
BIN
gettools.exe
BIN
gettools.exe
Binary file not shown.
|
@ -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!
|
||||
|
|
|
@ -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!
|
||||
|
|
BIN
unlocker.exe
BIN
unlocker.exe
Binary file not shown.
|
@ -44,7 +44,7 @@ xcopy /F /Y "%InstallPath%vmwarebase.dll" .\backup\
|
|||
|
||||
echo.
|
||||
echo Patching...
|
||||
unlocker.exe
|
||||
python unlocker.py
|
||||
|
||||
echo.
|
||||
echo Getting VMware Tools...
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue