qnd:windows_administration

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

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 mguptonqnd:windows_administration [2022/10/04 22:16] (current) mgupton
Line 1: Line 1:
 ====== Windows Administration (quick-n-dirty) ====== ====== Windows Administration (quick-n-dirty) ======
   * [[qnd:Windows Keyboard Shortcuts]]   * [[qnd:Windows Keyboard Shortcuts]]
 +
 +====== User Management ======
 +Get domain group membership info for specified user
 +<code>
 +net user USERNAME /domain
 +</code>
 +
 +====== Windows Feature Installation ======
 +
 +=== Examples ===
 +#powershell
 +<code powershell>
 +PS> $servers = ('server1', 'server2')
 +PS> foreach ($server in $servers) {Install-WindowsFeature -ConfigurationFilePath D:\ConfigurationFiles\ADCSConfigFile.xml -ComputerName $server}
 +</code>
 +
 +<code powershell>
 +PS> $servers = ('server1', 'server2')
 +Invoke-Command $nodes {Install-WindowsFeature Failover-Clustering -IncludeAllSubFeature -IncludeManagementTools}
 +</code>
  
 ===== Create Reminders/Notifications ===== ===== Create Reminders/Notifications =====
  • qnd/windows_administration.1634560690.txt.gz
  • Last modified: 2021/10/18 12:38
  • by mgupton