HyperV.VMFactory.psd1
|
@{ RootModule = 'HyperV.VMFactory.psm1' ModuleVersion = '1.0.0' GUID = 'a09f6edf-2c95-458d-8755-1b5d5e85f17b' Author = 'Sascha Stumpler' CompanyName = 'Community' Copyright = '(c) 2026 Sascha Stumpler. All rights reserved.' Description = 'Create and configure Hyper-V virtual machines with support for remote execution, bulk creation, differencing disks, TPM, nested virtualization, and more.' PowerShellVersion = '5.1' FunctionsToExport = @( 'New-HyperVVM' 'New-HyperVVMConfiguration' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Hyper-V', 'VM', 'VirtualMachine', 'HyperV', 'Provisioning', 'Windows') LicenseUri = 'https://github.com/yourname/HyperV.VMFactory/blob/main/LICENSE' ProjectUri = 'https://github.com/yourname/HyperV.VMFactory' ReleaseNotes = 'Initial release of HyperV.VMFactory module.' } } } |