This is an open-source program that allows you to save terminal commands. (Python required).
pip3 install keep
keep init
keep new
keep list
keep grep "regex pattern"
You can also save these commands to Github Gist. On Github, create a personal access token that allows access to ‘Create Gist’. Then run the command keep github_token. This will prompt you to enter the token, then you can do keep push and keep pull.
# In linux, equivalent to cat
type <filepath>
cd
cd ..
# In linux, equivalent to ls
dir
echo <Insert Text Here> >> <filename>
mkdir
rmdir /S /Q <path\to\folder>
/S Deletes all files and folders in subdirectories/Q Executes the command without asking for confirmationdel
robocopy <source> <destination> /E /MOV
/E Copies the subdirectories, including empty ones./MOV Deletes originals after copying.# WLAN AutoConfig service must be running
netsh wlan show profile name
# findstr Key is case-sensitive
# WLAN AutoConfig service must be running
netsh wlan show profile name="<WiFi profile name>" key=clear | findstr Key
wmic bios get serialnumber
manage-bde -protectors <DRIVE> -get
<DRIVE> is 'C:'CertUtil -hashfile <path\to\iso> SHA256
cd /d C:
cd Windows/System32
diskpart
list volume
# Locate drive with 'Windows'
exit
copy sethc.exe ..
copy cmd.exe sethc.exe
wpeutil reboot
net user <username> <password>
net user <username> <password> /add
net localgroup Administrators <username> /add
Robocopy C:\Windows C:\Windows\System32 sethc.exe /B
net user
# Use * instead of password to enter securely
net user <username> <password> /add
net user <username> /active:yes
net localgroup <groupname> <username> /add
net localgroup <groupname> <username> /delete