Skip to content

Instantly share code, notes, and snippets.

@MCKLMT
Created May 17, 2017 09:25
Show Gist options
  • Save MCKLMT/b61c19cfd995930912233b595c24a747 to your computer and use it in GitHub Desktop.
Save MCKLMT/b61c19cfd995930912233b595c24a747 to your computer and use it in GitHub Desktop.
Get-Disk | `
Where partitionstyle -eq 'raw' | `
Initialize-Disk -PartitionStyle MBR -PassThru | `
New-Partition -AssignDriveLetter -UseMaximumSize | `
Format-Volume -FileSystem NTFS -NewFileSystemLabel "datadisk" -Confirm:$false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment