Skip to content

Instantly share code, notes, and snippets.

@dominicusin
Last active August 15, 2023 22:20
Show Gist options
  • Save dominicusin/6d204b10f018be92b47d0f42ff07182b to your computer and use it in GitHub Desktop.
Save dominicusin/6d204b10f018be92b47d0f42ff07182b to your computer and use it in GitHub Desktop.
win fod
Get-WindowsCapability -Online -LimitAccess `
| where { $_.Name -notlike 'Lang*' -and $_.State -eq 'NotPresent' -and $_.Name -notlike 'Windows.Kernel.LA57*' -and $_.Name -notlike 'Accessibility.Braille*' } | Add-WindowsCapability -Online -Source D:\LanguagesAndOptionalFeatures -Verbose
Get-WindowsCapability -Online -LimitAccess `
| where { $_.Name -like '*Font*' -and $_.State -eq 'NotPresent' } |Add-WindowsCapability -Online -Source D:\LanguagesAndOptionalFeatures -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment