Powershell 7 中 Get-Command -CommandType 应用程序的所有有效扩展是什么?

问题描述 投票:0回答:1

我正在编写一个通过

Get-Command $CommandName -CommandType Application.

启动应用程序的函数

阅读文档here

-CommandType Application
可接受的扩展是
.txt
.exe
.dll
文件。

但这不是真的。我使用

-CommandType Application

启动了 .cmd、.bat、.ps1 和其他文件扩展名

我需要了解

Get-Command -CommandType Application
的全部有效可执行扩展。

有谁知道这方面的权威资料吗?

提前致谢。

powershell
1个回答
0
投票

我认为您想要的列表是在 CommandType 枚举中定义的。

别名 |功能|过滤| Cmdlet |脚本|外部脚本 |应用 |配置

https://github.com/PowerShell/PowerShell/blob/master/src/System.Management.Automation/engine/CommandInfo.cs#L23

© www.soinside.com 2019 - 2024. All rights reserved.