├── .gitignore ├── LICENSE ├── README.md ├── dist ├── License.rtf ├── createmsi.py └── vdiclient.json ├── requirements.bat ├── requirements.sh ├── screenshots ├── login-totp.png ├── login.png └── vdiview.png ├── vdiclient.ini.example ├── vdiclient.png ├── vdiclient.py └── vdiicon.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/README.md -------------------------------------------------------------------------------- /dist/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/dist/License.rtf -------------------------------------------------------------------------------- /dist/createmsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/dist/createmsi.py -------------------------------------------------------------------------------- /dist/vdiclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/dist/vdiclient.json -------------------------------------------------------------------------------- /requirements.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/requirements.bat -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/requirements.sh -------------------------------------------------------------------------------- /screenshots/login-totp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/screenshots/login-totp.png -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /screenshots/vdiview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/screenshots/vdiview.png -------------------------------------------------------------------------------- /vdiclient.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/vdiclient.ini.example -------------------------------------------------------------------------------- /vdiclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/vdiclient.png -------------------------------------------------------------------------------- /vdiclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/vdiclient.py -------------------------------------------------------------------------------- /vdiicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshpatten/PVE-VDIClient/HEAD/vdiicon.ico --------------------------------------------------------------------------------