vote up 0 vote down star

Hi!

I have multiple volumes (as nearly everybody nowadays): on Windows they end up specified as C:, D: and so on. How do I list these all like on a Unix machine with "ls /mnt/" with Powershell?

flag

get-psdrive will return this Name Provider Root CurrentLocation ---- -------- ---- --------------- A FileSystem A:Alias Alias C FileSystem C:\ scripts – streetparade Nov 2 at 21:02

3 Answers

vote up 2 vote down check

To get all of the file system drives, you can use the following command:

gdr | where {$_.Provider.Name -eq "FileSystem"}

gdr is an alias for Get-PSDrive, which includes all of the "virtual drives" for the registry, etc.

link|flag
damn you were faster than me :-) – streetparade Nov 2 at 21:04
vote up 1 vote down

alt text

PS Function:> get-psdrive

link|flag
That's a nifty config for the prompt. Would you mind sharing the details of that? – wishi_ Nov 2 at 22:40
vote up 2 vote down

Firstly, on Unix you use mount, not ls /mnt: many things are not mounted in /mnt.

Anyhow, there's the mountvol DOS command, which continues to work in Powershell, and there's the Powershell-specific Get-PSDrive.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.