├── .git-crypt ├── .gitattributes └── keys │ └── default │ └── 0 │ ├── 7B6A462F595FA24EC24B40E663FCA87061A4E0D6.gpg │ ├── B017D01C3C313622784505C187267697E08B0070.gpg │ └── FF361E144EE31125E028D670786742B2314D2B34.gpg ├── .gitattributes ├── .github └── workflows │ ├── autodoc.yml │ ├── changelog.yml │ └── toc.yml ├── .gitignore ├── .vscode ├── extensions.json ├── powershell.code-snippets ├── powershell.json.code-snippets └── tasks.json ├── Archive └── History │ ├── ConsoleHost_history.txt │ └── PowerShell-History.txt ├── CHANGELOG.md ├── Config ├── .gitattributes └── keeperconfig.json ├── Dev ├── Archive │ ├── install-gitwithssh.ps1 │ ├── install-helpers.ps1 │ ├── install-nerd-fonts.ps1 │ ├── install-pwsh-preview.ps1 │ ├── install-pwsh.ps1 │ ├── installed-applications.ps1 │ ├── reset-settings.ps1 │ └── setup.ps1 ├── Functions │ ├── Export-Drivers.ps1 │ ├── Export-ISOFiles.ps1 │ ├── Install-GitHub.ps1 │ ├── Obsidian-Helpers.ps1 │ ├── Test-ProgramInstalled.ps1 │ ├── Update-EveryModule.ps1 │ └── Update-PowerShell.ps1 ├── Modules │ ├── .Deprecated │ │ ├── PSVirtualEnv │ │ │ └── 0.5.7 │ │ │ │ ├── Classes │ │ │ │ └── ModuleValidation.ps1 │ │ │ │ ├── Functions │ │ │ │ ├── ActivatePSVirtualEnv.ps1 │ │ │ │ ├── Copy-VirtualEnvLocal.ps1 │ │ │ │ ├── Edit-Requirement.ps1 │ │ │ │ ├── Edit-VirtualEnvConfig.ps1 │ │ │ │ ├── Find-Python.ps1 │ │ │ │ ├── Get-Requirement.ps1 │ │ │ │ ├── Get-VirtualEnv.ps1 │ │ │ │ ├── Get-VirtualEnvConfig.ps1 │ │ │ │ ├── Get-VirtualEnvLocal.ps1 │ │ │ │ ├── Install-VirtualEnv.ps1 │ │ │ │ ├── Invoke-VirtualEnv.ps1 │ │ │ │ ├── ModuleUtils.ps1 │ │ │ │ ├── New-Requirement.ps1 │ │ │ │ ├── New-VirtualEnv.ps1 │ │ │ │ ├── Remove-VirtualEnv.ps1 │ │ │ │ ├── Repair-Python.ps1 │ │ │ │ ├── Set-VirtualEnvLocation.ps1 │ │ │ │ ├── Start-VirtualEnv.ps1 │ │ │ │ ├── Stop-VirtualEnv.ps1 │ │ │ │ ├── Test-VirtualEnv.ps1 │ │ │ │ └── Write-VirtualEnvStatus.ps1 │ │ │ │ ├── PSGetModuleInfo.xml │ │ │ │ ├── PSModuleUtils │ │ │ │ ├── Functions │ │ │ │ │ ├── Config.ps1 │ │ │ │ │ ├── FormatFileContent.ps1 │ │ │ │ │ ├── Message.ps1 │ │ │ │ │ ├── Prompt.ps1 │ │ │ │ │ ├── ScriptBlock.ps1 │ │ │ │ │ ├── Set-Window.ps1 │ │ │ │ │ └── Utils.ps1 │ │ │ │ ├── PSModuleUtils.psd1 │ │ │ │ └── PSModuleUtils.psm1 │ │ │ │ ├── PSVirtualEnv.Tests.ps1 │ │ │ │ ├── PSVirtualEnv.psd1 │ │ │ │ ├── PSVirtualEnv.psm1 │ │ │ │ ├── PSVirtualEnv_Alias.ps1 │ │ │ │ ├── PSVirtualEnv_Config.ps1 │ │ │ │ ├── PSVirtualEnv_Environment.ps1 │ │ │ │ ├── PSVirtualEnv_Functions.ps1 │ │ │ │ ├── PSVirtualEnv_Settings.ps1 │ │ │ │ ├── config_format.json │ │ │ │ ├── default_config.ini │ │ │ │ └── module_format.json │ │ └── PsIni │ │ │ └── 3.1.2 │ │ │ ├── Functions │ │ │ ├── Add-IniComment.ps1 │ │ │ ├── Convert-IniCommentToEntry.ps1 │ │ │ ├── Convert-IniEntryToComment.ps1 │ │ │ ├── Get-IniContent.ps1 │ │ │ ├── Out-IniFile.ps1 │ │ │ ├── Remove-IniComment.ps1 │ │ │ ├── Remove-IniEntry.ps1 │ │ │ └── Set-IniContent.ps1 │ │ │ ├── LICENSE │ │ │ ├── PSGetModuleInfo.xml │ │ │ ├── PsIni.psd1 │ │ │ └── PsIni.psm1 │ ├── Extract-Icon.psm1 │ ├── Feedback-Helpers.psm1 │ ├── Install-Helpers.psm1 │ ├── Keeper-Functions.psm1 │ ├── PSProfileTools │ │ ├── .vscode │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── PSProfileTools.psd1 │ │ ├── PSProfileTools.psm1 │ │ ├── PSTools │ │ │ ├── .devcontainer │ │ │ │ ├── Dockerfile │ │ │ │ └── devcontainer.json │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── CI.yaml │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── settings.json │ │ │ │ └── tasks.json │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── PSTools │ │ │ │ ├── PSTools.psd1 │ │ │ │ ├── PSTools.psm1 │ │ │ │ ├── Private │ │ │ │ │ └── GetHelloWorld.ps1 │ │ │ │ └── Public │ │ │ │ │ ├── Get-HelloWorld.ps1 │ │ │ │ │ └── New-ModuleFunction.ps1 │ │ │ ├── README.md │ │ │ ├── build.ps1 │ │ │ ├── docs │ │ │ │ └── en-US │ │ │ │ │ ├── Get-HelloWorld.md │ │ │ │ │ └── about_PSTools.help.md │ │ │ ├── mkdocs.yml │ │ │ ├── psakeFile.ps1 │ │ │ ├── requirements.psd1 │ │ │ └── tests │ │ │ │ ├── Help.tests.ps1 │ │ │ │ ├── Manifest.tests.ps1 │ │ │ │ ├── Meta.tests.ps1 │ │ │ │ ├── MetaFixers.psm1 │ │ │ │ ├── ScriptAnalyzerSettings.psd1 │ │ │ │ └── out │ │ │ │ ├── .gitkeep │ │ │ │ └── testResults.xml │ │ └── test │ │ │ └── PSProfileTools.Tests.ps1 │ └── Windows-Helpers.psm1 ├── Sandbox │ └── Custom-Windows-ISO-DISM-Workflow.ps1 └── Scripts │ ├── Delete-OldDrivers.ps1 │ └── Remove-OldModules.ps1 ├── Help ├── .gitignore ├── Microsoft.PowerShell.Core_00000000-0000-0000-0000-000000000000_HelpInfo.xml ├── Microsoft.PowerShell.Diagnostics_ca046f10-ca64-4740-8ff9-2565dba61a4f_HelpInfo.xml ├── Microsoft.PowerShell.Host_56d66100-99a0-4ffc-a12d-eee9a6718aef_HelpInfo.xml ├── Microsoft.PowerShell.Management_eefcb906-b326-4e99-9f54-8b4bb6ef3c6d_HelpInfo.xml ├── Microsoft.PowerShell.Security_a94c8c7e-9810-47c0-b8af-65089c13a35a_HelpInfo.xml ├── Microsoft.PowerShell.Utility_1da87e53-152b-403e-98dc-74d7b4d63d59_HelpInfo.xml └── Microsoft.WSMan.Management_766204a6-330e-4263-a7ab-46c87afc366c_HelpInfo.xml ├── Microsoft.PowerShell_profile.ps1 ├── Microsoft.VSCode_profile.ps1 ├── Modules ├── .gitignore ├── README.md ├── modules.json ├── modules.ps1 └── modules.yml ├── PowerShell.Tests.ps1 ├── PowersShell.code-workspace ├── Profile ├── README.md ├── aliases.ps1 ├── aliases │ ├── README.md │ ├── aliases-export.ps1 │ ├── alises-local.ps1 │ └── alises.ps1 ├── completion.ps1 ├── completions │ ├── .deprecated │ │ └── venv.ps1 │ ├── 1password.ps1 │ ├── README.md │ ├── aws.ps1 │ ├── choco.ps1 │ ├── docker.ps1 │ ├── dotnet.ps1 │ ├── ffsend.ps1 │ ├── gh-cli.ps1 │ ├── gh-label.ps1 │ ├── git-cliff.ps1 │ ├── oh-my-posh.ps1 │ ├── s-search.ps1 │ ├── scoop.ps1 │ ├── spotify.ps1 │ ├── winget.ps1 │ └── yq.ps1 ├── functions.ps1 ├── functions │ ├── Get-AdminRights.ps1 │ ├── Get-NetAccelerators.ps1 │ ├── Get-NetFramework.ps1 │ ├── Get-RandomAbout.ps1 │ ├── Get-RandomHelp.ps1 │ ├── Launch-AzurePortal.ps1 │ ├── Module-Helpers.ps1 │ ├── README.md │ ├── System-Functions.ps1 │ └── Test-WiFi.ps1 ├── modules.ps1 ├── options.ps1 └── prompt.ps1 ├── README.md ├── Scripts ├── Backup-GitHub-Repos.ps1 ├── Extract-Icon.ps1 ├── Fido.ps1 ├── Install-PSMod.ps1 ├── InstalledScriptInfos │ ├── New-ModuleProject_InstalledScriptInfo.xml │ └── WIMWitch_InstalledScriptInfo.xml ├── Load-Function.ps1 ├── New-MarkdownFolderTree.ps1 ├── New-ModuleProject.ps1 ├── New-PSModuleManifest.ps1 ├── PowerShell-Script-Template.ps1 ├── WIMWitch.ps1 └── Write-Log.ps1 ├── Tests ├── GitConfig.Tests.ps1 ├── Network.Tests.ps1 └── PowerShell.Installation.Tests.ps1 ├── cliff.toml ├── desktop.ini ├── docs └── index.md ├── powershell.config.json └── profile.ps1 /.git-crypt/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.git-crypt/.gitattributes -------------------------------------------------------------------------------- /.git-crypt/keys/default/0/7B6A462F595FA24EC24B40E663FCA87061A4E0D6.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.git-crypt/keys/default/0/7B6A462F595FA24EC24B40E663FCA87061A4E0D6.gpg -------------------------------------------------------------------------------- /.git-crypt/keys/default/0/B017D01C3C313622784505C187267697E08B0070.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.git-crypt/keys/default/0/B017D01C3C313622784505C187267697E08B0070.gpg -------------------------------------------------------------------------------- /.git-crypt/keys/default/0/FF361E144EE31125E028D670786742B2314D2B34.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.git-crypt/keys/default/0/FF361E144EE31125E028D670786742B2314D2B34.gpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/autodoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.github/workflows/autodoc.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/powershell.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.vscode/powershell.code-snippets -------------------------------------------------------------------------------- /.vscode/powershell.json.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.vscode/powershell.json.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Archive/History/ConsoleHost_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Archive/History/ConsoleHost_history.txt -------------------------------------------------------------------------------- /Archive/History/PowerShell-History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Archive/History/PowerShell-History.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Config/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Config/.gitattributes -------------------------------------------------------------------------------- /Config/keeperconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Config/keeperconfig.json -------------------------------------------------------------------------------- /Dev/Archive/install-gitwithssh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/install-gitwithssh.ps1 -------------------------------------------------------------------------------- /Dev/Archive/install-helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/install-helpers.ps1 -------------------------------------------------------------------------------- /Dev/Archive/install-nerd-fonts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/install-nerd-fonts.ps1 -------------------------------------------------------------------------------- /Dev/Archive/install-pwsh-preview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/install-pwsh-preview.ps1 -------------------------------------------------------------------------------- /Dev/Archive/install-pwsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/install-pwsh.ps1 -------------------------------------------------------------------------------- /Dev/Archive/installed-applications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/installed-applications.ps1 -------------------------------------------------------------------------------- /Dev/Archive/reset-settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/reset-settings.ps1 -------------------------------------------------------------------------------- /Dev/Archive/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Archive/setup.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Export-Drivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Export-Drivers.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Export-ISOFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Export-ISOFiles.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Install-GitHub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Install-GitHub.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Obsidian-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Obsidian-Helpers.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Test-ProgramInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Test-ProgramInstalled.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Update-EveryModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Update-EveryModule.ps1 -------------------------------------------------------------------------------- /Dev/Functions/Update-PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Functions/Update-PowerShell.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Classes/ModuleValidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Classes/ModuleValidation.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/ActivatePSVirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/ActivatePSVirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Copy-VirtualEnvLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Copy-VirtualEnvLocal.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Edit-Requirement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Edit-Requirement.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Edit-VirtualEnvConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Edit-VirtualEnvConfig.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Find-Python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Find-Python.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-Requirement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-Requirement.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnvConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnvConfig.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnvLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Get-VirtualEnvLocal.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Install-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Install-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Invoke-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Invoke-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/ModuleUtils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/ModuleUtils.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/New-Requirement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/New-Requirement.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/New-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/New-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Remove-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Remove-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Repair-Python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Repair-Python.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Set-VirtualEnvLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Set-VirtualEnvLocation.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Start-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Start-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Stop-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Stop-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Test-VirtualEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Test-VirtualEnv.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Write-VirtualEnvStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/Functions/Write-VirtualEnvStatus.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Config.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/FormatFileContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/FormatFileContent.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Message.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Message.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Prompt.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/ScriptBlock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/ScriptBlock.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Set-Window.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Set-Window.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/Functions/Utils.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/PSModuleUtils.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/PSModuleUtils.psd1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/PSModuleUtils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSModuleUtils/PSModuleUtils.psm1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.Tests.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.psd1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv.psm1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Alias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Alias.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Config.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Environment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Environment.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Functions.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/PSVirtualEnv_Settings.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/config_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/config_format.json -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/default_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/default_config.ini -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/module_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PSVirtualEnv/0.5.7/module_format.json -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Add-IniComment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Add-IniComment.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Convert-IniCommentToEntry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Convert-IniCommentToEntry.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Convert-IniEntryToComment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Convert-IniEntryToComment.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Get-IniContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Get-IniContent.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Out-IniFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Out-IniFile.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Remove-IniComment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Remove-IniComment.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Remove-IniEntry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Remove-IniEntry.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Set-IniContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/Functions/Set-IniContent.ps1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/LICENSE -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/PsIni.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/PsIni.psd1 -------------------------------------------------------------------------------- /Dev/Modules/.Deprecated/PsIni/3.1.2/PsIni.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/.Deprecated/PsIni/3.1.2/PsIni.psm1 -------------------------------------------------------------------------------- /Dev/Modules/Extract-Icon.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/Extract-Icon.psm1 -------------------------------------------------------------------------------- /Dev/Modules/Feedback-Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/Feedback-Helpers.psm1 -------------------------------------------------------------------------------- /Dev/Modules/Install-Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/Install-Helpers.psm1 -------------------------------------------------------------------------------- /Dev/Modules/Keeper-Functions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/Keeper-Functions.psm1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/.vscode/settings.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/.vscode/tasks.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSProfileTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSProfileTools.psd1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSProfileTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSProfileTools.psm1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf 2 | -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.gitignore -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.vscode/extensions.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.vscode/settings.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/.vscode/tasks.json -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/CHANGELOG.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/LICENSE -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/PSTools/PSTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/PSTools/PSTools.psd1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/PSTools/PSTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/PSTools/PSTools.psm1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/PSTools/Private/GetHelloWorld.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/PSTools/Private/GetHelloWorld.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/PSTools/Public/Get-HelloWorld.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/PSTools/Public/Get-HelloWorld.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/PSTools/Public/New-ModuleFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/PSTools/Public/New-ModuleFunction.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/README.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/build.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/docs/en-US/Get-HelloWorld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/docs/en-US/Get-HelloWorld.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/docs/en-US/about_PSTools.help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/docs/en-US/about_PSTools.help.md -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/mkdocs.yml -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/psakeFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/psakeFile.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/requirements.psd1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/Help.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/tests/Help.tests.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/Manifest.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/tests/Manifest.tests.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/Meta.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/tests/Meta.tests.ps1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/MetaFixers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/tests/MetaFixers.psm1 -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/ScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/out/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/PSTools/tests/out/testResults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/PSTools/tests/out/testResults.xml -------------------------------------------------------------------------------- /Dev/Modules/PSProfileTools/test/PSProfileTools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/PSProfileTools/test/PSProfileTools.Tests.ps1 -------------------------------------------------------------------------------- /Dev/Modules/Windows-Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Modules/Windows-Helpers.psm1 -------------------------------------------------------------------------------- /Dev/Sandbox/Custom-Windows-ISO-DISM-Workflow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Sandbox/Custom-Windows-ISO-DISM-Workflow.ps1 -------------------------------------------------------------------------------- /Dev/Scripts/Delete-OldDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Scripts/Delete-OldDrivers.ps1 -------------------------------------------------------------------------------- /Dev/Scripts/Remove-OldModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Dev/Scripts/Remove-OldModules.ps1 -------------------------------------------------------------------------------- /Help/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !*.xml 4 | -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Core_00000000-0000-0000-0000-000000000000_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Core_00000000-0000-0000-0000-000000000000_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Diagnostics_ca046f10-ca64-4740-8ff9-2565dba61a4f_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Diagnostics_ca046f10-ca64-4740-8ff9-2565dba61a4f_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Host_56d66100-99a0-4ffc-a12d-eee9a6718aef_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Host_56d66100-99a0-4ffc-a12d-eee9a6718aef_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Management_eefcb906-b326-4e99-9f54-8b4bb6ef3c6d_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Management_eefcb906-b326-4e99-9f54-8b4bb6ef3c6d_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Security_a94c8c7e-9810-47c0-b8af-65089c13a35a_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Security_a94c8c7e-9810-47c0-b8af-65089c13a35a_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.PowerShell.Utility_1da87e53-152b-403e-98dc-74d7b4d63d59_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.PowerShell.Utility_1da87e53-152b-403e-98dc-74d7b4d63d59_HelpInfo.xml -------------------------------------------------------------------------------- /Help/Microsoft.WSMan.Management_766204a6-330e-4263-a7ab-46c87afc366c_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Help/Microsoft.WSMan.Management_766204a6-330e-4263-a7ab-46c87afc366c_HelpInfo.xml -------------------------------------------------------------------------------- /Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /Microsoft.VSCode_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Microsoft.VSCode_profile.ps1 -------------------------------------------------------------------------------- /Modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Modules/.gitignore -------------------------------------------------------------------------------- /Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Modules/README.md -------------------------------------------------------------------------------- /Modules/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Modules/modules.json -------------------------------------------------------------------------------- /Modules/modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Modules/modules.ps1 -------------------------------------------------------------------------------- /Modules/modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Modules/modules.yml -------------------------------------------------------------------------------- /PowerShell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/PowerShell.Tests.ps1 -------------------------------------------------------------------------------- /PowersShell.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/PowersShell.code-workspace -------------------------------------------------------------------------------- /Profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/README.md -------------------------------------------------------------------------------- /Profile/aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/aliases.ps1 -------------------------------------------------------------------------------- /Profile/aliases/README.md: -------------------------------------------------------------------------------- 1 | # PowerShell Aliases 2 | -------------------------------------------------------------------------------- /Profile/aliases/aliases-export.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/aliases/aliases-export.ps1 -------------------------------------------------------------------------------- /Profile/aliases/alises-local.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/aliases/alises-local.ps1 -------------------------------------------------------------------------------- /Profile/aliases/alises.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/aliases/alises.ps1 -------------------------------------------------------------------------------- /Profile/completion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completion.ps1 -------------------------------------------------------------------------------- /Profile/completions/.deprecated/venv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/.deprecated/venv.ps1 -------------------------------------------------------------------------------- /Profile/completions/1password.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/1password.ps1 -------------------------------------------------------------------------------- /Profile/completions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/README.md -------------------------------------------------------------------------------- /Profile/completions/aws.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/aws.ps1 -------------------------------------------------------------------------------- /Profile/completions/choco.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/choco.ps1 -------------------------------------------------------------------------------- /Profile/completions/docker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/docker.ps1 -------------------------------------------------------------------------------- /Profile/completions/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/dotnet.ps1 -------------------------------------------------------------------------------- /Profile/completions/ffsend.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/ffsend.ps1 -------------------------------------------------------------------------------- /Profile/completions/gh-cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/gh-cli.ps1 -------------------------------------------------------------------------------- /Profile/completions/gh-label.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/gh-label.ps1 -------------------------------------------------------------------------------- /Profile/completions/git-cliff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/git-cliff.ps1 -------------------------------------------------------------------------------- /Profile/completions/oh-my-posh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/oh-my-posh.ps1 -------------------------------------------------------------------------------- /Profile/completions/s-search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/s-search.ps1 -------------------------------------------------------------------------------- /Profile/completions/scoop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/scoop.ps1 -------------------------------------------------------------------------------- /Profile/completions/spotify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/spotify.ps1 -------------------------------------------------------------------------------- /Profile/completions/winget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/winget.ps1 -------------------------------------------------------------------------------- /Profile/completions/yq.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/completions/yq.ps1 -------------------------------------------------------------------------------- /Profile/functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions.ps1 -------------------------------------------------------------------------------- /Profile/functions/Get-AdminRights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Get-AdminRights.ps1 -------------------------------------------------------------------------------- /Profile/functions/Get-NetAccelerators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Get-NetAccelerators.ps1 -------------------------------------------------------------------------------- /Profile/functions/Get-NetFramework.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Get-NetFramework.ps1 -------------------------------------------------------------------------------- /Profile/functions/Get-RandomAbout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Get-RandomAbout.ps1 -------------------------------------------------------------------------------- /Profile/functions/Get-RandomHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Get-RandomHelp.ps1 -------------------------------------------------------------------------------- /Profile/functions/Launch-AzurePortal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Launch-AzurePortal.ps1 -------------------------------------------------------------------------------- /Profile/functions/Module-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Module-Helpers.ps1 -------------------------------------------------------------------------------- /Profile/functions/README.md: -------------------------------------------------------------------------------- 1 | # Custom PowerShell Functions 2 | -------------------------------------------------------------------------------- /Profile/functions/System-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/System-Functions.ps1 -------------------------------------------------------------------------------- /Profile/functions/Test-WiFi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/functions/Test-WiFi.ps1 -------------------------------------------------------------------------------- /Profile/modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/modules.ps1 -------------------------------------------------------------------------------- /Profile/options.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/options.ps1 -------------------------------------------------------------------------------- /Profile/prompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Profile/prompt.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Backup-GitHub-Repos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Backup-GitHub-Repos.ps1 -------------------------------------------------------------------------------- /Scripts/Extract-Icon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Extract-Icon.ps1 -------------------------------------------------------------------------------- /Scripts/Fido.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Fido.ps1 -------------------------------------------------------------------------------- /Scripts/Install-PSMod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Install-PSMod.ps1 -------------------------------------------------------------------------------- /Scripts/InstalledScriptInfos/New-ModuleProject_InstalledScriptInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/InstalledScriptInfos/New-ModuleProject_InstalledScriptInfo.xml -------------------------------------------------------------------------------- /Scripts/InstalledScriptInfos/WIMWitch_InstalledScriptInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/InstalledScriptInfos/WIMWitch_InstalledScriptInfo.xml -------------------------------------------------------------------------------- /Scripts/Load-Function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Load-Function.ps1 -------------------------------------------------------------------------------- /Scripts/New-MarkdownFolderTree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/New-MarkdownFolderTree.ps1 -------------------------------------------------------------------------------- /Scripts/New-ModuleProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/New-ModuleProject.ps1 -------------------------------------------------------------------------------- /Scripts/New-PSModuleManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/New-PSModuleManifest.ps1 -------------------------------------------------------------------------------- /Scripts/PowerShell-Script-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/PowerShell-Script-Template.ps1 -------------------------------------------------------------------------------- /Scripts/WIMWitch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/WIMWitch.ps1 -------------------------------------------------------------------------------- /Scripts/Write-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Scripts/Write-Log.ps1 -------------------------------------------------------------------------------- /Tests/GitConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Tests/GitConfig.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Network.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Tests/Network.Tests.ps1 -------------------------------------------------------------------------------- /Tests/PowerShell.Installation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/Tests/PowerShell.Installation.Tests.ps1 -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/cliff.toml -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/desktop.ini -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/docs/index.md -------------------------------------------------------------------------------- /powershell.config.json: -------------------------------------------------------------------------------- 1 | {"Microsoft.PowerShell:ExecutionPolicy":"Unrestricted"} -------------------------------------------------------------------------------- /profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimbrig/PowerShell/HEAD/profile.ps1 --------------------------------------------------------------------------------