Advertisement
metalx1000

list of windows cmd commands

Aug 4th, 2024
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #windows Commands
  2.  
  3. #show all saved wifi access points
  4. netsh wlan show profile
  5.  
  6. #show wifi passwords
  7. netsh wlan show profile "<SSID>" key=clear
  8.  
  9. #dump all wifi passwords that are stored
  10. https://pastebin.com/rwsWgNPL
  11.  
  12. #mount a directory as a drive
  13. subst s: "c:\folder"
  14.  
  15. #unmount directory
  16. subst /d s:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement