Skip to content

Instantly share code, notes, and snippets.

@mtboren
Created August 8, 2019 23:19
Show Gist options
  • Save mtboren/b59929b1309164a32d75be0265cb918a to your computer and use it in GitHub Desktop.
Save mtboren/b59929b1309164a32d75be0265cb918a to your computer and use it in GitHub Desktop.
General snippets and nugglets for various things
## various things that I find useful on ocassion
## For RSAT types of things already available on Windows 10 at/newer than October 2018 Update, "RSAT is included as a set of "Features on Demand" right from Windows 10". One does not download the RSAT package from microsoft.com, just add the Windows capability
## see following for more info: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/features-on-demand-non-language-fod#remote-server-administration-tools-rsat
## get the available capabilities
Get-WindowsCapability -Online
## get the RSAT ActiveDirectory capability
Get-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS*
## add said capability
Get-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS* | Add-WindowsCapability -Online
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment