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
| # this is one of Stéphane BARIZIEN's public domain scripts | |
| # the most recent version can be found at: | |
| # https://gist.github.com/sba923/792b13b3cd8e14eabd92963622a10de0#file-ctime-ps1 | |
| [CmdletBinding()] | |
| param ( | |
| [Parameter(ValueFromPipeline)] | |
| $Item, | |
| [Parameter(Position=0)][int] $Days | |
| ) |
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
| #requires -version 7.3 | |
| # this is one of Stéphane BARIZIEN's public domain scripts | |
| # the most recent version can be found at: | |
| # https://gist.github.com/sba923/bc52cf74197ab3cddce825e8b502e28b#file-export-csvwithmilliseconds-ps1 | |
| <# | |
| .SYNOPSIS | |
| Proxy for Export-Csv that adds milliseconds to DateTime properties |
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
| # this is one of Stéphane BARIZIEN's public domain scripts | |
| # the most recent version can be found at: https://gist.github.com/sba923/5671d24e0ae533689490b504eb5d8401#file-get-powershellrunninginwindowsterminalkeybinding-ps1 | |
| #requires -version 7 | |
| <# | |
| .SYNOPSIS | |
| Returns effective PowerShell key bindings when running inside Windows Terminal. | |
| .DESCRIPTION |
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
| # this is one of Stéphane BARIZIEN's public domain scripts | |
| # the most recent version can be found at: | |
| # https://gist.github.com/sba923/c41f97a5f4ea15c957227712f42b14f3#file-get-windowsterminalversion-ps1 | |
| # cSpell: ignore wekyb bbwe Stéphane BARIZIEN | |
| <# | |
| .SYNOPSIS | |
| Returns the Windows Terminal version for the current PowerShell session host chain. | |
OlderNewer