Skip to content

Instantly share code, notes, and snippets.

@jcefoli
Created February 4, 2020 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcefoli/e6014cf5e9f64d30a364fbdfa478a814 to your computer and use it in GitHub Desktop.
Save jcefoli/e6014cf5e9f64d30a364fbdfa478a814 to your computer and use it in GitHub Desktop.
Pause Script When Run Locally But not Remotely
#Add to end of script
if ($PSSenderInfo) {
#Script was launched remotely. Do Not Pause
}
else {
#Script is running locally, pause
[void](Read-Host 'Press Enter to continue')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment