Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $Name = Read-Host -Prompt 'What is your name?'
- Write-Host "Hello $Name"
- $OpenGoogle = Read-Host -Prompt 'Would you like to open Google?'
- IF ($OpenGoogle -eq 'yes')
- {
- Start-Process 'https://www.google.com'
- }
- EXIT;
Advertisement
Add Comment
Please, Sign In to add comment