我已经从这里安装了Powershell Core。 但是在这个PowerShell核心中,Get-Counter命令不起作用。
有没有办法在PowerShell Core中运行Get-Counter命令。
如果 Get-Counter 命令在 Windows 的预构建 PowerShell 上不起作用,您可以从以下 URL 添加所需命令的包:
https://www.powershellgallery.com
有一个用于 PS Core 的 Windows 兼容性模块:
https://devblogs.microsoft.com/powershell/announcing-general-availability-of-the-windows-compatibility-module-1-0-0/
您可以从 PSGallery、Enable-PSRemoting
安装,然后从 PS Core 运行Invoke-WinCommand {get-counter}
。