Guest User

Untitled

a guest
Sep 27th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $Name = Read-Host -Prompt 'What is your name?'
  2. Write-Host "Hello $Name"
  3.  
  4. $OpenGoogle = Read-Host -Prompt 'Would you like to open Google?'
  5. IF ($OpenGoogle -eq 'yes')
  6. {
  7.     Start-Process 'https://www.google.com'
  8. }
  9.  
  10. EXIT;
Advertisement
Add Comment
Please, Sign In to add comment