├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── copilot-instructions.md └── workflows │ ├── ci.yml │ ├── conventional-commits.yml │ ├── copilot-setup-steps.yml │ ├── prevent-file-change.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .mdlrc ├── .overcommit.yml ├── .release-please-manifest.json ├── .rspec ├── .rubocop.yml ├── .vscode └── extensions.json ├── .yamllint ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── README.md ├── TESTING.md ├── attributes ├── config_lcm.rb ├── default.rb ├── powershell3.rb ├── powershell4.rb └── powershell5.rb ├── chefignore ├── documentation └── .gitkeep ├── kitchen.dokken.yml ├── kitchen.exec.yml ├── kitchen.global.yml ├── kitchen.yml ├── libraries └── powershell_version.rb ├── metadata.rb ├── recipes ├── default.rb ├── disable_lcm.rb ├── dsc.rb ├── enable_dsc_script.rb ├── enable_lcm.rb ├── powershell2.rb ├── powershell3.rb ├── powershell4.rb ├── powershell5.rb ├── windows_reboot.rb └── winrm.rb ├── release-please-config.json ├── renovate.json └── spec ├── libraries └── powershell_version_spec.rb ├── recipes ├── disable_lcm_spec.rb ├── dsc_spec.rb ├── enable_dsc_script_spec.rb ├── enable_lcm_spec.rb ├── powershell2_spec.rb ├── powershell3_spec.rb ├── powershell4_spec.rb ├── powershell5_spec.rb └── winrm_spec.rb └── spec_helper.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use chefworkstation 2 | export KITCHEN_GLOBAL_YAML=kitchen.global.yml 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sous-chefs/maintainers 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/prevent-file-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/prevent-file-change.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.mdlrc -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "6.4.21" 3 | } 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/.yamllint -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/Dangerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/config_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/attributes/config_lcm.rb -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/powershell3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/attributes/powershell3.rb -------------------------------------------------------------------------------- /attributes/powershell4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/attributes/powershell4.rb -------------------------------------------------------------------------------- /attributes/powershell5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/attributes/powershell5.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/chefignore -------------------------------------------------------------------------------- /documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/kitchen.exec.yml -------------------------------------------------------------------------------- /kitchen.global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/kitchen.global.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/powershell_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/libraries/powershell_version.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/disable_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/disable_lcm.rb -------------------------------------------------------------------------------- /recipes/dsc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/dsc.rb -------------------------------------------------------------------------------- /recipes/enable_dsc_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/enable_dsc_script.rb -------------------------------------------------------------------------------- /recipes/enable_lcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/enable_lcm.rb -------------------------------------------------------------------------------- /recipes/powershell2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/powershell2.rb -------------------------------------------------------------------------------- /recipes/powershell3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/powershell3.rb -------------------------------------------------------------------------------- /recipes/powershell4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/powershell4.rb -------------------------------------------------------------------------------- /recipes/powershell5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/powershell5.rb -------------------------------------------------------------------------------- /recipes/windows_reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/windows_reboot.rb -------------------------------------------------------------------------------- /recipes/winrm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/recipes/winrm.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/libraries/powershell_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/libraries/powershell_version_spec.rb -------------------------------------------------------------------------------- /spec/recipes/disable_lcm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/disable_lcm_spec.rb -------------------------------------------------------------------------------- /spec/recipes/dsc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/dsc_spec.rb -------------------------------------------------------------------------------- /spec/recipes/enable_dsc_script_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/enable_dsc_script_spec.rb -------------------------------------------------------------------------------- /spec/recipes/enable_lcm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/enable_lcm_spec.rb -------------------------------------------------------------------------------- /spec/recipes/powershell2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/powershell2_spec.rb -------------------------------------------------------------------------------- /spec/recipes/powershell3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/powershell3_spec.rb -------------------------------------------------------------------------------- /spec/recipes/powershell4_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/powershell4_spec.rb -------------------------------------------------------------------------------- /spec/recipes/powershell5_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/powershell5_spec.rb -------------------------------------------------------------------------------- /spec/recipes/winrm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/recipes/winrm_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/powershell/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------