A můžeš prosím vyzkoušet i tento kód?
for ($i=1; $i -le 4; $i++) {
$out = new-object byte[] 2600; (new-object Random).NextBytes($out);
$fn = [System.IO.Path]::GetRandomFileName();
[IO.File]::WriteAllBytes("$fn.txt", $out);
Remove-Variable out;
Remove-Variable fn;
}