├── .gitignore ├── CHANGELOG.md ├── IT-ToolBox.psd1 ├── IT-ToolBox.psm1 ├── LICENSE ├── Public ├── Add-Encryption.ps1 ├── Close-ExchangeSession.ps1 ├── Convert-LogonTimestamp.ps1 ├── Get-ElapsedTime.ps1 ├── Get-GnuPgPackage.ps1 ├── Get-OsUpTime.ps1 ├── Get-ReportChain.ps1 ├── Get-ScriptDirectory.ps1 ├── Get-ScriptName.ps1 ├── Get-StringCheckSum.ps1 ├── Get-StringHashCode.ps1 ├── Get-TimerStatus.ps1 ├── New-ApiRequest.ps1 ├── New-ExchangeSession.ps1 ├── New-LogEntry.ps1 ├── New-PhoneticPassword.ps1 ├── New-RandomPassword.ps1 ├── New-RandomString.ps1 ├── New-ScpDownload.ps1 ├── New-ScpUpload.ps1 ├── New-StringConversion.ps1 ├── New-StringDecryption.ps1 ├── New-StringEncryption.ps1 ├── New-Timer.ps1 ├── Remove-Encryption.ps1 ├── Remove-SpecialCharacters.ps1 ├── Stop-Timer.ps1 ├── Test-FileName.ps1 ├── Test-IsDate.ps1 ├── Test-IsEmail.ps1 ├── Test-IsIpAddress.ps1 ├── Test-IsUrl.ps1 ├── Test-IsValidDn.ps1 ├── Test-IsValidPath.ps1 ├── Test-IsValidUpn.ps1 └── Test-RegistryValue.ps1 ├── README.md ├── Staging ├── Close-AzureSession.ps1 ├── Enable-SelfSignedCertificate.ps1 └── README.md ├── bin └── WinSCP.exe └── lib └── WinSCPnet.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /IT-ToolBox.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/IT-ToolBox.psd1 -------------------------------------------------------------------------------- /IT-ToolBox.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/IT-ToolBox.psm1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/LICENSE -------------------------------------------------------------------------------- /Public/Add-Encryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Add-Encryption.ps1 -------------------------------------------------------------------------------- /Public/Close-ExchangeSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Close-ExchangeSession.ps1 -------------------------------------------------------------------------------- /Public/Convert-LogonTimestamp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Convert-LogonTimestamp.ps1 -------------------------------------------------------------------------------- /Public/Get-ElapsedTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-ElapsedTime.ps1 -------------------------------------------------------------------------------- /Public/Get-GnuPgPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-GnuPgPackage.ps1 -------------------------------------------------------------------------------- /Public/Get-OsUpTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-OsUpTime.ps1 -------------------------------------------------------------------------------- /Public/Get-ReportChain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-ReportChain.ps1 -------------------------------------------------------------------------------- /Public/Get-ScriptDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-ScriptDirectory.ps1 -------------------------------------------------------------------------------- /Public/Get-ScriptName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-ScriptName.ps1 -------------------------------------------------------------------------------- /Public/Get-StringCheckSum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-StringCheckSum.ps1 -------------------------------------------------------------------------------- /Public/Get-StringHashCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-StringHashCode.ps1 -------------------------------------------------------------------------------- /Public/Get-TimerStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Get-TimerStatus.ps1 -------------------------------------------------------------------------------- /Public/New-ApiRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-ApiRequest.ps1 -------------------------------------------------------------------------------- /Public/New-ExchangeSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-ExchangeSession.ps1 -------------------------------------------------------------------------------- /Public/New-LogEntry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-LogEntry.ps1 -------------------------------------------------------------------------------- /Public/New-PhoneticPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-PhoneticPassword.ps1 -------------------------------------------------------------------------------- /Public/New-RandomPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-RandomPassword.ps1 -------------------------------------------------------------------------------- /Public/New-RandomString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-RandomString.ps1 -------------------------------------------------------------------------------- /Public/New-ScpDownload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-ScpDownload.ps1 -------------------------------------------------------------------------------- /Public/New-ScpUpload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-ScpUpload.ps1 -------------------------------------------------------------------------------- /Public/New-StringConversion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-StringConversion.ps1 -------------------------------------------------------------------------------- /Public/New-StringDecryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-StringDecryption.ps1 -------------------------------------------------------------------------------- /Public/New-StringEncryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-StringEncryption.ps1 -------------------------------------------------------------------------------- /Public/New-Timer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/New-Timer.ps1 -------------------------------------------------------------------------------- /Public/Remove-Encryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Remove-Encryption.ps1 -------------------------------------------------------------------------------- /Public/Remove-SpecialCharacters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Remove-SpecialCharacters.ps1 -------------------------------------------------------------------------------- /Public/Stop-Timer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Stop-Timer.ps1 -------------------------------------------------------------------------------- /Public/Test-FileName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-FileName.ps1 -------------------------------------------------------------------------------- /Public/Test-IsDate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsDate.ps1 -------------------------------------------------------------------------------- /Public/Test-IsEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsEmail.ps1 -------------------------------------------------------------------------------- /Public/Test-IsIpAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsIpAddress.ps1 -------------------------------------------------------------------------------- /Public/Test-IsUrl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsUrl.ps1 -------------------------------------------------------------------------------- /Public/Test-IsValidDn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsValidDn.ps1 -------------------------------------------------------------------------------- /Public/Test-IsValidPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsValidPath.ps1 -------------------------------------------------------------------------------- /Public/Test-IsValidUpn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-IsValidUpn.ps1 -------------------------------------------------------------------------------- /Public/Test-RegistryValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Public/Test-RegistryValue.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/README.md -------------------------------------------------------------------------------- /Staging/Close-AzureSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Staging/Close-AzureSession.ps1 -------------------------------------------------------------------------------- /Staging/Enable-SelfSignedCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Staging/Enable-SelfSignedCertificate.ps1 -------------------------------------------------------------------------------- /Staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/Staging/README.md -------------------------------------------------------------------------------- /bin/WinSCP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/bin/WinSCP.exe -------------------------------------------------------------------------------- /lib/WinSCPnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PsCustomObject/IT-ToolBox/HEAD/lib/WinSCPnet.dll --------------------------------------------------------------------------------