Using PowerShell, we define the model, interface and style of the disk partitions, MBR or GPT.
powershell "Get-Disk | Format-Table -AutoSize Number, FriendlyName, @{n='Size(GB)';e={[math]::Round($_.Size/1GB,2)}}, PartitionStyle, BusType"
Using PowerShell, we define the model, interface and style of the disk partitions, MBR or GPT.
powershell "Get-Disk | Format-Table -AutoSize Number, FriendlyName, @{n='Size(GB)';e={[math]::Round($_.Size/1GB,2)}}, PartitionStyle, BusType"