SimeonGerginov
SimeonGerginov
1. PowerShell version ``` PS C:\windows\system32> $PSversionTable.PSVersion Major Minor Build Revision ----- ----- ----- -------- 5 1 17763 592 ``` 2. Desired State Configuration Module ``` PS C:\windows\system32> Get-Module -ListAvailable...
It seems that this fix introduced a bug in the [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator/issues/9991).
@lucdekens the issue seems to be the same as the one described [here](https://github.com/PowerShell/PowerShell/issues/12054). We've verified the workaround provided there: To comment **FunctionsToExport** and it works as expected on PSv7 on...
Can you provide the following information, so we can investigate the problem further: ```powershell $PSVersionTable $env:PSModulePath Get-Module -Name VMware.vSphereDSC -ListAvailable Get-DscResource -Name VMHostNtpSettings ``` Also if you can provide the...
Excellent ideas, I will start working on the first one to extend the current script with an option to specify which VMHost DSC Resources to export into the Configuration.
ExportVMHostConfiguration script now provides support for specifying which VMHost DSC Resources to export via PR #261.
Hi @myoung808, thanks for your feature request, we can add it to our roadmap. Can you provide additional details about your use-case? For example if you want this to be...
Correct me if I am wrong but I think there is no Public API available that manages the vSphere Global Permissions.
Yes I agree and I propose to add each configuration here as a separate comment and then add them to the repository with a single PR. What do you think...
**VMHostNtpSettings** DSC Resource default configuration for vSphere versions **6.5, 6.7 and 7.0**: ```powershell Configuration VMHostNtpSettings_Default_Config { Param( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string] $Server, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [System.Management.Automation.PSCredential] $Credential, [Parameter(Mandatory...