Um schnell mal eine Datei anzulegen kann folgendes Powershell-Script verwendet werden:
$path = “c:\tmp\testfile.txt”
$file = [io.file]::Create($path)
$file.SetLength(1gb)
$file.Close()
Quelle: https://abstractspaces.wordpress.com/2012/02/28/creating-large-dummy-testing-files/