H
Haroon Rehman
Dear Members,I want to know if there is any command that can show me writable directories in CMD and Powershell. ######Just like we can use in Linux: find / -type d -writable -print Find Writable Directories ( find / -writable 2>/dev/null | cut -d "/" -f 2 | sort -u)• find / -writable 2>/dev/null | grep usr | cut -d "/" -f 2,3 | sort -u Find Writable SubFolder• find / -writable 2>/dev/null | cut -d "/" -f 2,3 | grep -v proc | sort -u Find Writable Folder and get rid of running processes in the result########If there is any command that I can run in windows through CMD or Powershell so
Continue reading...
Continue reading...