Não é possível executar 'Install-Script' gera erro

0

Estou tentando instalar Show-Tree plugin por powershell , mas estou sempre recebendo um erro como:

PS C:\Windows\system32> Install-Script -Name Show-Tree
Install-Script : The term 'Install-Script' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
At line:1 char:1
+ Install-Script -Name Show-Tree
+ ~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Install-Script:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

Como resolver isso? qual é a maneira correta de instalar o Show-tree ? Link para o script

    
por 3gwebtrain 18.06.2017 / 05:41

1 resposta

1

Tente usar o seguinte:

Install-Module -Name Show-Tree

Esse é o comando correto ao instalar um módulo

    
por 18.06.2017 / 05:46

Tags