├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 00-bug.yml │ ├── 01-article.yml │ ├── 02-quality.yml │ ├── 03-change.yml │ ├── 04-customer-feedback.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── messages │ └── expectations.md └── workflows │ ├── checklist.yml │ ├── expectations.yml │ ├── quality.issue.yml │ ├── quality.pr.yml │ ├── stale-content.yml │ ├── targeting-repo-files.yml │ └── targeting-valid-branch.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .markdownlint.yaml ├── .openpublishing.publish.config.json ├── .openpublishing.redirection.json ├── .vale.ini ├── .vscode ├── cSpell.json ├── cspell │ ├── psdocs │ │ ├── cspell.yaml │ │ └── dictionaries │ │ │ ├── externalCommands.txt │ │ │ ├── fictionalCorps.txt │ │ │ ├── fileExtensions.txt │ │ │ ├── psdocs.txt │ │ │ └── pwshAliases.txt │ └── psget │ │ ├── cspell.yaml │ │ └── dictionaries │ │ └── dsc-terms.txt ├── extensions.json └── styles │ └── Vocab │ └── PowerShell-Docs │ └── accept.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── LICENSE-CODE.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.md ├── cabgen-bootstrap.yml └── powershell-gallery ├── breadcrumb └── toc.yml ├── docfx.json ├── docs-conceptual ├── concepts │ ├── media │ │ └── publishing-guidelines │ │ │ └── CosmosDB.svg │ ├── module-license-acceptance.md │ ├── module-prerelease-support.md │ ├── module-psedition-support.md │ ├── package-manifest-affecting-ui.md │ ├── publishing-guidelines.md │ ├── script-license-acceptance.md │ ├── script-prerelease-support.md │ ├── script-psedition-support.md │ └── scriptanalyzer-rule-profile.md ├── faqs.yml ├── getting-started.md ├── how-to │ ├── finding-packages │ │ ├── filtering-packages.md │ │ ├── media │ │ │ └── searching-by-compatibility │ │ │ │ ├── packagedisplaypagewithpseditions.PNG │ │ │ │ ├── searchresultswithpseditions.PNG │ │ │ │ └── searchresultswithpseditionsdesktop.PNG │ │ ├── search-syntax.md │ │ └── searching-by-compatibility.md │ ├── getting-support │ │ ├── bootstrapping-nuget.md │ │ ├── contacting-administrators.md │ │ ├── dispute-resolution.md │ │ ├── gdpr-dsr-policy.md │ │ ├── report-abuse.md │ │ └── troubleshooting-cmdlets.md │ ├── managing-profile │ │ ├── creating-APIkeys.md │ │ ├── managing-account.md │ │ └── media │ │ │ ├── creating-APIkeys │ │ │ ├── PSGallery_CopyCreatedKey.png │ │ │ ├── PSGallery_EditAPIKey.png │ │ │ └── PSGallery_KeyScoped.png │ │ │ └── managing-account │ │ │ ├── PSGallery_AcccountEmailAddress.png │ │ │ ├── PSGallery_AccountEmailOptions.PNG │ │ │ ├── PSGallery_LoginAccountChange-1.png │ │ │ ├── PSGallery_LoginAccountChange-2.png │ │ │ ├── PSGallery_LoginAccountChange-3.png │ │ │ └── PSGallery_LoginAccountSettings.png │ ├── publishing-packages │ │ ├── creating-an-account.md │ │ ├── deleting-packages.md │ │ ├── managing-package-owners.md │ │ ├── media │ │ │ └── creating-an-account │ │ │ │ └── CreateAccount-Register.PNG │ │ ├── publishing-a-package.md │ │ └── unlisting-packages.md │ ├── working-with-local-psrepositories.md │ └── working-with-packages │ │ ├── contacting-package-owners.md │ │ ├── deploy-to-azure-automation.md │ │ ├── filelist-view.md │ │ ├── manual-download.md │ │ ├── media │ │ ├── deploy-to-azure-automation │ │ │ ├── DeployToAzureAutomationButton.png │ │ │ └── DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png │ │ ├── manual-download │ │ │ └── packagedisplaypagewithpseditions.PNG │ │ └── packages-that-require-license-acceptance │ │ │ ├── DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png │ │ │ └── RequireLicenseAcceptance.png │ │ └── packages-that-require-license-acceptance.md ├── media │ └── faqs │ │ └── powershellgetArchitecture.png ├── overview.md ├── powershellget │ ├── how-to │ │ ├── credential-persistence.md │ │ ├── use-acr-repository.md │ │ └── use-credential-provider-with-azure-artifacts.md │ ├── install-powershellget.md │ ├── overview.md │ ├── psresourceget-release-notes.md │ ├── supported-repositories.md │ ├── toc.yml │ └── update-powershell-51.md └── toc.yml ├── includes ├── nuget-module.md └── tls-gallery.md ├── mapping └── monikerMapping.json ├── powershellget-1.x ├── PackageManagement │ ├── Find-Package.md │ ├── Find-PackageProvider.md │ ├── Get-Package.md │ ├── Get-PackageProvider.md │ ├── Get-PackageSource.md │ ├── Import-PackageProvider.md │ ├── Install-Package.md │ ├── Install-PackageProvider.md │ ├── PackageManagement.md │ ├── Register-PackageSource.md │ ├── Save-Package.md │ ├── Set-PackageSource.md │ ├── Uninstall-Package.md │ └── Unregister-PackageSource.md └── PowerShellGet │ ├── Find-Command.md │ ├── Find-DscResource.md │ ├── Find-Module.md │ ├── Find-RoleCapability.md │ ├── Find-Script.md │ ├── Get-InstalledModule.md │ ├── Get-InstalledScript.md │ ├── Get-PSRepository.md │ ├── Install-Module.md │ ├── Install-Script.md │ ├── New-ScriptFileInfo.md │ ├── PowerShellGet.md │ ├── Publish-Module.md │ ├── Publish-Script.md │ ├── Register-PSRepository.md │ ├── Save-Module.md │ ├── Save-Script.md │ ├── Set-PSRepository.md │ ├── Test-ScriptFileInfo.md │ ├── Uninstall-Module.md │ ├── Uninstall-Script.md │ ├── Unregister-PSRepository.md │ ├── Update-Module.md │ ├── Update-ModuleManifest.md │ ├── Update-Script.md │ └── Update-ScriptFileInfo.md ├── powershellget-2.x ├── PackageManagement │ ├── Find-Package.md │ ├── Find-PackageProvider.md │ ├── Get-Package.md │ ├── Get-PackageProvider.md │ ├── Get-PackageSource.md │ ├── Import-PackageProvider.md │ ├── Install-Package.md │ ├── Install-PackageProvider.md │ ├── PackageManagement.md │ ├── Register-PackageSource.md │ ├── Save-Package.md │ ├── Set-PackageSource.md │ ├── Uninstall-Package.md │ └── Unregister-PackageSource.md └── PowerShellGet │ ├── Find-Command.md │ ├── Find-DscResource.md │ ├── Find-Module.md │ ├── Find-RoleCapability.md │ ├── Find-Script.md │ ├── Get-InstalledModule.md │ ├── Get-InstalledScript.md │ ├── Get-PSRepository.md │ ├── Install-Module.md │ ├── Install-Script.md │ ├── New-ScriptFileInfo.md │ ├── PowerShellGet.md │ ├── Publish-Module.md │ ├── Publish-Script.md │ ├── Register-PSRepository.md │ ├── Save-Module.md │ ├── Save-Script.md │ ├── Set-PSRepository.md │ ├── Test-ScriptFileInfo.md │ ├── Uninstall-Module.md │ ├── Uninstall-Script.md │ ├── Unregister-PSRepository.md │ ├── Update-Module.md │ ├── Update-ModuleManifest.md │ ├── Update-Script.md │ └── Update-ScriptFileInfo.md └── powershellget-3.x └── Microsoft.PowerShell.PSResourceGet ├── About ├── .markdownlint.yaml ├── about_PSResourceGet.md └── about_PSResourceGet_Group_Policy.md ├── Compress-PSResource.md ├── Find-PSResource.md ├── Get-InstalledPSResource.md ├── Get-PSResourceRepository.md ├── Get-PSScriptFileInfo.md ├── Import-PSGetRepository.md ├── Install-PSResource.md ├── Microsoft.PowerShell.PSResourceGet.md ├── New-PSScriptFileInfo.md ├── Publish-PSResource.md ├── Register-PSResourceRepository.md ├── Reset-PSResourceRepository.md ├── Save-PSResource.md ├── Set-PSResourceRepository.md ├── Test-PSScriptFileInfo.md ├── Uninstall-PSResource.md ├── Unregister-PSResourceRepository.md ├── Update-PSModuleManifest.md ├── Update-PSResource.md └── Update-PSScriptFileInfo.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/00-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/00-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-article.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/01-article.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/02-quality.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/03-change.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-customer-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/04-customer-feedback.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/messages/expectations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/messages/expectations.md -------------------------------------------------------------------------------- /.github/workflows/checklist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/checklist.yml -------------------------------------------------------------------------------- /.github/workflows/expectations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/expectations.yml -------------------------------------------------------------------------------- /.github/workflows/quality.issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/quality.issue.yml -------------------------------------------------------------------------------- /.github/workflows/quality.pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/quality.pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale-content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/stale-content.yml -------------------------------------------------------------------------------- /.github/workflows/targeting-repo-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/targeting-repo-files.yml -------------------------------------------------------------------------------- /.github/workflows/targeting-valid-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.github/workflows/targeting-valid-branch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.openpublishing.publish.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.openpublishing.publish.config.json -------------------------------------------------------------------------------- /.openpublishing.redirection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.openpublishing.redirection.json -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/cSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cSpell.json -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/cspell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/cspell.yaml -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/dictionaries/externalCommands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/dictionaries/externalCommands.txt -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/dictionaries/fictionalCorps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/dictionaries/fictionalCorps.txt -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/dictionaries/fileExtensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/dictionaries/fileExtensions.txt -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/dictionaries/psdocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/dictionaries/psdocs.txt -------------------------------------------------------------------------------- /.vscode/cspell/psdocs/dictionaries/pwshAliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psdocs/dictionaries/pwshAliases.txt -------------------------------------------------------------------------------- /.vscode/cspell/psget/cspell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/cspell/psget/cspell.yaml -------------------------------------------------------------------------------- /.vscode/cspell/psget/dictionaries/dsc-terms.txt: -------------------------------------------------------------------------------- 1 | Automanage 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/styles/Vocab/PowerShell-Docs/accept.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /LICENSE-CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/LICENSE-CODE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/ThirdPartyNotices.md -------------------------------------------------------------------------------- /cabgen-bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/cabgen-bootstrap.yml -------------------------------------------------------------------------------- /powershell-gallery/breadcrumb/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/breadcrumb/toc.yml -------------------------------------------------------------------------------- /powershell-gallery/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docfx.json -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/media/publishing-guidelines/CosmosDB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/media/publishing-guidelines/CosmosDB.svg -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/module-license-acceptance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/module-license-acceptance.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/module-prerelease-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/module-prerelease-support.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/module-psedition-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/module-psedition-support.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/package-manifest-affecting-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/package-manifest-affecting-ui.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/publishing-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/publishing-guidelines.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/script-license-acceptance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/script-license-acceptance.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/script-prerelease-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/script-prerelease-support.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/script-psedition-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/script-psedition-support.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/concepts/scriptanalyzer-rule-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/concepts/scriptanalyzer-rule-profile.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/faqs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/faqs.yml -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/getting-started.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/filtering-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/filtering-packages.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/packagedisplaypagewithpseditions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/packagedisplaypagewithpseditions.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/searchresultswithpseditions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/searchresultswithpseditions.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/searchresultswithpseditionsdesktop.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/media/searching-by-compatibility/searchresultswithpseditionsdesktop.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/search-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/search-syntax.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/finding-packages/searching-by-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/finding-packages/searching-by-compatibility.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/bootstrapping-nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/bootstrapping-nuget.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/contacting-administrators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/contacting-administrators.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/dispute-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/dispute-resolution.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/gdpr-dsr-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/gdpr-dsr-policy.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/report-abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/report-abuse.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/getting-support/troubleshooting-cmdlets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/getting-support/troubleshooting-cmdlets.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/creating-APIkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/creating-APIkeys.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/managing-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/managing-account.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_CopyCreatedKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_CopyCreatedKey.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_EditAPIKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_EditAPIKey.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_KeyScoped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/creating-APIkeys/PSGallery_KeyScoped.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_AcccountEmailAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_AcccountEmailAddress.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_AccountEmailOptions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_AccountEmailOptions.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-1.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-2.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountChange-3.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/managing-profile/media/managing-account/PSGallery_LoginAccountSettings.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/creating-an-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/creating-an-account.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/deleting-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/deleting-packages.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/managing-package-owners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/managing-package-owners.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/media/creating-an-account/CreateAccount-Register.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/media/creating-an-account/CreateAccount-Register.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/publishing-a-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/publishing-a-package.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/publishing-packages/unlisting-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/publishing-packages/unlisting-packages.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-local-psrepositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-local-psrepositories.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/contacting-package-owners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/contacting-package-owners.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/deploy-to-azure-automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/deploy-to-azure-automation.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/filelist-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/filelist-view.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/manual-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/manual-download.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/media/deploy-to-azure-automation/DeployToAzureAutomationButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/media/deploy-to-azure-automation/DeployToAzureAutomationButton.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/media/deploy-to-azure-automation/DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/media/deploy-to-azure-automation/DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/media/manual-download/packagedisplaypagewithpseditions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/media/manual-download/packagedisplaypagewithpseditions.PNG -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/media/packages-that-require-license-acceptance/DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/media/packages-that-require-license-acceptance/DeployToAzureAutomationRequireLicenseAcceptanceDisclaimer.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/media/packages-that-require-license-acceptance/RequireLicenseAcceptance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/media/packages-that-require-license-acceptance/RequireLicenseAcceptance.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/how-to/working-with-packages/packages-that-require-license-acceptance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/how-to/working-with-packages/packages-that-require-license-acceptance.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/media/faqs/powershellgetArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/media/faqs/powershellgetArchitecture.png -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/overview.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/how-to/credential-persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/how-to/credential-persistence.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/how-to/use-acr-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/how-to/use-acr-repository.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/how-to/use-credential-provider-with-azure-artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/how-to/use-credential-provider-with-azure-artifacts.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/install-powershellget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/install-powershellget.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/overview.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/psresourceget-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/psresourceget-release-notes.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/supported-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/supported-repositories.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/toc.yml -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/powershellget/update-powershell-51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/powershellget/update-powershell-51.md -------------------------------------------------------------------------------- /powershell-gallery/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /powershell-gallery/includes/nuget-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/includes/nuget-module.md -------------------------------------------------------------------------------- /powershell-gallery/includes/tls-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/includes/tls-gallery.md -------------------------------------------------------------------------------- /powershell-gallery/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/mapping/monikerMapping.json -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Find-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Find-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Find-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Find-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Get-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Get-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Get-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Get-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Get-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Get-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Import-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Import-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Install-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Install-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Install-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Install-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/PackageManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/PackageManagement.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Register-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Register-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Save-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Save-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Set-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Set-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Uninstall-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Uninstall-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PackageManagement/Unregister-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PackageManagement/Unregister-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Find-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Find-Command.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Find-DscResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Find-DscResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Find-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Find-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Find-RoleCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Find-RoleCapability.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Find-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Find-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Get-InstalledModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Get-InstalledModule.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Get-InstalledScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Get-InstalledScript.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Get-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Get-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Install-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Install-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Install-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Install-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/New-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/New-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/PowerShellGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/PowerShellGet.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Publish-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Publish-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Publish-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Publish-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Register-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Register-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Save-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Save-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Save-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Save-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Set-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Set-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Test-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Test-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Uninstall-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Uninstall-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Uninstall-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Uninstall-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Unregister-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Unregister-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Update-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Update-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Update-ModuleManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Update-ModuleManifest.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Update-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Update-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-1.x/PowerShellGet/Update-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-1.x/PowerShellGet/Update-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Find-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Find-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Find-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Find-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Get-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Get-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Get-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Get-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Get-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Get-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Import-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Import-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Install-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Install-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Install-PackageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Install-PackageProvider.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/PackageManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/PackageManagement.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Register-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Register-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Save-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Save-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Set-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Set-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Uninstall-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Uninstall-Package.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PackageManagement/Unregister-PackageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PackageManagement/Unregister-PackageSource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Find-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Find-Command.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Find-DscResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Find-DscResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Find-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Find-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Find-RoleCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Find-RoleCapability.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Find-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Find-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Get-InstalledModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Get-InstalledModule.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Get-InstalledScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Get-InstalledScript.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Get-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Get-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Install-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Install-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Install-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Install-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/New-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/New-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/PowerShellGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/PowerShellGet.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Publish-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Publish-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Publish-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Publish-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Register-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Register-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Save-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Save-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Save-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Save-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Set-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Set-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Test-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Test-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Uninstall-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Uninstall-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Uninstall-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Uninstall-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Unregister-PSRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Unregister-PSRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Update-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Update-Module.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Update-ModuleManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Update-ModuleManifest.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Update-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Update-Script.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-2.x/PowerShellGet/Update-ScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-2.x/PowerShellGet/Update-ScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/.markdownlint.yaml -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/about_PSResourceGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/about_PSResourceGet.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/about_PSResourceGet_Group_Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/About/about_PSResourceGet_Group_Policy.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Compress-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Compress-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Find-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Find-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-InstalledPSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-InstalledPSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSResourceRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSResourceRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Import-PSGetRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Import-PSGetRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Install-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Install-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Microsoft.PowerShell.PSResourceGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Microsoft.PowerShell.PSResourceGet.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/New-PSScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/New-PSScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Publish-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Publish-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Register-PSResourceRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Register-PSResourceRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Reset-PSResourceRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Reset-PSResourceRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Save-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Save-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Set-PSResourceRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Set-PSResourceRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Test-PSScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Test-PSScriptFileInfo.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Uninstall-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Uninstall-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Unregister-PSResourceRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Unregister-PSResourceRepository.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSModuleManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSModuleManifest.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSResource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSResource.md -------------------------------------------------------------------------------- /powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSScriptFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/PowerShell-Docs-PSGet/HEAD/powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Update-PSScriptFileInfo.md --------------------------------------------------------------------------------