├── LICENSE ├── PowerSCCM.ps1 ├── PowerSCCM.psd1 ├── PowerSCCM.psm1 └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellMafia/PowerSCCM/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerSCCM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellMafia/PowerSCCM/HEAD/PowerSCCM.ps1 -------------------------------------------------------------------------------- /PowerSCCM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellMafia/PowerSCCM/HEAD/PowerSCCM.psd1 -------------------------------------------------------------------------------- /PowerSCCM.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot PowerSCCM.ps1) | % { . $_.FullName} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShellMafia/PowerSCCM/HEAD/README.md --------------------------------------------------------------------------------