Powershell Uma unidade C não existe

1

Estou usando um sistema normal, nada virtual, minha unidade C não está mapeada, o que eu vejo em alguns fóruns. Caminho do ambiente não definido?

Eu comecei um tutorial para aprender o Powershell, e a primeira coisa que tentei executar foi muito simples:

PS C:\Users\user> get-help get

Erro que recebo:

get-help : Cannot find drive. A drive with the name '.C' does not exist.
At line:1 char:1
+ get-help get
+ ~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (.C:String) [Get-Help], DriveNotFoundException
    + FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.GetHelpCommand

Imagem:


Sistema:
Windows7, Powershell 4.0, .NET 4.5

    
por ejbytes 03.01.2016 / 23:24

2 respostas

1

Parece que eu tinha um bug em minhas variáveis de ambiente, caminho. Aqui está a captura de tela do que eu mudei.


Depoisdetentarreiniciarefalhar.NETdesinstalado,reinstalado.NET,reinstaladoumaversãodoPowershelleaindafalhar.Acabeiverificandominhasvariáveisdeambiente.Euostroqueiháalgunsanosporuma"correção" para os testes do JUNIT em programação Java.

    
por 04.01.2016 / 09:02
0

get-help: não é possível encontrar a unidade. Uma unidade com o nome '.C' não existe.

Sua instalação do PowerShell está quebrada ou mal configurada.

Deve produzir uma saída semelhante à seguinte:

PS C:\Windows\System32\WindowsPowerShell\v1.0> get-help get

Name                              Category  Module                    Synopsis
----                              --------  ------                    --------
Get-Verb                          Function
Get-FileHash                      Function  Microsoft.PowerShell.U... ...
Get-Command                       Cmdlet    Microsoft.PowerShell.Core ...
Get-Module                        Cmdlet    Microsoft.PowerShell.Core ...
Get-Help                          Cmdlet    Microsoft.PowerShell.Core ...
Get-History                       Cmdlet    Microsoft.PowerShell.Core ...
Get-PSSessionConfiguration        Cmdlet    Microsoft.PowerShell.Core ...
Get-PSSession                     Cmdlet    Microsoft.PowerShell.Core ...
...
    
por 03.01.2016 / 23:48