Skip to content

Instantly share code, notes, and snippets.

@webtroter
Created November 30, 2021 18:29
Show Gist options
  • Save webtroter/0af5d3346f2358bb27005058d9625542 to your computer and use it in GitHub Desktop.
Save webtroter/0af5d3346f2358bb27005058d9625542 to your computer and use it in GitHub Desktop.
Fill Disk
function FillDisk {
param (
$FillLimit = 20MB
)
$remaining = (Get-Volume C | Select-Object -ExpandProperty SizeRemaining) - $FillLimit
$filename = "vss-block_{0}G.dummy" -f ([math]::Round($remaining/1GB, 2))
& fsutil file createnew $filename $([math]::Floor($remaining))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment