Skip to content

Instantly share code, notes, and snippets.

@gabrielrojasnyc
Created March 27, 2016 20:51
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 gabrielrojasnyc/1c169c876cf5eacaa92e to your computer and use it in GitHub Desktop.
Save gabrielrojasnyc/1c169c876cf5eacaa92e to your computer and use it in GitHub Desktop.
powershellsystemclass
$data = [system.IO.Streamwriter] "C:\Scripts\sample2.txt"
1..10000 | foreach {
$data.writeline($_)
}
$data.Close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment