You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
Get-GuestConfigurationPackageComplianceStatus -Path C:\Windows\System32\MyConfig.zip
result:
Write-Error: Job 4cd3cfb6-343d-44f7-ab8c-ec3a1c4a063f : MIResult: 6 Error Message: Could not find the type of DSC resource class MSFT_nxPackageResource. Message ID: ClassTypeNotFound Error Category: 13 Error Code: 6 Error Type: MI
NX module is installed and should have the MSFT_nxPackageResource class in it
The text was updated successfully, but these errors were encountered:
DSC config
Configuration 'aidepackageinstall' {
Import-DscResource -ModuleName nx
node LinuxNode {
#Ensure aide package is installed
nxpackage aidepackage {
Ensure = 'Present'
Name = 'aide'
PackageManager = 'Apt'
}
}
}
New-GuestConfigurationPackage
-Name 'MyConfig'
-Configuration 'C:\Temp\LinuxNode.mof'
-Type Audit
-Force
Result:
Name Path
MyConfig C:\Windows\System32\MyConfig.zip
Get-GuestConfigurationPackageComplianceStatus -Path C:\Windows\System32\MyConfig.zip
result:
Write-Error: Job 4cd3cfb6-343d-44f7-ab8c-ec3a1c4a063f : MIResult: 6 Error Message: Could not find the type of DSC resource class MSFT_nxPackageResource. Message ID: ClassTypeNotFound Error Category: 13 Error Code: 6 Error Type: MI
NX module is installed and should have the MSFT_nxPackageResource class in it
The text was updated successfully, but these errors were encountered: