PowerShellGetv2 icon indicating copy to clipboard operation
PowerShellGetv2 copied to clipboard

PowerShellGet is the Package Manager for PowerShell

Results 116 PowerShellGetv2 issues
Sort by recently updated
recently updated
newest added

Steps to reproduce ------------------ # Check if PowerShell repository exists on local machine if ($null -eq (Get-PSRepository | Where-Object { $_.Name -eq "TestPsModulesRepo" })) { Write-Host "Registering PowerSHellGet Repo 'TestPsModulesRepo'"...

Steps to reproduce ------------------ - Get a machine, which connects to the internet via proxy. - Make the proxy return 403. ```powershell Register-PSRepository -Default ``` Expected behavior ----------------- The command...

Steps to reproduce ------------------ ```powershell Register-PSRepository -Name iQmetrix -SourceLocation "https://pkgs.dev.azure.com/iqmetrix/_packaging/iqmetrix/nuget/v2" -PublishLocation "https://pkgs.dev.azure.com/iqmetrix/_packaging/iqmetrix/nuget/v2" ``` Expected behavior ----------------- A new PSRepository registration called `iQmetrix` is created. Actual behavior --------------- ```none PS C:\code\PowerShellGet\src\code>...

# Steps to reproduce any module uninstall (modules installed by default in user mode, user documents file path on a onedrive synced folder): Uninstall-Module -Name "AWSPowerShell.NetCore" -Force -AllVersions Uninstall-Module -Name...

Amazon has recently changed the root certification authority used to sign the **AWSPowershell.NetCore** package: version 4.0.5.0 root certification authority is **VeriSign Universal Root Certification Authority** while version 4.1.2.0 uses **Amazon...

In some of our internal modules we are using Lability https://github.com/VirtualEngine/Lability which recently changed a few minor details in their code signing cert which has caused PowerShellGet to throw an...

Update-Module

Steps to reproduce ------------------ ```powershell Register-PSRepository -Name internalRepo -SourceLocation= https://adepot:8625/nuget/PSGet ``` Expected behavior ----------------- ```none repo registered ``` Actual behavior --------------- ```none ScriptStackTrace: at ThrowError, C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\2.2.5\PSModule.psm1: line 7115 at...

At our self-hosted Azure DevOps build agent we are hitting strange behavior of PowerShellGet. Whereas on the virtual machine in a regular Windows account we can just hit `Install-Module Az.Storage`,...

I get this `The property 'Copyright' cannot be found on this object. Verify that the property exists.` error when I update modules (any module). Steps to reproduce ------------------ ```powershell Update-Module...

Steps to reproduce ------------------ - Environment variable **NUGET_PLUGIN_PATHS** is not set. - Windows : file **$env:UserProfile/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft.dll** exists. - GNU/Linux, MacOS : file **$HOME/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft.dll** exists. ```powershell if(-not (Test-Path env:NUGET_PLUGIN_PATHS) -and (Test-Path...