I have the following configuration, a snippet of which is below, and the only resources that get processed are the windowsfeature resources. No matter what I do, no other resource gets processed, and no errors are generated. For example, BITSManual, RMADBackupAgent and SourceFolder do not run.
Configuration DCConfig{
param ($CompName)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node $CompName{
File SourceFolder {
Ensure="Present"
Type="Directory"
DestinationPath="C:\Install\DSCSource"
}
Service BITSManual {
Name='BITS'
State='Stopped'
StartupType='Manual'
}
# WORKS
WindowsFeature Backup{
Ensure="Present"
Name="Windows-Server-Backup"
}
# WORKS
WindowsFeature DNSServer{
Ensure="Present"
Name="DNS"}
Package RMADBackupAgent {
Ensure = "Present"
Name = "Dell Backup Agent for Active Directory"
Path = "c:\Install\DSCSource\BackupAgent.msi"
ProductId = '6851664D-FC89-437C-8D3D-667DBDC474B1'
Arguments = '/i C:\Install\DSCSource\BackupAgent.msi /qn' # args for silent mode
}