====== Windows Administration (quick-n-dirty) ======
* [[qnd:Windows Keyboard Shortcuts]]
====== User Management ======
Get domain group membership info for specified user
net user USERNAME /domain
====== Windows Feature Installation ======
=== Examples ===
#powershell
PS> $servers = ('server1', 'server2')
PS> foreach ($server in $servers) {Install-WindowsFeature -ConfigurationFilePath D:\ConfigurationFiles\ADCSConfigFile.xml -ComputerName $server}
PS> $servers = ('server1', 'server2')
Invoke-Command $nodes {Install-WindowsFeature Failover-Clustering -IncludeAllSubFeature -IncludeManagementTools}
===== Create Reminders/Notifications =====
* #batch
* [[https://den.dev/blog/powershell-windows-notification/]]
* [[https://www.howtogeek.com/136894/how-to-create-popup-reminders-with-no-additional-software/]]
Example of using scheduled tasks that runs //cmd.exe// with the following arguments.
/c color /nobreak 2f&TITLE Day Log Reminder&ECHO.&ECHO.&ECHO It is currently %TIME% &ECHO.&ECHO.&ECHO Time to update Day Log &TIMEOUT 120