├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── validate.yml ├── .gitignore ├── LICENSE ├── PSUtil ├── PSUtil.psd1 ├── PSUtil.psm1 ├── bin │ ├── PSUtil.dll │ ├── PSUtil.pdb │ ├── PSUtil.xml │ └── readme.md ├── changelog.md ├── en-us │ ├── about_PSUtil.help.txt │ └── strings.psd1 ├── functions │ ├── explorer │ │ ├── Backup-PSULocation.ps1 │ │ ├── Invoke-PSUDesktop.ps1 │ │ ├── Invoke-PSUExplorer.ps1 │ │ ├── Invoke-PSUTemp.ps1 │ │ ├── New-PSUDirectory.ps1 │ │ ├── Remove-PSUDirectory.ps1 │ │ └── Set-PSUDrive.ps1 │ ├── knowledge │ │ ├── Read-PSUKnowledge.ps1 │ │ ├── Remove-PSUKnowledge.ps1 │ │ └── Write-PSUKnowledge.ps1 │ ├── objects │ │ ├── Convert-PSUObject.ps1 │ │ ├── Expand-PSUObject.ps1 │ │ ├── Register-PSUObjectConversion.ps1 │ │ ├── Register-PSUObjectExpansion.ps1 │ │ ├── Select-PSUObjectSample.ps1 │ │ └── Set-PSUObjectType.ps1 │ ├── other │ │ ├── Get-PsuCalendarWeek.ps1 │ │ ├── Out-PSUVariable.ps1 │ │ ├── Select-PSUFunctionCode.ps1 │ │ ├── Set-PSUPrompt.ps1 │ │ ├── Set-PSUShell.ps1 │ │ └── Start-PSUTimer.ps1 │ ├── path │ │ ├── Get-PSUPathAlias.ps1 │ │ ├── Remove-PSUPathAlias.ps1 │ │ ├── Set-PSUPath.ps1 │ │ └── Set-PSUPathAlias.ps1 │ └── readme.md ├── internal │ ├── TEPP │ │ ├── assignment.ps1 │ │ ├── module.Tepp.ps1 │ │ └── prompt.Tepp.ps1 │ ├── configurations │ │ ├── console.ps1 │ │ ├── import.ps1 │ │ ├── keybindings.ps1 │ │ ├── knowledge.ps1 │ │ ├── other.ps1 │ │ ├── path.ps1 │ │ ├── readme.md │ │ └── validations │ │ │ ├── PSUBrowseHistoryOptions.ps1 │ │ │ ├── PSUConsoleWidth.ps1 │ │ │ └── PSUGetHelpOptions.ps1 │ ├── conversions │ │ ├── dec-bin.ps1 │ │ ├── dec-hex.ps1 │ │ ├── dec-oct.ps1 │ │ ├── hex-bin.ps1 │ │ ├── hex-oct.ps1 │ │ ├── oct-bin.ps1 │ │ ├── script-encoded.ps1 │ │ ├── sid-nt.ps1 │ │ └── string-base64.ps1 │ ├── functions │ │ ├── Import-PSUAlias.ps1 │ │ └── readme.md │ ├── keybindings │ │ ├── addToHistory.ps1 │ │ ├── browseCommandHistory.ps1 │ │ ├── copyAll.ps1 │ │ ├── expandAlias.ps1 │ │ └── getHelp.ps1 │ ├── prompts │ │ ├── boring.prompt.ps1 │ │ ├── fred.prompt.ps1 │ │ ├── git.prompt.ps1 │ │ ├── hyper.prompt.ps1 │ │ └── pretty.prompt.ps1 │ ├── scripts │ │ ├── aliases.ps1 │ │ ├── expandedObjects.ps1 │ │ ├── keybindings.ps1 │ │ ├── license.ps1 │ │ ├── pathAliases.ps1 │ │ ├── postimport.ps1 │ │ ├── preimport.ps1 │ │ └── strings.ps1 │ ├── tasks │ │ └── moduleCache.ps1 │ └── tepp │ │ ├── convert-object.Tepp.ps1 │ │ ├── knowledge.Tepp.ps1 │ │ ├── readme.md │ │ └── userprofile.Tepp.ps1 ├── readme.md ├── snippets │ └── _help_EnableException.snippet ├── tests │ ├── functions │ │ └── readme.md │ ├── general │ │ ├── FileIntegrity.Exceptions.ps1 │ │ ├── FileIntegrity.Tests.ps1 │ │ ├── Help.Exceptions.ps1 │ │ ├── Help.Tests.ps1 │ │ ├── Manifest.Tests.ps1 │ │ └── PSScriptAnalyzer.Tests.ps1 │ ├── pester.ps1 │ └── readme.md └── xml │ ├── PSUtil.Format.ps1xml │ ├── PSUtil.Types.ps1xml │ └── readme.md ├── README.md ├── install.ps1 └── library └── PSUtil └── PSUtil ├── Configuration ├── HelpOption.cs └── HistoryOption.cs ├── Object ├── ObjectConversionMapping.cs └── ObjectHost.cs ├── PSUtil.csproj ├── PSUtil.sln ├── Properties └── AssemblyInfo.cs └── Utility ├── ExecutionState.cs ├── NativeMethods.cs ├── PsuTimeSpan.cs ├── PsuTimeSpanPretty.cs └── UtilityHost.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/LICENSE -------------------------------------------------------------------------------- /PSUtil/PSUtil.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/PSUtil.psd1 -------------------------------------------------------------------------------- /PSUtil/PSUtil.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/PSUtil.psm1 -------------------------------------------------------------------------------- /PSUtil/bin/PSUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/bin/PSUtil.dll -------------------------------------------------------------------------------- /PSUtil/bin/PSUtil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/bin/PSUtil.pdb -------------------------------------------------------------------------------- /PSUtil/bin/PSUtil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/bin/PSUtil.xml -------------------------------------------------------------------------------- /PSUtil/bin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/bin/readme.md -------------------------------------------------------------------------------- /PSUtil/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/changelog.md -------------------------------------------------------------------------------- /PSUtil/en-us/about_PSUtil.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/en-us/about_PSUtil.help.txt -------------------------------------------------------------------------------- /PSUtil/en-us/strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/en-us/strings.psd1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Backup-PSULocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Backup-PSULocation.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Invoke-PSUDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Invoke-PSUDesktop.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Invoke-PSUExplorer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Invoke-PSUExplorer.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Invoke-PSUTemp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Invoke-PSUTemp.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/New-PSUDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/New-PSUDirectory.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Remove-PSUDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Remove-PSUDirectory.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/explorer/Set-PSUDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/explorer/Set-PSUDrive.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/knowledge/Read-PSUKnowledge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/knowledge/Read-PSUKnowledge.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/knowledge/Remove-PSUKnowledge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/knowledge/Remove-PSUKnowledge.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/knowledge/Write-PSUKnowledge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/knowledge/Write-PSUKnowledge.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Convert-PSUObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Convert-PSUObject.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Expand-PSUObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Expand-PSUObject.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Register-PSUObjectConversion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Register-PSUObjectConversion.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Register-PSUObjectExpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Register-PSUObjectExpansion.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Select-PSUObjectSample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Select-PSUObjectSample.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/objects/Set-PSUObjectType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/objects/Set-PSUObjectType.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Get-PsuCalendarWeek.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Get-PsuCalendarWeek.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Out-PSUVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Out-PSUVariable.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Select-PSUFunctionCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Select-PSUFunctionCode.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Set-PSUPrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Set-PSUPrompt.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Set-PSUShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Set-PSUShell.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/other/Start-PSUTimer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/other/Start-PSUTimer.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/path/Get-PSUPathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/path/Get-PSUPathAlias.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/path/Remove-PSUPathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/path/Remove-PSUPathAlias.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/path/Set-PSUPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/path/Set-PSUPath.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/path/Set-PSUPathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/path/Set-PSUPathAlias.ps1 -------------------------------------------------------------------------------- /PSUtil/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/functions/readme.md -------------------------------------------------------------------------------- /PSUtil/internal/TEPP/assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/TEPP/assignment.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/TEPP/module.Tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/TEPP/module.Tepp.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/TEPP/prompt.Tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/TEPP/prompt.Tepp.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/console.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/console.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/import.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/import.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/keybindings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/keybindings.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/knowledge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/knowledge.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/other.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/other.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/path.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/readme.md -------------------------------------------------------------------------------- /PSUtil/internal/configurations/validations/PSUBrowseHistoryOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/validations/PSUBrowseHistoryOptions.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/validations/PSUConsoleWidth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/validations/PSUConsoleWidth.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/configurations/validations/PSUGetHelpOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/configurations/validations/PSUGetHelpOptions.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/dec-bin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/dec-bin.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/dec-hex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/dec-hex.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/dec-oct.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/dec-oct.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/hex-bin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/hex-bin.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/hex-oct.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/hex-oct.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/oct-bin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/oct-bin.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/script-encoded.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/script-encoded.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/sid-nt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/sid-nt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/conversions/string-base64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/conversions/string-base64.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/functions/Import-PSUAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/functions/Import-PSUAlias.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/functions/readme.md -------------------------------------------------------------------------------- /PSUtil/internal/keybindings/addToHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/keybindings/addToHistory.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/keybindings/browseCommandHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/keybindings/browseCommandHistory.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/keybindings/copyAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/keybindings/copyAll.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/keybindings/expandAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/keybindings/expandAlias.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/keybindings/getHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/keybindings/getHelp.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/prompts/boring.prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/prompts/boring.prompt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/prompts/fred.prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/prompts/fred.prompt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/prompts/git.prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/prompts/git.prompt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/prompts/hyper.prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/prompts/hyper.prompt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/prompts/pretty.prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/prompts/pretty.prompt.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/aliases.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/expandedObjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/expandedObjects.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/keybindings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/keybindings.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/license.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/pathAliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/pathAliases.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/postimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/postimport.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/preimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/preimport.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/scripts/strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/scripts/strings.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/tasks/moduleCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/tasks/moduleCache.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/tepp/convert-object.Tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/tepp/convert-object.Tepp.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/tepp/knowledge.Tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/tepp/knowledge.Tepp.ps1 -------------------------------------------------------------------------------- /PSUtil/internal/tepp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/tepp/readme.md -------------------------------------------------------------------------------- /PSUtil/internal/tepp/userprofile.Tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/internal/tepp/userprofile.Tepp.ps1 -------------------------------------------------------------------------------- /PSUtil/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/readme.md -------------------------------------------------------------------------------- /PSUtil/snippets/_help_EnableException.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/snippets/_help_EnableException.snippet -------------------------------------------------------------------------------- /PSUtil/tests/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/functions/readme.md -------------------------------------------------------------------------------- /PSUtil/tests/general/FileIntegrity.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/FileIntegrity.Exceptions.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/general/FileIntegrity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/FileIntegrity.Tests.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/general/Help.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/Help.Exceptions.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/general/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/Help.Tests.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/general/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/general/PSScriptAnalyzer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/general/PSScriptAnalyzer.Tests.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/pester.ps1 -------------------------------------------------------------------------------- /PSUtil/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/tests/readme.md -------------------------------------------------------------------------------- /PSUtil/xml/PSUtil.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/xml/PSUtil.Format.ps1xml -------------------------------------------------------------------------------- /PSUtil/xml/PSUtil.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/xml/PSUtil.Types.ps1xml -------------------------------------------------------------------------------- /PSUtil/xml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/PSUtil/xml/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/README.md -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/install.ps1 -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Configuration/HelpOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Configuration/HelpOption.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Configuration/HistoryOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Configuration/HistoryOption.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Object/ObjectConversionMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Object/ObjectConversionMapping.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Object/ObjectHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Object/ObjectHost.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/PSUtil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/PSUtil.csproj -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/PSUtil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/PSUtil.sln -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Utility/ExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Utility/ExecutionState.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Utility/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Utility/NativeMethods.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Utility/PsuTimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Utility/PsuTimeSpan.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Utility/PsuTimeSpanPretty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Utility/PsuTimeSpanPretty.cs -------------------------------------------------------------------------------- /library/PSUtil/PSUtil/Utility/UtilityHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/PSUtil/HEAD/library/PSUtil/PSUtil/Utility/UtilityHost.cs --------------------------------------------------------------------------------