- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
Powershell 突然停止从 cmd 和 powershell 提示符打开。在它正常工作和停止工作之间我没有安装任何新东西。
当我尝试使用以下命令从 cmd 窗口(提升和未提升)启动 powershell.exe 时
C:\Users\myuser>powershell.exe
我收到操作系统的弹出式错误消息:
This app can't run on your PC
一旦我关闭那个弹出窗口,cmd 提示我就从那里开始调用,然后打印:
Access is denied
到屏幕(是的,即使我在提升的 cmd 提示符下执行此操作)
当我尝试使用以下命令在 powershell 中执行此操作时:
PS C:\Users\myuser> powershell.exe
我得到:
Program 'powershell.exe' failed to run: The specified executable is not a valid application for this OS platform.
At line:1 char:1
+ powershell.exe
+ ~~~~~~~~~~~~~~.
At line:1 char:1
+ powershell.exe
+ ~~~~~~~~~~~~~~.
+ CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
+ FullyQualifiedErrorID : NativeCommandFailed
显然连 powershell 都不喜欢 powershell 了。
我已经尝试重新启动计算机但没有解决问题,但我完全不知道下一步该怎么做。
最佳答案
@ PetSerAl在对该问题的评论中给出了关键指针。
在 Windows 8 或更高版本上弹出“此应用程序无法在您的 PC 上运行”错误消息 表示:
损坏的文件,例如 0 字节 *.exe
文件,特别是。当控制台出现“访问被拒绝”错误时。
或者越来越不常见的是,尝试在 32 位版本的 Windows 上运行 64 位可执行文件。
故障排除步骤:
从命令提示符(cmd.exe
控制台)运行 where.exe <executable-name>
;
从 PowerShell,运行 Get-Command -All <executable-name>
,它向您显示 $env:PATH
中列出的目录中存在的所有具有该名称的可执行文件。按完整路径顺序排列的环境变量。
注意 where.exe
,不像Get-Command
, 也会在当前 目录中查找,然后首先查找。
因此,返回的第一个路径是仅指定可执行文件名称时实际执行的可执行文件。
where.exe
找到,当前 目录中的匹配项, 仅在从 cmd.exe
调用可执行文件时才重要(来自命令提示符或批处理文件),因为 PowerShell 在设计上不允许仅通过名称从当前目录调用可执行文件。where.exe
来自 PowerShell,扩展名 .exe
是必需的,因为命令名称 where
本身是 Where-Object
的内置别名cmdlet。在 where.exe
的输出中/Get-Command
, 检查:
删除意外的(零字节)可执行文件,或者,如果您希望它们作为正常运行的可执行文件存在,重新安装它们。强>
示例:
查找名为 powershell.exe
的所有可执行文件在当前目录和 $env:PATH
中列出的目录中.
请注意 powershell.exe
的正确位置是C:\Windows\System32\WindowsPowerShell\v1.0
,反射(reflect)在 $PSHOME
.
来自 cmd.exe
(常规命令提示符):
where powershell.exe
示例输出:
C:\Windows\System32\powershell.exe
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
来自 PowerShell:
Get-Command -All powershell.exe
如果您还想查看当前 目录,请使用
Get-Command -All .\powershell.exe, powershell.exe
示例输出:
CommandType Name Version Source
----------- ---- ------- ------
Application powershell.exe 0.0.0.0 C:\WINDOWS\system32\powershell.exe
Application powershell.exe 10.0.14... C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe
如果你想在输出中包含文件大小:
PS> where.exe powershell.exe | % { [system.io.fileinfo] $_ |
select fullname, length, @{ n = 'Version'; e = { $_.versioninfo.FileversionRaw } } }
FullName Length Version
-------- ------ -------
C:\Windows\System32\powershell.exe 0
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe 446976 10.0.14393.206
关于Windows 8.1 无法从 cmd 或 powershell 提示符启动 Powershell - "This app can' t run on your PC",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34912830/
我是一名优秀的程序员,十分优秀!