PowerShell中的挂载点

时间:2012-07-18 17:42:06

标签: powershell mount-point

我正在尝试使用Powershell创建一个挂载点。它是在本地完成的,这里是代码&问题我有。

$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

执行时,我得到参数不正确。

提前致谢。

1 个答案:

答案 0 :(得分:0)

你只需要尝试:

mountvol $orgdrive $driveinfo.DeviceID

将来你可以测试:

$driveinfo| Get-Member

您可以找到here一个允许您测试命令行参数的工具。