├── PSHyperVTools.psd1 ├── PSHyperVTools.psm1 ├── README.md ├── assets └── vmextensions.png ├── changelog.md ├── docs ├── Expand-VMGroup.md ├── Find-VMGroup.md ├── Get-VMIPAddress.md ├── Get-VMMemorySummary.md ├── Get-VMState.md ├── Open-VMConnect.md ├── Open-VMRemoteDesktop.md ├── Set-VMNote.md ├── Start-VMGroup.md └── Stop-VMGroup.md ├── en-us └── PSHyperVTools-help.xml ├── functions ├── private.ps1 └── public.ps1 ├── hyperv-vm.extensions.json ├── license.txt ├── mygroupvm.format.ps1xml ├── tests └── PSHyperV.Tests.ps1 ├── vmIPAddress.format.ps1xml └── vmMemorySummary.format.ps1xml /PSHyperVTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/PSHyperVTools.psd1 -------------------------------------------------------------------------------- /PSHyperVTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/PSHyperVTools.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/README.md -------------------------------------------------------------------------------- /assets/vmextensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/assets/vmextensions.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/Expand-VMGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Expand-VMGroup.md -------------------------------------------------------------------------------- /docs/Find-VMGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Find-VMGroup.md -------------------------------------------------------------------------------- /docs/Get-VMIPAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Get-VMIPAddress.md -------------------------------------------------------------------------------- /docs/Get-VMMemorySummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Get-VMMemorySummary.md -------------------------------------------------------------------------------- /docs/Get-VMState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Get-VMState.md -------------------------------------------------------------------------------- /docs/Open-VMConnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Open-VMConnect.md -------------------------------------------------------------------------------- /docs/Open-VMRemoteDesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Open-VMRemoteDesktop.md -------------------------------------------------------------------------------- /docs/Set-VMNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Set-VMNote.md -------------------------------------------------------------------------------- /docs/Start-VMGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Start-VMGroup.md -------------------------------------------------------------------------------- /docs/Stop-VMGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/docs/Stop-VMGroup.md -------------------------------------------------------------------------------- /en-us/PSHyperVTools-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/en-us/PSHyperVTools-help.xml -------------------------------------------------------------------------------- /functions/private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/functions/private.ps1 -------------------------------------------------------------------------------- /functions/public.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/functions/public.ps1 -------------------------------------------------------------------------------- /hyperv-vm.extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/hyperv-vm.extensions.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/license.txt -------------------------------------------------------------------------------- /mygroupvm.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/mygroupvm.format.ps1xml -------------------------------------------------------------------------------- /tests/PSHyperV.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/tests/PSHyperV.Tests.ps1 -------------------------------------------------------------------------------- /vmIPAddress.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/vmIPAddress.format.ps1xml -------------------------------------------------------------------------------- /vmMemorySummary.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSHyperV/HEAD/vmMemorySummary.format.ps1xml --------------------------------------------------------------------------------