Forum Discussion
Mervin1603
May 20, 2021Copper Contributor
Delete Spanned Drives (Dynamic Volumes) via Powershell
Hello guys, I am relatively new to PowerShell, and I've done some research but still cannot find an answer to that. Is there a way to delete a Spanned Volume via PowerShell? I am able to...
Seshadrr
May 20, 2021Iron Contributor
using command
diskpart
list volume
select volume <number>
delete volume
Using Powershell
Get-Volume
drive letter (ex: "E")
Remove-Partition -DriveLetter "<Drive Letter>"
- Mervin1603May 20, 2021Copper Contributor
Hi Seshadrr,
Thank you for your response.I tried the PowerShell and it doesn't work:
As you can see, Drive Letter J is my Spanned Drive.
Can you help?