Find directory size

find size of each directory in ‘/’ order by size
du -h --max-depth=1 / | sort -nr

find size of each directory in current directory order by size
du -h --max-depth=1 | sort -nr

Set https proxy variable on windows

 Check variables:  [System.Environment]::GetEnvironmentVariable("HTTP_PROXY","user"); [System.Environment]::GetEnvironme...

Mais vistos