Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

502 total results found

McAfee - Walkthroughs

Main

Docker - Cheatsheet

Add Local Account To DRAC

Dell - One Liners iDRAC

racadm config -g cfgUserAdmin -o cfgUserAdminUserName -i 2 USERNAME racadm config -g cfgUserAdmin -o cfgUserAdminPassword -i 2 PASSWORD  

Synology - Cheatsheet

Email Management

Microsoft 365 - Cheatsheet

Add Multiple DNS Servers Via Command Line

Windows - One Liners Network

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

Pentesting Notes and Snippets - Cheatsheet

Compress WinSxS Folder

Windows - Scripts File System - Windows

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

Windows - Scripts Security

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

Windows - One Liners Network

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

Windows - One Liners Applications

gwmi win32_product | ft name, version, ident*

Replication

TrueNAS - Cheatsheet

List and Logoff RDP Users Remotely

Windows - One Liners Security

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

VMWare - Cheatsheet

Ping With Log

Windows - Scripts System

@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 ( ...