VBS文件 - 将InputBox输入传递给SLinkFile?

时间:2014-05-15 13:51:49

标签: vbscript shortcut

所以,我真的没有vbs的经验,我知道的最多就是在访问中编写非常基本的字符串。所以,花了一个小时试图解决这个问题之后,我来这里寻求帮助。

我要做的是写一个.vbs脚本,提示用户输入本地机器的IPAddress,然后将其修改为oLink.TargetPath(在=之后)

到目前为止我只有:

Dim IP_Address 
Ip_Address = Inputbox("Enter The Machine IP")

Set oWS = WScript.CreateObject("WScript.Shell")
sLinkFile = "C:\Dropbox\Personal\Latitude e6430 - Work\Desktop\timekeeping.LNK"
Set oLink = oWS.CreateShortcut(sLinkFile)
    oLink.TargetPath = "http://w-sch-fooddb:8675/lfserver/timecard?ip_address="
    oLink.Description = "Clock in or out"   
    oLink.IconLocation = "%SystemRoot%\system32\SHELL32.dll, 111"
oLink.Save

1 个答案:

答案 0 :(得分:0)

字符串连接是通过& amp;操作者:

>> Ip_Address = "1.2.3.4"
>> TargetPath = "http://w-sch-fooddb:8675/lfserver/timecard?ip_address=" & Ip_Address
>> WScript.Echo TargetPath
>>
http://w-sch-fooddb:8675/lfserver/timecard?ip_address=1.2.3.4
>>