Get-Counter 命令在 Powershell Core 中不起作用

Get-Counter Command is not working in Powershell Core

我已经从 Here 安装了 Powershell Core。但在此 PowerShell 核心中 Get-Counter 命令不起作用。

有什么方法可以在 PowerShell Core 中执行 运行 Get-Counter 命令。

如果 Get-Counter 命令在 windows 的预构建 PowerShell 上不起作用,您可以从下面添加您想要的命令包 URL:

https://www.powershellgallery.com

PS 核心有一个 Windows 兼容性模块:

https://devblogs.microsoft.com/powershell/announcing-general-availability-of-the-windows-compatibility-module-1-0-0/

您可以从 PS 库 Enable-PSRemoting 安装,然后 运行 Invoke-WinCommand {get-counter} 从 PS 核心安装。