我已经有一个已经有我的映射驱动器信息的bat文件,但是有没有办法让bat重命名驱动器,所以当“我的电脑”中的它们将被正确贴上标签时?
答案 0 :(得分:0)
您可以像这样使用comobject(powershell代码):
$desc= "MyNetworkshare" # This is the label for your unit
$mDrive = "H:\" #this is your unit (any letter you have..)
$oShell = new-Object -com Shell.Application
$oShell.NameSpace($mDrive).Self.Name = $Desc