Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a mount point using Powershell. it's done locally, and here is the code & issue i'm having.

$choice = "t"
New-Item -ItemType directory -Path "E:\Data\Riptide\Ariis\Ris\Docs\interPrimary1\"
$orgdrive = "E:\Data\Riptide\Ariis\Ris\Docs\interPrimary1\"
$driveLetter= $Choice + ":\"
$driveinfo=get-wmiobject win32_volume | where { $_.driveletter -eq $choice + ":" } | select-object DeviceID
Mountvol $orgdrive $driveinfo

When executed, I get that the parameter is incorrect.

Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

You just have to try :

mountvol $orgdrive $driveinfo.DeviceID

For the future you can test :

$driveinfo| Get-Member

You can find here a tool that allow you to test the command line parameters.

share|improve this answer
Thanks! that worked exactly as I hoped... – user1442336 Jul 18 '12 at 20:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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