Download a file and save locally using command line to invoke powershell

powershell -Command "Invoke-WebRequest 'https://live.crestline.net/dl/myfile.txt' -outfile 'c:\temp\myfile.txt'"

Similar command but works with powershell 2.0 (older machines)

powershell -Command "(New-Object Net.WebClient).DownloadFile('https://live.crestline.net/dl/myfile.txt', 'c:\temp\myfile.txt')"

Get computer information, such model number, and mnufacturer

wmic computersystem get model,name,manufacturer,systemtype

Get top 10 process by usage

powershell -Command "Get-Process | Sort-Object CPU -desc | Select-Object -first 10 | Format-Table  CPU,ProcessName"