This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| using namespace System.Collections | |
| class CommandInfoTransform : ArgumentTransformationAttribute { | |
| [object] Transform([EngineIntrinsics] $engineIntrinsics, [object] $inputObject) { | |
| if ($inputObject -is [CommandInfo]) { | |
| return $inputObject | |
| } | |
| try { | |
| $gcm = Get-Command "$inputObject" | Select-Object -First 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-InvocationStatement { | |
| [cmdletbinding()] | |
| param( | |
| [object] $Statement = $MyInvocation.Statement | |
| ) | |
| $tokens = $null | |
| $psb = [ordered]@{} | |
| $null = [System.Management.Automation.Language.Parser]::ParseInput($Statement, [ref] $tokens, [ref] $null) | |
| $filteredTokens = $tokens | Where-Object { $_.Kind -in @('Variable','SplattedVariable','Parameter') } | |
| for ($i = 0; $i -lt $filteredTokens.Count; $i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-BoundParameters { | |
| <# | |
| .DESCRIPTION | |
| Get-BoundParameters is a helper function that returns a hashtable of the bound parameters of the calling function. | |
| difference between $PSBoundParameters is that it gets default value from param block as well. | |
| .PARAMETER IncludeCommon | |
| include the common parameters | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-NerdFontGlyphs { | |
| <# | |
| .SYNOPSIS | |
| Get a list of all Nerd Font Glyphs | |
| .EXAMPLE | |
| Get-NerdFontIcons | |
| .EXAMPLE | |
| Get-NerdFontIcons -AsHashtable | |
| .PARAMETER AsHashtable | |
| Return the list as a hashtable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Measure-ChildItem { | |
| <# | |
| .SYNOPSIS | |
| Recursively measures the size of a directory. | |
| .DESCRIPTION | |
| Recursively measures the size of a directory. | |
| Measure-ChildItem uses win32 functions, returning a minimal amount of information to gain speed. Once started, the operation cannot be interrupted by using Control and C. The more items present in a directory structure the longer this command will take. | |
| This command supports paths longer than 260 characters. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-MyDisk { | |
| [CmdletBinding()] | |
| param( | |
| [Alias('DeviceId')] | |
| [int] $Number, | |
| [string] $FriendlyName | |
| ) | |
| if (-Not ('Pinvoke.Win32Utils' -as [type])) { | |
| Add-Type -TypeDefinition @' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright: (c) 2022, Jordan Borean (@jborean93) <[email protected]> | |
| # MIT License (see LICENSE or https://opensource.org/licenses/MIT) | |
| Add-Type -TypeDefinition @' | |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Wtsapi32 | |
| { | |
| public enum WtsConnectState |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ConvertTo-MarkdownTable { | |
| <# | |
| .DESCRIPTION | |
| Convert an object to a markdown table. | |
| .PARAMETER InputObject | |
| The object to convert to a markdown table. | |
| .PARAMETER Property | |
| The properties to display in the table. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-PowershellDLEHint { | |
| $iwr = (Invoke-WebRequest 'https://powershelldle.com/').Content | |
| $strings = ($iwr | Select-String -Pattern '<div id="answer-char" class="(relative bottom-1)?">\s*[_-]\s*</div>' -AllMatches).Matches.Value | |
| $verb, $noun = ($strings -replace '<[^>]+>').Trim() -join '' -split '-' | |
| Get-Command | Where-Object { $_.Verb.Length -eq $verb.length -And $_.Noun.Length -eq $noun.length } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Get-TableData { | |
| <# | |
| ls | ft | Get-TableData | |
| .NOTES | |
| https://gist.github.com/Jaykul/9999be71ee68f3036dc2529c451729f4 | |
| #> | |
| [CmdletBinding()] | |
| param( | |
| [Parameter(ValueFromPipeline)] | |
| $FormatStartData |