Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Windows Administration (quick-n-dirty) ====== * [[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 ===== * #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. <code> /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 </code> qnd/windows_administration.txt Last modified: 2022/10/04 22:16by mgupton