aaronparker / image-customise

Make Windows 10/11, Windows Server enterprise ready with OS and default user profile customisations and optimisations. Support Windows PCs and VDI
https://stealthpuppy.com/image-customise/
MIT License
95 stars 18 forks source link

Install-Defaults.psm1 missing Hypervisor #23

Closed ritschi86 closed 1 year ago

ritschi86 commented 1 year ago

In Line 99 "Function" Get-Model, the Citrix Hypervisor is missing... HVM*

function Get-Model { $Hypervisor = "Parallels*|VMware*|Virtual*" if ((Get-CimInstance -ClassName "Win32_ComputerSystem").Model -match $Hypervisor) { $Model = "Virtual" } else { $Model = "Physical" } Write-Output -InputObject $Model }