Advanced Search
Search Results
502 total results found
McAfee - Walkthroughs
Main
Add Local Account To DRAC
racadm config -g cfgUserAdmin -o cfgUserAdminUserName -i 2 USERNAME racadm config -g cfgUserAdmin -o cfgUserAdminPassword -i 2 PASSWORD
Synology - Cheatsheet
Email Management
Add Multiple DNS Servers Via Command Line
netsh interface ipv4 add dnsserver name="Local Area Connection" address=192.168.100.48 index=2 From https://practical365.com/exchange-server/how-to-add-multiple-dns-servers-to-windows-server-2008-core/
Personal Holiday Wishlists - Ryan
Main
Compress WinSxS Folder
Query service status. Track its state. sc query msiserver sc query TrustedInstaller Stop/disable Windows Installer and Windows Module Installer services sc stop msiserver sc config msiserver start= disabled sc stop TrustedInstaller sc config Tru...
Personal Holiday Wishlists - Kelley
Disable IE ESC using Script on Windows Servers
If you want to disable the IE Enhanced Security on multiple Windows Servers, you can run the below VB Script. This script is provided by Microsoft and works on most of Windows Server operating systems. Perform the following steps to disable Internet Explorer ...
ICACLS Backup/Restore
Open an elevated cmd prompt.Save icacls E:\ /save "E:\ntfsDdrive.txt /t /c Restore icacls E:\ /restore "E:\ntfsDdrive.txt From https://social.technet.microsoft.com/Forums/en-US/8299036a-3cfe-40d7-beb8-becd2e56c2f4/icacls-syntax-issues-with-backup-restore?f...
List Installed Programs
gwmi win32_product | ft name, version, ident*
Replication
List and Logoff RDP Users Remotely
To get a list of the Remote Sessions in the command window (Get the session Id of user to kick out): qwinsta /server:SERVERIP To disconnect the remote session: rwinsta /server:SERVERIP SESSIONID From http://superuser.com/questions/62498/kicking-logging-out...
Windows - Cheatsheet
vSAN
Ping With Log
@echo off set /p host=host Address: set logfile=Log_%host%.log echo Target Host = %host% >%logfile% for /f "tokens=*" %%A in ('ping %host% -n 1 ') do (echo %%A>>%logfile% && GOTO Ping) :Ping for /f "tokens=* skip=2" %%A in ('ping %host% -n 1 ') do ( ...