Travis Plunk
Travis Plunk
Repro ```powershell Get-DscResource -name foobar ``` Expected ``` CheckResourceFound : The term 'foobar' is not recognized as the name of a Resource. At /Users/travisplunk/git/PSDesiredStateConfiguration/src/PSDesiredStateConfiguration/PSDesiredStateConfiguration.psm1:4019 char:13 + CheckResourceFound $Name $Resources +...
On PowerShell Core on linux: ```powershell Get-DscResource -Name PsModule ``` Expected ```none ResourceType : MSFT_PSModule Name : PSModule FriendlyName : PSModule Module : PowerShellGet ModuleName : PowerShellGet Version : 2.2...
On PowerShell Core: ```powershell Get-DscResource -Name PsModule ``` Expected ```none ResourceType : MSFT_PSModule Name : PSModule FriendlyName : PSModule Module : PowerShellGet ModuleName : PowerShellGet Version : 2.2 Path :...
Per @HemantMahawar, Create a resource without specifying the path ``` PowerShell #The share to create $ShareName = New-xDscResourceProperty -Name ShareName -Type String -Attribute Key #Create the actual resource New-xDscResource -Name...
Per @HemantMahawar , Create any resource with path specified to New-xDscResource ``` PowerShell #The share to create $ShareName = New-xDscResourceProperty -Name ShareName -Type String -Attribute Key #Create the actual resource...
_Ported from internal bug database, originally filed by triage_ Currently, one have to give all the properties, whether they have changed or not.
Example: xWebAdministration MSFT_xWebSite
additionally, enable automatically collecting if it is present