Automation

 View Only
  • 1.  NUget problem

    Posted May 08, 2020 09:57 AM

    Hi,

    I am getting this error when install Powercli on my win10. Any help ?



  • 2.  RE: NUget problem
    Best Answer

    Posted May 08, 2020 10:43 AM

    That seems to be caused by a known PowerShell issue with an older PowerShellGet version.

    From a PS prompt, started 'As Administrator', run the following.

    Install-PackageProvider Nuget –Force

    Set-ExecutionPolicy RemoteSigned

    Install-Module –Name PowerShellGet –Force -AllowClobber

    Update-Module -Name PowerShellGet



  • 3.  RE: NUget problem

    Posted May 16, 2020 09:10 PM

    Thank you, It works