├── .gitattributes ├── .gitignore ├── Add-ClusterMsmqRole.ps1 ├── ConvertTo-ZabbixJson.ps1 ├── Get-SpecialFolderPath.ps1 ├── Get-SvnAuthor.ps1 ├── Get-TerminologyTranslation.ps1 ├── Import-Component.ps1 ├── LICENSE ├── New-DynamicParameter.ps1 ├── New-GitSvnAuthorsFile.ps1 ├── README.md ├── Remove-ComObject.ps1 ├── Split-CommandLine.ps1 ├── Start-ConsoleProcess.ps1 ├── Step-Dictionary.ps1 ├── Use-Object.ps1 ├── Use-ServiceAccount.ps1 └── Write-Host.ps1 /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .wip 2 | -------------------------------------------------------------------------------- /Add-ClusterMsmqRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Add-ClusterMsmqRole.ps1 -------------------------------------------------------------------------------- /ConvertTo-ZabbixJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/ConvertTo-ZabbixJson.ps1 -------------------------------------------------------------------------------- /Get-SpecialFolderPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Get-SpecialFolderPath.ps1 -------------------------------------------------------------------------------- /Get-SvnAuthor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Get-SvnAuthor.ps1 -------------------------------------------------------------------------------- /Get-TerminologyTranslation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Get-TerminologyTranslation.ps1 -------------------------------------------------------------------------------- /Import-Component.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Import-Component.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/LICENSE -------------------------------------------------------------------------------- /New-DynamicParameter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/New-DynamicParameter.ps1 -------------------------------------------------------------------------------- /New-GitSvnAuthorsFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/New-GitSvnAuthorsFile.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/README.md -------------------------------------------------------------------------------- /Remove-ComObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Remove-ComObject.ps1 -------------------------------------------------------------------------------- /Split-CommandLine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Split-CommandLine.ps1 -------------------------------------------------------------------------------- /Start-ConsoleProcess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Start-ConsoleProcess.ps1 -------------------------------------------------------------------------------- /Step-Dictionary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Step-Dictionary.ps1 -------------------------------------------------------------------------------- /Use-Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Use-Object.ps1 -------------------------------------------------------------------------------- /Use-ServiceAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Use-ServiceAccount.ps1 -------------------------------------------------------------------------------- /Write-Host.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatcracker/Powershell-Misc/HEAD/Write-Host.ps1 --------------------------------------------------------------------------------