$creds = get-credential
$password = ConvertTo-SecureString '<PASSWORD>' -AsPlainText -Force
$creds = New-Object System.Management.Automation.PSCredential('<USERNAME>', $password)
Get-Childitem -Path C:\ -Force -Include <FILENAME OR WORD TO SEARCH> -Recurse -ErrorAction SilentlyContinue
$sess = New-PSSession -Credential $creds -ComputerName <IP>
Invoke-Commannd -ScriptBlock {COMMAND} -Session $sess
Invoke-Commannd -Filepath <PATH TO SCRIPT> -Session $sess
Copy-Item -ToSession $sess -Path <PATH> -Destination <DEST> -verbose