Skip to content

Commit

Permalink
fixed linux python script to call python3, removed binaries, changed …
Browse files Browse the repository at this point in the history
…windows batch files to call the installed python distribution. use the release to run with a bundled python distribution
  • Loading branch information
paolo-projects committed Feb 13, 2022
1 parent d6b60e4 commit 25fd6b4
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
Binary file removed dumpsmc.exe
Binary file not shown.
Binary file removed gettools.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions lnx-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion lnx-update-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
Binary file removed unlocker.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion win-install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ xcopy /F /Y "%InstallPath%vmwarebase.dll" .\backup\

echo.
echo Patching...
unlocker.exe
python unlocker.py

echo.
echo Getting VMware Tools...
Expand Down
2 changes: 1 addition & 1 deletion win-update-tools.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

1 comment on commit 25fd6b4

@blidio
Copy link

@blidio blidio commented on 25fd6b4 May 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool

Please sign in to comment.