VMwareRemote (temporary name), is a tool written in Python that let's you see a list of your VMware VMs inside a web browser, in order to use them in another computer on the same network.
VMwareRemote DOES NOT let you remote control a running VM, for that you may want to use a VNC Client and the built in VNC Server of VMware Workstation.
- Config File
- Linux Support
- GUI Installer
- VM Creation
- VM Cloning
- VM Editing
- Enabling VNC
- Running VMware Player VMs
- Decent look
- Automatic Updater
- Host OS: Windows, Linux
- VMware: Workstation 16, Player 16 (with limitation)
Install Python (either from the MS Store or from the official website) and Pip.
In a terminal (CMD or PowerShell) type:
pip install flask
Open a terminal in the folder you clone the repo into and run this 2 commands:
$env:FLASK_APP = "server"
flask run
export FLASK_APP=server
flask run
Sometimes flask run may not work so try:
python3 -m flask run