PowerShell DSC Active Directory configuration #719
Replies: 2 comments
-
So, basically, the same question was raised during the latest DSC community call last Wednesday, and I think Chris Hill is also referring to it in #529. There isn't currently a direct guide on how to migrate. Nonetheless, for the indirect answer, I would refer to the great discussion Chris, Steve, and Jason had during this community call (which will hopefully be up soon on https://www.youtube.com/@dsccommunity2958). For a more direct answer, either you would:
Don't confuse this module with the PSDesiredStateConfiguration module. It's also good to point out that DSC currently doesn't have an LCM, meaning the |
Beta Was this translation helpful? Give feedback.
-
Thx, I will try :) |
Beta Was this translation helpful? Give feedback.
-
Dear Team,
Question is there any guide or some example how to move DSC 2.0 to DSC 3.0, do we need to create custom resource / adapter ?
`powershell
Configuration ADDS_Setup {
Import-DscResource -ModuleName ActiveDirectoryDsc
}
Generate MOF File
ADDS_Setup -OutputPath "C:\DSC"
Apply Configuration
Start-DscConfiguration -Path "C:\DSC" -Wait -Verbose -Force
`
Beta Was this translation helpful? Give feedback.
All reactions