├── DSC └── cIniFile │ ├── Examples │ ├── Example 1 - Using DSC config │ │ └── cIniFile_Example.ps1 │ └── Example 2 - Using composite resource │ │ ├── cIniFileResources │ │ ├── DSCResources │ │ │ └── cIniFile2 │ │ │ │ ├── cIniFile2.psd1 │ │ │ │ └── cIniFile2.schema.psm1 │ │ └── cIniFileResources.psd1 │ │ └── cIniFile_config_example.ps1 │ ├── cIniFile.psd1 │ └── cIniFile.psm1 ├── Modules ├── Edit-Command │ ├── Edit-Command.Tests.ps1 │ ├── Edit-Command.ps1 │ └── README.md ├── Get-IMDBmovie │ ├── Get-IMDBmovie.psm1 │ └── README.md ├── Get-ParamHelp │ ├── Get-ParamHelp.ps1 │ ├── Get-ParamHelp.psd1 │ ├── Get-ParamHelp.psm1 │ ├── Get-ParamHelp.tests.ps1 │ ├── README.md │ ├── data.json │ └── data.json.tests.ps1 ├── IniManager │ ├── IniManager.psd1 │ ├── IniManager.psm1 │ └── README.md ├── WeatherForecast │ ├── README.md │ └── WeatherForecast.ps1 └── Write-ObjectToSQL │ ├── README.md │ ├── Write-ObjectToSQL.psd1 │ └── Write-ObjectToSQL.psm1 ├── README.md └── Scripts ├── Find-Hotfix └── Find-Hotfix.ps1 ├── Get-FileCacheSize └── Get-FileCacheSize.ps1 └── Ping many from many └── PingManyFromMany.ps1 /DSC/cIniFile/Examples/Example 1 - Using DSC config/cIniFile_Example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/Examples/Example 1 - Using DSC config/cIniFile_Example.ps1 -------------------------------------------------------------------------------- /DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/DSCResources/cIniFile2/cIniFile2.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/DSCResources/cIniFile2/cIniFile2.psd1 -------------------------------------------------------------------------------- /DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/DSCResources/cIniFile2/cIniFile2.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/DSCResources/cIniFile2/cIniFile2.schema.psm1 -------------------------------------------------------------------------------- /DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/cIniFileResources.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFileResources/cIniFileResources.psd1 -------------------------------------------------------------------------------- /DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFile_config_example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/Examples/Example 2 - Using composite resource/cIniFile_config_example.ps1 -------------------------------------------------------------------------------- /DSC/cIniFile/cIniFile.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/cIniFile.psd1 -------------------------------------------------------------------------------- /DSC/cIniFile/cIniFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/DSC/cIniFile/cIniFile.psm1 -------------------------------------------------------------------------------- /Modules/Edit-Command/Edit-Command.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Edit-Command/Edit-Command.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Edit-Command/Edit-Command.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Edit-Command/Edit-Command.ps1 -------------------------------------------------------------------------------- /Modules/Edit-Command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Edit-Command/README.md -------------------------------------------------------------------------------- /Modules/Get-IMDBmovie/Get-IMDBmovie.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-IMDBmovie/Get-IMDBmovie.psm1 -------------------------------------------------------------------------------- /Modules/Get-IMDBmovie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-IMDBmovie/README.md -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/Get-ParamHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/Get-ParamHelp.ps1 -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/Get-ParamHelp.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/Get-ParamHelp.psd1 -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/Get-ParamHelp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/Get-ParamHelp.psm1 -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/Get-ParamHelp.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/Get-ParamHelp.tests.ps1 -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/README.md -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/data.json -------------------------------------------------------------------------------- /Modules/Get-ParamHelp/data.json.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Get-ParamHelp/data.json.tests.ps1 -------------------------------------------------------------------------------- /Modules/IniManager/IniManager.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/IniManager/IniManager.psd1 -------------------------------------------------------------------------------- /Modules/IniManager/IniManager.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/IniManager/IniManager.psm1 -------------------------------------------------------------------------------- /Modules/IniManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/IniManager/README.md -------------------------------------------------------------------------------- /Modules/WeatherForecast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/WeatherForecast/README.md -------------------------------------------------------------------------------- /Modules/WeatherForecast/WeatherForecast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/WeatherForecast/WeatherForecast.ps1 -------------------------------------------------------------------------------- /Modules/Write-ObjectToSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Write-ObjectToSQL/README.md -------------------------------------------------------------------------------- /Modules/Write-ObjectToSQL/Write-ObjectToSQL.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Write-ObjectToSQL/Write-ObjectToSQL.psd1 -------------------------------------------------------------------------------- /Modules/Write-ObjectToSQL/Write-ObjectToSQL.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Modules/Write-ObjectToSQL/Write-ObjectToSQL.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Find-Hotfix/Find-Hotfix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Scripts/Find-Hotfix/Find-Hotfix.ps1 -------------------------------------------------------------------------------- /Scripts/Get-FileCacheSize/Get-FileCacheSize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Scripts/Get-FileCacheSize/Get-FileCacheSize.ps1 -------------------------------------------------------------------------------- /Scripts/Ping many from many/PingManyFromMany.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnRoos/PowerShell/HEAD/Scripts/Ping many from many/PingManyFromMany.ps1 --------------------------------------------------------------------------------