Created
June 13, 2017 13:55
-
-
Save johnkattenhorn/e332eae0bfd35daf0d2b9fe7f235123e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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