Posted On August 28, 2020

PowerShell: Quick Exercise On Disks Operations

kimconnect 0 comments
blog.KimConnect.com >> Windows >> PowerShell: Quick Exercise On Disks Operations
# View disks on the system
get-disk

Number Friendly Name Serial Number                    HealthStatus         OperationalStatus      Total Size Partition
                                                                                                             Style
------ ------------- -------------                    ------------         -----------------      ---------- ----------
0      VMware Vir... 00000000000000000001             Healthy              Online                     200 GB MBR
1      VMware Vir... 00000000000000000002             Healthy              Online                     500 GB MBR

# Set variables
$diskNumber=1
$driveLetter='D'

# Wipe entire disk and recreate it
# WARNING: the following lines will destroy all data on the selected disk index number set above!
Clear-Disk -Number $diskNumber -RemoveData -RemoveOEM
Initialize-Disk -Number $diskNumber
New-Partition -DiskNumber $diskNumber -UseMaximumSize -IsActive -DriveLetter $driveLetter
format-volume -driveletter $driveLetter

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Typical Group Policies

Printers: set policy to automatically deploy printers, then allow logon to trigger the deployment and…

How to Add Windows Administrative Templates to Domain Group Policies

Three Quick Steps to Adding ADMX Administrative templates are the blue prints of Windows machines.…

A Comment on SSD Hardware

There are different types of NAND flash: TLC, MLC, SLC. The Samsung EVO is TLC…