Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| qnd:windows_administration [2021/10/18 12:38] – ↷ Page moved from wnd:windows_administration to qnd:windows_administration mgupton | qnd:windows_administration [2022/10/04 22:16] (current) – mgupton | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Windows Administration (quick-n-dirty) ====== | ====== Windows Administration (quick-n-dirty) ====== | ||
| * [[qnd: | * [[qnd: | ||
| + | |||
| + | ====== User Management ====== | ||
| + | Get domain group membership info for specified user | ||
| + | < | ||
| + | net user USERNAME /domain | ||
| + | </ | ||
| + | |||
| + | ====== Windows Feature Installation ====== | ||
| + | |||
| + | === Examples === | ||
| + | #powershell | ||
| + | <code powershell> | ||
| + | PS> $servers = (' | ||
| + | PS> foreach ($server in $servers) {Install-WindowsFeature -ConfigurationFilePath D: | ||
| + | </ | ||
| + | |||
| + | <code powershell> | ||
| + | PS> $servers = (' | ||
| + | Invoke-Command $nodes {Install-WindowsFeature Failover-Clustering -IncludeAllSubFeature -IncludeManagementTools} | ||
| + | </ | ||
| ===== Create Reminders/ | ===== Create Reminders/ | ||