Skip to content

Instantly share code, notes, and snippets.

@YakDriver
Created March 23, 2018 11:36
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 YakDriver/53ecd711eeb196ab24ea62c2132029d4 to your computer and use it in GitHub Desktop.
Save YakDriver/53ecd711eeb196ab24ea62c2132029d4 to your computer and use it in GitHub Desktop.
Creates a file filled with null for testing
$f = new-object System.IO.FileStream C:\Temp\test.dat, Create, ReadWrite
$f.SetLength(40MB)
$f.Close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment