Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Invoke-Exec64(){
  2.     Write-Host "This string is not found in memory";
  3.     Write-Host "Check with Process Explorer the memory strings of the process 'PowerShell'"
  4.     Write-Host "The PowerShell process is running 64-bit architecture"
  5. }
  6. function Invoke-Exec32(){
  7.     Write-Host "This string is not found in memory";
  8.     Write-Host "Check with Process Explorer the memory strings of the process 'PowerShell'"
  9.     Write-Host "The PowerShell process is running 32-bit architecture"
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement