Click here to Skip to main content
15,885,244 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get the location path of disk part using powershell.
this is the information that I need.

TOSHIBA DT01ACA100
Disk ID: {64EF7D77-125B-48A5-8398-8B08E0ADE3E9}
Type   : RAID
Status : Online
Path   : 0
Target : 4
LUN ID : 0
Location Path : PCIROOT(0)#PCI(1F02)#RAID(P00T04L00)
Current Read-only State : No
Read-only  : No
Boot Disk  : No
Pagefile Disk  : No
Hibernation File Disk  : No
Crashdump Disk  : No
Clustered Disk  : No


Actually I just need the Location Path though. But I can not get it using PowerShell.

What I have tried:

I use Get-PhysicalDisk, but it does not include the Location Path.
Posted
Updated 5-Nov-19 2:52am

Try the following:
Get-WmiObject -Class Win32_DiskDrive | Format-List *
 
Share this answer
 
Comments
Member 14156312 5-Nov-19 8:42am    
I tried this, but It does not include Location Path
Richard MacCutchan 5-Nov-19 9:33am    
Sorry, I thought the PNPDeviceID may have been enough. The information is available in device manager but I do not know what API calls allow access to that information.
Richard MacCutchan 5-Nov-19 12:41pm    
How did you get the listing in your question?
Member 14156312 5-Nov-19 21:07pm    
I use Diskpart, then Select disk, and Detail Disk. I do this in CMD
Richard MacCutchan 6-Nov-19 4:02am    
Sorry, but I cannot find any powershell command that provides that information.
Get-ChildItem -Path C:\Diskpart.exe -Recurse


But that gives you Access Errors and also ALL occurences of Diskpart

Ofc you could just do something like
Get-ChildItem -Path $Env:Windir\Diskpart.exe -Recurse
to make sure it's at least in the win directory. It SHOULD always be in system32 though

Get-ChildItem -Path $Env:Windir\System32\Diskpart.exe
but assuming this makes the file search obviously unnecessary
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900