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.