PowerShell 命令來獲取已啟用的功能列表:
powershellCopy Code
Get-WindowsOptionalFeature -Online | Where-Object { $_.State -eq "Enabled" }
請在 PowerShell 視窗中執行該命令,它應該能夠列出已啟用的 Windows 功能
命令來獲取 Windows 功能的詳細資訊,包括其狀態:
shellCopy Code
DISM /Online /Get-Features /Format:Table
這將以表格形式顯示所有功能及其狀態。你可以檢查列表,找出已啟用的功能。
命令來顯示 Windows 功能列表:
shellCopy Code
DISM /Online /Get-Features
請在命令提示符或 PowerShell 視窗中執行該命令。它將顯示當前 Windows 安裝中的所有啟用和禁用功能的列表,以及它們的狀態。