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

Linux: How to Create RSA Keys and SSH Agent

Step 1: Generate RSA Key # Command to generate rsa key for Ubuntu Linuxssh-keygen -t…

File Services

DFS Considerations: 1. NTFS permissions still apply. One must set additional folder security settings on…

How to check to see if your email domain is blacklisted

Find your IP address: https://www.whatismyip.com/ Test the real-time spam list matching your IP:   Check…