├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── DISCLAIMER.md ├── GeneratePuppetManifests.cmd ├── LICENSE ├── NOTICE ├── PuppetManifestGenerator.psd1 ├── PuppetManifestGenerator.psm1 ├── PuppetManifestGenerator.xaml ├── PuppetManifestGeneratorGUI.psm1 ├── README.md ├── img └── enterprise.png ├── packaging ├── Package.nuspec ├── build.bat ├── chocolateyInstall.ps1 ├── chocolateyUninstall.ps1 └── readme.md └── resources ├── chocolatey ├── Chocolatey.ps1 └── ConvertTo-ManifestChocolatey.ps1 ├── environment ├── ConvertTo-ManifestEnvironment.ps1 └── Environment.ps1 ├── groups ├── ConvertTo-ManifestGroups.ps1 └── groups.ps1 ├── hosts ├── ConvertTo-ManifestHosts.ps1 └── hosts.ps1 ├── iis ├── ConvertTo-ManifestIIS.ps1 └── Iis.ps1 ├── localgrouppolicy ├── ConvertTo-ManifestLocalGroupPolicy.ps1 └── LocalGroupPolicy.ps1 ├── motd ├── ConvertTo-ManifestMotd.ps1 └── Motd.ps1 ├── services ├── ConvertTo-ManifestServices.ps1 └── Services.ps1 ├── users ├── ConvertTo-ManifestUsers.ps1 └── Users.ps1 └── windowsfeatures ├── ConvertTo-ManifestWindowsFeatures.ps1 └── WindowsFeatures.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /GeneratePuppetManifests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/GeneratePuppetManifests.cmd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/NOTICE -------------------------------------------------------------------------------- /PuppetManifestGenerator.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/PuppetManifestGenerator.psd1 -------------------------------------------------------------------------------- /PuppetManifestGenerator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/PuppetManifestGenerator.psm1 -------------------------------------------------------------------------------- /PuppetManifestGenerator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/PuppetManifestGenerator.xaml -------------------------------------------------------------------------------- /PuppetManifestGeneratorGUI.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/PuppetManifestGeneratorGUI.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/README.md -------------------------------------------------------------------------------- /img/enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/img/enterprise.png -------------------------------------------------------------------------------- /packaging/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/packaging/Package.nuspec -------------------------------------------------------------------------------- /packaging/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/packaging/build.bat -------------------------------------------------------------------------------- /packaging/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/packaging/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /packaging/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/packaging/chocolateyUninstall.ps1 -------------------------------------------------------------------------------- /packaging/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/packaging/readme.md -------------------------------------------------------------------------------- /resources/chocolatey/Chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/chocolatey/Chocolatey.ps1 -------------------------------------------------------------------------------- /resources/chocolatey/ConvertTo-ManifestChocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/chocolatey/ConvertTo-ManifestChocolatey.ps1 -------------------------------------------------------------------------------- /resources/environment/ConvertTo-ManifestEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/environment/ConvertTo-ManifestEnvironment.ps1 -------------------------------------------------------------------------------- /resources/environment/Environment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/environment/Environment.ps1 -------------------------------------------------------------------------------- /resources/groups/ConvertTo-ManifestGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/groups/ConvertTo-ManifestGroups.ps1 -------------------------------------------------------------------------------- /resources/groups/groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/groups/groups.ps1 -------------------------------------------------------------------------------- /resources/hosts/ConvertTo-ManifestHosts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/hosts/ConvertTo-ManifestHosts.ps1 -------------------------------------------------------------------------------- /resources/hosts/hosts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/hosts/hosts.ps1 -------------------------------------------------------------------------------- /resources/iis/ConvertTo-ManifestIIS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/iis/ConvertTo-ManifestIIS.ps1 -------------------------------------------------------------------------------- /resources/iis/Iis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/iis/Iis.ps1 -------------------------------------------------------------------------------- /resources/localgrouppolicy/ConvertTo-ManifestLocalGroupPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/localgrouppolicy/ConvertTo-ManifestLocalGroupPolicy.ps1 -------------------------------------------------------------------------------- /resources/localgrouppolicy/LocalGroupPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/localgrouppolicy/LocalGroupPolicy.ps1 -------------------------------------------------------------------------------- /resources/motd/ConvertTo-ManifestMotd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/motd/ConvertTo-ManifestMotd.ps1 -------------------------------------------------------------------------------- /resources/motd/Motd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/motd/Motd.ps1 -------------------------------------------------------------------------------- /resources/services/ConvertTo-ManifestServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/services/ConvertTo-ManifestServices.ps1 -------------------------------------------------------------------------------- /resources/services/Services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/services/Services.ps1 -------------------------------------------------------------------------------- /resources/users/ConvertTo-ManifestUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/users/ConvertTo-ManifestUsers.ps1 -------------------------------------------------------------------------------- /resources/users/Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/users/Users.ps1 -------------------------------------------------------------------------------- /resources/windowsfeatures/ConvertTo-ManifestWindowsFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/windowsfeatures/ConvertTo-ManifestWindowsFeatures.ps1 -------------------------------------------------------------------------------- /resources/windowsfeatures/WindowsFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs/PuppetManifestGenerator/HEAD/resources/windowsfeatures/WindowsFeatures.ps1 --------------------------------------------------------------------------------