Skip to content

Instantly share code, notes, and snippets.

@ScribbleGhost
Created January 26, 2023 10:09
Show Gist options
  • Save ScribbleGhost/89fb6b8e98f737f8c22acf4678d2acc7 to your computer and use it in GitHub Desktop.
Save ScribbleGhost/89fb6b8e98f737f8c22acf4678d2acc7 to your computer and use it in GitHub Desktop.
Generate 34 GB of random data
for ($i=1; $i -le 34; $i++){$out = new-object byte[] 1073742000; (new-object Random).NextBytes($out);[IO.File]::WriteAllBytes("random_data_file$i.txt", $out)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment