如何在远程服务器上的D:/驱动器的用户计算机上创建快捷方式链接

时间:2013-02-05 07:30:23

标签: windows batch-file sharing administration

我有几个远程服务器,我需要创建快捷方式并将这些快捷方式放在一个文件夹中。并将其放在用户计算机中,这样当用户点击快捷方式时,用户将获得D:\驱动程序的资源管理器远程服务器。请帮助这方面

1 个答案:

答案 0 :(得分:1)

这里有一些示例vbscript,我认为这样做的伎俩。 (credit where credit is due

Set oShell = CreateObject("WScript.Shell")

sAllUsersDesktopPath = oShell.SpecialFolders("AllUsersDesktop")

sWinSysDir = oShell.ExpandEnvironmentStrings("%SystemRoot%\System32")

Set oShortCut = oShell.CreateShortcut( _
         sAllUsersDesktopPath & "\D Drive on gibson.lnk")

oShortCut.TargetPath = sWinSysDir & "\Explorer.exe"
oShortCut.Arguments = "\\servername\d$"
oShortCut.IconLocation = sWinSysDir & "\Shell32.dll,10"
oShortCut.Save

根据需要更改oShortCut.Arguments值以指向服务器上的相应共享,并更改gibson上的" D驱动器"必要时命名。将其保存为.vbs文件,并使用cscript或wscript执行它。

或者您可以尝试使用免费软件shortcut.exe from Optimum X