3

windows 7 不会激活 powershell 的路径。

1) C:\Windows\System32\WindowsPowerShell\v1.0 存在于我的路径中

    C:\GitRepository>path
PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;  C:\Windows\System32\WindowsPowerShell\v1.0; 

2) 不能从 cmd 隐式运行 powershell

    C:\GitRepository>powershell 
'powershell' is not recognized as an internal or external command, operable program or batch file.

3)但它显式运行

   C:\GitRepository>c:\Windows\System32\WindowsPowerShell\v1.0\powershell
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.

PS C:\Users\user\Androidwork\WebDevelopment\GitRepository> exit

C:\Users\user\Androidwork\WebDevelopment\GitRepository> 

任何想法?

4

2 回答 2

4

您的问题是 PowerShell 路径前面的空格。只需删除它们,即:

PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0; 
于 2012-06-29T07:45:43.603 回答
0

我发现我安装的一个程序删除了 ; 在将 Powershell 路径与下一条路径分开的路径中。;C:\Windows\System32\WindowsPowerShell**v1.0\c:**\程序文件\其他程序。放置分号后,powershell.exe 成功启动。

于 2016-01-21T18:14:25.930 回答