Fill up disk space for testing

Here's some options for filling disks up when testing low disk space alerts in SCOM:

# 1 - fsutil

This will create a 1gb file:

fsutil file createnew c:\temp\test.txt 1000000000

# 2 - File copy

This will copy the file 1.test nine times:

FOR /L %i IN (2,1,10) DO copy 1.test %i.test

Comments