Skip to content

Instantly share code, notes, and snippets.

@haikelfazzani
Last active December 23, 2019 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haikelfazzani/8f90749e0a14a56fe255a3fa7d342a4d to your computer and use it in GitHub Desktop.
Save haikelfazzani/8f90749e0a14a56fe255a3fa7d342a4d to your computer and use it in GitHub Desktop.
some windows commands (terminal) - rm, get get wifi password
-- your-WiFi-name
Netsh WLAN show interfaces
-- wifi password
netsh wlan show profile your-WiFi-name key=clear
-- remove folder
if exist folderName ( rmdir /s/q folderName )
or
rd /S nonemptydir
/s : Removes the specified directory and all subdirectories including any files. Use /s to remove a tree.
/q : Runs rmdir in quiet mode. Deletes directories without confirmation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment