PSScriptTools
PSScriptTools copied to clipboard
:wrench: :hammer: A set of PowerShell functions you might use to enhance your own functions and scripts or to facilitate working in the console. Most should work in both Windows PowerShell and PowerSh...
### Discussed in https://github.com/jdhitsolutions/PSScriptTools/discussions/146 Originally posted by **cderv** April 4, 2024 Hi, I wanted the `-ansi` to work with `Show-Tree` but I understand the `$PSAnsiMap` is not loaded because I...
### Discussed in https://github.com/jdhitsolutions/PSScriptTools/discussions/149 Originally posted by **scriptingstudio** June 8, 2024 Parameter `Property` makes the function more universal ```powershell param ( [Parameter(Position = 0, Mandatory, ValueFromPipeline)] [ValidateNotNullOrEmpty()] [object]$InputObject, [string[]]$Property )...
### Describe the problem Get-WhoIs fails with a specific IP passed ``` Install-Module PSScriptTools Get-WhoIs -IPAddress 8.8.8.8 Name IP RegisteredOrganization NetBlocks Updated ---- -- ---------------------- --------- ------- GOGL 8.8.8.8 Google...
### Describe the problem Line 39 of Get-ModuleCommand.ps1 has error: ```powershell Line | 39 | … nctions.keys | Where-Object { $_ -like "$CommandName" } | Get-Command | ~~~~~~~~~~~ | The...