├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── auto-assign.yml │ └── codeql.yml ├── .gitignore ├── .gitmodules ├── .wiki ├── GPO Checker.md ├── Home.md ├── Hyper-V Device Passthrough.md ├── Port Scanner.md ├── PortProxyGUI.md ├── VLMCSD & License Manager.md └── images │ ├── gpo-01.png │ ├── hyperv-passth-01.png │ ├── hyperv-passth-02.png │ ├── hyperv-passth-03.png │ ├── hyperv-passth-04.png │ ├── hyperv-passth-05.png │ ├── pp3.png │ ├── ppg1.png │ ├── ppg2.png │ └── ppg4.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Global.sln ├── LICENSE ├── README.md ├── SECURITY.md └── vlmcsd-repos ├── ListProductKeys.md └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.wiki/GPO Checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/GPO Checker.md -------------------------------------------------------------------------------- /.wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/Home.md -------------------------------------------------------------------------------- /.wiki/Hyper-V Device Passthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/Hyper-V Device Passthrough.md -------------------------------------------------------------------------------- /.wiki/Port Scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/Port Scanner.md -------------------------------------------------------------------------------- /.wiki/PortProxyGUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/PortProxyGUI.md -------------------------------------------------------------------------------- /.wiki/VLMCSD & License Manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/VLMCSD & License Manager.md -------------------------------------------------------------------------------- /.wiki/images/gpo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/gpo-01.png -------------------------------------------------------------------------------- /.wiki/images/hyperv-passth-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/hyperv-passth-01.png -------------------------------------------------------------------------------- /.wiki/images/hyperv-passth-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/hyperv-passth-02.png -------------------------------------------------------------------------------- /.wiki/images/hyperv-passth-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/hyperv-passth-03.png -------------------------------------------------------------------------------- /.wiki/images/hyperv-passth-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/hyperv-passth-04.png -------------------------------------------------------------------------------- /.wiki/images/hyperv-passth-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/hyperv-passth-05.png -------------------------------------------------------------------------------- /.wiki/images/pp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/pp3.png -------------------------------------------------------------------------------- /.wiki/images/ppg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/ppg1.png -------------------------------------------------------------------------------- /.wiki/images/ppg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/ppg2.png -------------------------------------------------------------------------------- /.wiki/images/ppg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/.wiki/images/ppg4.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Global.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/Global.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /vlmcsd-repos/ListProductKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/vlmcsd-repos/ListProductKeys.md -------------------------------------------------------------------------------- /vlmcsd-repos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFlightSims/windowsserver-mgmttools/HEAD/vlmcsd-repos/README.md --------------------------------------------------------------------------------