Skip to content

Instantly share code, notes, and snippets.

@mczerniawski
Created December 11, 2017 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mczerniawski/b48f6aebbf547ce7f591783e3d06c94f to your computer and use it in GitHub Desktop.
Save mczerniawski/b48f6aebbf547ce7f591783e3d06c94f to your computer and use it in GitHub Desktop.
$driveLetter = (get-disk | Where-Object {$_.PartitionStyle -eq 'RAW'} | Initialize-Disk -PartitionStyle GPT -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize ).DriveLetter
Format-Volume -NewFileSystemLabel 'DATA' -FileSystem 'ReFS' -DriveLetter $driveLetter -Force -confirm:$false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment