Skip to content

kmccormick/windows-capability-dsc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

WindowsCapabilityDsc

There's default DSC resources for WindowsFeature and WindowsOptionalFeature, but not WindowsCapability.

I want to install OpenSSH Server!

Using

Configuration SSH {
    Import-DscResource -ModuleName WindowsCapability
    Node localhost {
        WindowsCapabilityResource sshd {
            Name = "OpenSSH.Server~~~~0.0.1.0"
            Ensure = "Present"
        }
    }
}

About

Powershell DSC resource for WindowsCapability

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published