echo off
::断开虚拟盘。
for /f "usebackq delims=: tokens=2" %%i in (`iscsicli SessionList^|find /i "Session Id"`) do iscsicli LogoutTarget %%i
::连接虚拟盘,把192.168.1.15改为你的服务器IP。
iscsicli AddTargetPortal 192.168.1.15 3260
iscsicli LoginTarget iqn.2005-02.com.ricecake.iscsi:00 T * * * * * * * * * * * * * * * 0
::修改盘符,例子中是把F盘挂在为Q盘,根据你的需要修改。
set old=F:
set new=Q:
for /f %%i in ('mountvol %old% /l') do set "vol=%%i"
mountvol %old% /d
mountvol %new% %vol%
popd