Skip to content

Commit

Permalink
Executables created and update scripts 2.0.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Parsons committed Oct 5, 2017
1 parent e2b1fe2 commit d1eec2a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 9 deletions.
8 changes: 6 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@
# Declare files that will always have CRLF line endings on checkout.
*.cmd text eol=crlf

# Declare files that will always have CRLF line endings on checkout.
*.sh text eol=lf
# Declare files that will always have LF line endings on checkout.
*.sh text eol=lf
*.py text eol=lf

# Declare files that are binary on checkout.
*.exe binary
Binary file modified dumpsmc.exe
Binary file not shown.
Binary file modified gettools.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion lnx-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ python2 ./unlocker.py

echo Getting VMware Tools...
python2 gettools.py
cp ./tools/darwin.* /usr/lib/vmware/isoimages/
cp ./tools/darwin*.* /usr/lib/vmware/isoimages/

echo Finished!

2 changes: 1 addition & 1 deletion lnx-uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ fi
echo Removing backup files...
rm -rf ./backup
rm -rf ./tools
rm -f /usr/lib/vmware/isoimages/darwin.*
rm -f /usr/lib/vmware/isoimages/darwin*.*

echo Finished!
2 changes: 1 addition & 1 deletion lnx-update-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fi

echo Getting VMware Tools...
python2 gettools.py
cp ./tools/darwin.* /usr/lib/vmware/isoimages/
cp ./tools/darwin*.* /usr/lib/vmware/isoimages/

echo Finished!

Binary file modified 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 @@ -38,7 +38,7 @@ unlocker.exe

echo Getting VMware Tools...
gettools.exe
xcopy /F /Y .\tools\darwin.* "%InstallPath%"
xcopy /F /Y .\tools\darwin*.* "%InstallPath%"

echo Starting VMware services...
net start VMUSBArbService > NUL 2>&1
Expand Down
2 changes: 1 addition & 1 deletion win-test-install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ python unlocker.py

echo Getting VMware Tools...
python gettools.py
xcopy /F /Y .\tools\darwin.* "%InstallPath%"
xcopy /F /Y .\tools\darwin*.* "%InstallPath%"

echo Starting VMware services...
net start VMUSBArbService > NUL 2>&1
Expand Down
2 changes: 1 addition & 1 deletion win-uninstall.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ taskkill /F /IM vmware-tray.exe > NUL 2>&1
echo Restoring files...
xcopy /F /Y .\backup\x64\*.* "%InstallPath%x64\"
xcopy /F /Y .\backup\*.* "%InstallPath%"
del /f "%InstallPath%"darwin.*
del /f "%InstallPath%"darwin*.*

echo Removing backup files...
rd /s /q .\backup > NUL 2>&1
Expand Down
2 changes: 1 addition & 1 deletion win-update-tools.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo VMware is installed at: %InstallPath%

echo Getting VMware Tools...
gettools.exe
xcopy /F /Y .\tools\darwin.* "%InstallPath%"
xcopy /F /Y .\tools\darwin*.* "%InstallPath%"

popd

Expand Down

0 comments on commit d1eec2a

Please sign in to comment.