Skip to content

Instantly share code, notes, and snippets.

@mhatreabhay
Last active April 24, 2018 22:19
Show Gist options
  • Save mhatreabhay/b08d17f3ba94045e4639d5c06632ebf8 to your computer and use it in GitHub Desktop.
Save mhatreabhay/b08d17f3ba94045e4639d5c06632ebf8 to your computer and use it in GitHub Desktop.
setup windows managed disk [Drive letter Y]
Get-Disk | `
Where partitionstyle -eq 'raw' | `
Initialize-Disk -PartitionStyle MBR -PassThru | `
New-Partition -UseMaximumSize -DriveLetter Y | `
Format-Volume -FileSystem NTFS -NewFileSystemLabel "datadisk" -Confirm:$false
Exit 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment