├── .gitconfig ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PSProfile ├── Classes │ └── PSProfile.Classes.ps1 ├── Configuration.psd1 ├── PSProfile.Aliases.ps1 ├── PSProfile.psd1 ├── PSProfile.psm1 ├── Plugins │ ├── PSProfile.ADCompleters.ps1 │ └── PSProfile.GitAliases.ps1 ├── Private │ └── Get-DecryptedValue.ps1 ├── Public │ ├── Command Aliases │ │ ├── Add-PSProfileCommandAlias.ps1 │ │ ├── Get-PSProfileCommandAlias.ps1 │ │ └── Remove-PSProfileCommandAlias.ps1 │ ├── Configuration │ │ ├── Add-PSProfileConfigurationPath.ps1 │ │ ├── Export-PSProfileConfiguration.ps1 │ │ ├── Get-PSProfileConfigurationPath.ps1 │ │ ├── Import-PSProfile.ps1 │ │ ├── Import-PSProfileConfiguration.ps1 │ │ ├── Remove-PSProfileConfigurationPath.ps1 │ │ ├── Save-PSProfile.ps1 │ │ ├── Start-PSProfileConfigurationHelper.ps1 │ │ ├── Update-PSProfileConfig.ps1 │ │ ├── Update-PSProfileRefreshFrequency.ps1 │ │ └── Update-PSProfileSetting.ps1 │ ├── Helpers │ │ ├── Add-PSProfileToProfile.ps1 │ │ ├── Copy-Parameters.ps1 │ │ ├── Get-LastCommandDuration.ps1 │ │ ├── Get-PSProfileArguments.ps1 │ │ ├── Get-PSVersion.ps1 │ │ ├── Get-PathAlias.ps1 │ │ ├── Test-IfGit.ps1 │ │ └── Write-PSProfileLog.ps1 │ ├── Init Scripts │ │ ├── Add-PSProfileInitScript.ps1 │ │ ├── Disable-PSProfileInitScript.ps1 │ │ ├── Edit-PSProfileInitScript.ps1 │ │ ├── Enable-PSProfileInitScript.ps1 │ │ ├── Get-PSProfileInitScript.ps1 │ │ └── Remove-PSProfileInitScript.ps1 │ ├── Meta │ │ ├── Get-PSProfileCommand.ps1 │ │ ├── Get-PSProfileImportedCommand.ps1 │ │ └── Get-PSProfileLog.ps1 │ ├── Modules to Import │ │ ├── Add-PSProfileModuleToImport.ps1 │ │ ├── Get-PSProfileModuleToImport.ps1 │ │ └── Remove-PSProfileModuleToImport.ps1 │ ├── Modules to Install │ │ ├── Add-PSProfileModuleToInstall.ps1 │ │ ├── Get-PSProfileModuleToInstall.ps1 │ │ └── Remove-PSProfileModuleToInstall.ps1 │ ├── Path Aliases │ │ ├── Add-PSProfilePathAlias.ps1 │ │ ├── Get-PSProfilePathAlias.ps1 │ │ └── Remove-PSProfilePathAlias.ps1 │ ├── Plugin Paths │ │ ├── Add-PSProfilePluginPath.ps1 │ │ ├── Get-PSProfilePluginPath.ps1 │ │ └── Remove-PSProfilePluginPath.ps1 │ ├── Plugins │ │ ├── Add-PSProfilePlugin.ps1 │ │ ├── Get-PSProfilePlugin.ps1 │ │ └── Remove-PSProfilePlugin.ps1 │ ├── Power Tools │ │ ├── Confirm-ScriptIsValid.ps1 │ │ ├── Enter-CleanEnvironment.ps1 │ │ ├── Format-Syntax.ps1 │ │ ├── Get-Definition.ps1 │ │ ├── Get-Gist.ps1 │ │ ├── Get-LongPath.ps1 │ │ ├── Install-LatestModule.ps1 │ │ ├── Open-Code.ps1 │ │ ├── Open-Item.ps1 │ │ ├── Pop-Path.ps1 │ │ ├── Push-Path.ps1 │ │ ├── Start-BuildScript.ps1 │ │ └── Test-RegEx.ps1 │ ├── Project Paths │ │ ├── Add-PSProfileProjectPath.ps1 │ │ ├── Get-PSProfileProjectPath.ps1 │ │ └── Remove-PSProfileProjectPath.ps1 │ ├── Prompts │ │ ├── Add-PSProfilePrompt.ps1 │ │ ├── Edit-PSProfilePrompt.ps1 │ │ ├── Get-PSProfilePrompt.ps1 │ │ ├── Remove-PSProfilePrompt.ps1 │ │ └── Switch-PSProfilePrompt.ps1 │ ├── Script Paths │ │ ├── Add-PSProfileScriptPath.ps1 │ │ ├── Get-PSProfileScriptPath.ps1 │ │ └── Remove-PSProfileScriptPath.ps1 │ ├── Secrets │ │ ├── Add-PSProfileSecret.ps1 │ │ ├── Get-MyCreds.ps1 │ │ ├── Get-PSProfileSecret.ps1 │ │ └── Remove-PSProfileSecret.ps1 │ ├── Symbolic Links │ │ ├── Add-PSProfileSymbolicLink.ps1 │ │ ├── Get-PSProfileSymbolicLink.ps1 │ │ └── Remove-PSProfileSymbolicLink.ps1 │ └── Variables │ │ ├── Add-PSProfileVariable.ps1 │ │ ├── Get-PSProfileVariable.ps1 │ │ └── Remove-PSProfileVariable.ps1 └── en-US │ ├── about_PSProfile.help.txt │ ├── about_PSProfile_Command_Aliases.help.txt │ ├── about_PSProfile_Configuration.help.txt │ ├── about_PSProfile_Helpers.help.txt │ ├── about_PSProfile_Init_Scripts.help.txt │ ├── about_PSProfile_Meta.help.txt │ ├── about_PSProfile_Modules_to_Import.help.txt │ ├── about_PSProfile_Modules_to_Install.help.txt │ ├── about_PSProfile_Path_Aliases.help.txt │ ├── about_PSProfile_Plugin_Paths.help.txt │ ├── about_PSProfile_Plugins.help.txt │ ├── about_PSProfile_Power_Tools.help.txt │ ├── about_PSProfile_Project_Paths.help.txt │ ├── about_PSProfile_Prompts.help.txt │ ├── about_PSProfile_Script_Paths.help.txt │ ├── about_PSProfile_Secrets.help.txt │ ├── about_PSProfile_Symbolic_Links.help.txt │ └── about_PSProfile_Variables.help.txt ├── PromptConfiguration.psd1 ├── README.md ├── Tests ├── Content.Tests.ps1 ├── Help.Tests.ps1 └── Module.Tests.ps1 ├── azure-pipelines.yml ├── ci └── GitHubReleaseNotes.ps1 └── invoke.build.ps1 /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | BuildOutput 2 | ci/https* 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/LICENSE -------------------------------------------------------------------------------- /PSProfile/Classes/PSProfile.Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Classes/PSProfile.Classes.ps1 -------------------------------------------------------------------------------- /PSProfile/Configuration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Configuration.psd1 -------------------------------------------------------------------------------- /PSProfile/PSProfile.Aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/PSProfile.Aliases.ps1 -------------------------------------------------------------------------------- /PSProfile/PSProfile.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/PSProfile.psd1 -------------------------------------------------------------------------------- /PSProfile/PSProfile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/PSProfile.psm1 -------------------------------------------------------------------------------- /PSProfile/Plugins/PSProfile.ADCompleters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Plugins/PSProfile.ADCompleters.ps1 -------------------------------------------------------------------------------- /PSProfile/Plugins/PSProfile.GitAliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Plugins/PSProfile.GitAliases.ps1 -------------------------------------------------------------------------------- /PSProfile/Private/Get-DecryptedValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Private/Get-DecryptedValue.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Command Aliases/Add-PSProfileCommandAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Command Aliases/Add-PSProfileCommandAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Command Aliases/Get-PSProfileCommandAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Command Aliases/Get-PSProfileCommandAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Command Aliases/Remove-PSProfileCommandAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Command Aliases/Remove-PSProfileCommandAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Add-PSProfileConfigurationPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Add-PSProfileConfigurationPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Export-PSProfileConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Export-PSProfileConfiguration.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Get-PSProfileConfigurationPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Get-PSProfileConfigurationPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Import-PSProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Import-PSProfile.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Import-PSProfileConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Import-PSProfileConfiguration.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Remove-PSProfileConfigurationPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Remove-PSProfileConfigurationPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Save-PSProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Save-PSProfile.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Start-PSProfileConfigurationHelper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Start-PSProfileConfigurationHelper.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Update-PSProfileConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Update-PSProfileConfig.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Update-PSProfileRefreshFrequency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Update-PSProfileRefreshFrequency.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Configuration/Update-PSProfileSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Configuration/Update-PSProfileSetting.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Add-PSProfileToProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Add-PSProfileToProfile.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Copy-Parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Copy-Parameters.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Get-LastCommandDuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Get-LastCommandDuration.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Get-PSProfileArguments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Get-PSProfileArguments.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Get-PSVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Get-PSVersion.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Get-PathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Get-PathAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Test-IfGit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Test-IfGit.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Helpers/Write-PSProfileLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Helpers/Write-PSProfileLog.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Add-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Add-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Disable-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Disable-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Edit-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Edit-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Enable-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Enable-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Get-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Get-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Init Scripts/Remove-PSProfileInitScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Init Scripts/Remove-PSProfileInitScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Meta/Get-PSProfileCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Meta/Get-PSProfileCommand.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Meta/Get-PSProfileImportedCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Meta/Get-PSProfileImportedCommand.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Meta/Get-PSProfileLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Meta/Get-PSProfileLog.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Import/Add-PSProfileModuleToImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Import/Add-PSProfileModuleToImport.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Import/Get-PSProfileModuleToImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Import/Get-PSProfileModuleToImport.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Import/Remove-PSProfileModuleToImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Import/Remove-PSProfileModuleToImport.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Install/Add-PSProfileModuleToInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Install/Add-PSProfileModuleToInstall.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Install/Get-PSProfileModuleToInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Install/Get-PSProfileModuleToInstall.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Modules to Install/Remove-PSProfileModuleToInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Modules to Install/Remove-PSProfileModuleToInstall.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Path Aliases/Add-PSProfilePathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Path Aliases/Add-PSProfilePathAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Path Aliases/Get-PSProfilePathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Path Aliases/Get-PSProfilePathAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Path Aliases/Remove-PSProfilePathAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Path Aliases/Remove-PSProfilePathAlias.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugin Paths/Add-PSProfilePluginPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugin Paths/Add-PSProfilePluginPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugin Paths/Get-PSProfilePluginPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugin Paths/Get-PSProfilePluginPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugin Paths/Remove-PSProfilePluginPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugin Paths/Remove-PSProfilePluginPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugins/Add-PSProfilePlugin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugins/Add-PSProfilePlugin.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugins/Get-PSProfilePlugin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugins/Get-PSProfilePlugin.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Plugins/Remove-PSProfilePlugin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Plugins/Remove-PSProfilePlugin.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Confirm-ScriptIsValid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Confirm-ScriptIsValid.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Enter-CleanEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Enter-CleanEnvironment.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Format-Syntax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Format-Syntax.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Get-Definition.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Get-Definition.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Get-Gist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Get-Gist.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Get-LongPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Get-LongPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Install-LatestModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Install-LatestModule.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Open-Code.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Open-Code.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Open-Item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Open-Item.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Pop-Path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Pop-Path.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Push-Path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Push-Path.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Start-BuildScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Start-BuildScript.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Power Tools/Test-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Power Tools/Test-RegEx.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Project Paths/Add-PSProfileProjectPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Project Paths/Add-PSProfileProjectPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Project Paths/Get-PSProfileProjectPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Project Paths/Get-PSProfileProjectPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Project Paths/Remove-PSProfileProjectPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Project Paths/Remove-PSProfileProjectPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Prompts/Add-PSProfilePrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Prompts/Add-PSProfilePrompt.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Prompts/Edit-PSProfilePrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Prompts/Edit-PSProfilePrompt.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Prompts/Get-PSProfilePrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Prompts/Get-PSProfilePrompt.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Prompts/Remove-PSProfilePrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Prompts/Remove-PSProfilePrompt.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Prompts/Switch-PSProfilePrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Prompts/Switch-PSProfilePrompt.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Script Paths/Add-PSProfileScriptPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Script Paths/Add-PSProfileScriptPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Script Paths/Get-PSProfileScriptPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Script Paths/Get-PSProfileScriptPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Script Paths/Remove-PSProfileScriptPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Script Paths/Remove-PSProfileScriptPath.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Secrets/Add-PSProfileSecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Secrets/Add-PSProfileSecret.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Secrets/Get-MyCreds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Secrets/Get-MyCreds.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Secrets/Get-PSProfileSecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Secrets/Get-PSProfileSecret.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Secrets/Remove-PSProfileSecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Secrets/Remove-PSProfileSecret.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Symbolic Links/Add-PSProfileSymbolicLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Symbolic Links/Add-PSProfileSymbolicLink.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Symbolic Links/Get-PSProfileSymbolicLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Symbolic Links/Get-PSProfileSymbolicLink.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Symbolic Links/Remove-PSProfileSymbolicLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Symbolic Links/Remove-PSProfileSymbolicLink.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Variables/Add-PSProfileVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Variables/Add-PSProfileVariable.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Variables/Get-PSProfileVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Variables/Get-PSProfileVariable.ps1 -------------------------------------------------------------------------------- /PSProfile/Public/Variables/Remove-PSProfileVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/Public/Variables/Remove-PSProfileVariable.ps1 -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Command_Aliases.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Command_Aliases.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Configuration.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Configuration.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Helpers.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Helpers.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Init_Scripts.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Init_Scripts.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Meta.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Meta.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Modules_to_Import.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Modules_to_Import.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Modules_to_Install.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Modules_to_Install.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Path_Aliases.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Path_Aliases.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Plugin_Paths.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Plugin_Paths.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Plugins.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Plugins.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Power_Tools.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Power_Tools.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Project_Paths.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Project_Paths.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Prompts.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Prompts.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Script_Paths.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Script_Paths.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Secrets.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Secrets.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Symbolic_Links.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Symbolic_Links.help.txt -------------------------------------------------------------------------------- /PSProfile/en-US/about_PSProfile_Variables.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PSProfile/en-US/about_PSProfile_Variables.help.txt -------------------------------------------------------------------------------- /PromptConfiguration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/PromptConfiguration.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Content.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/Tests/Content.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/Tests/Help.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/Tests/Module.Tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/GitHubReleaseNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/ci/GitHubReleaseNotes.ps1 -------------------------------------------------------------------------------- /invoke.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCRT-HQ/PSProfile/HEAD/invoke.build.ps1 --------------------------------------------------------------------------------