vote up 1 vote down star

Hi,

I would like to create a shortcut on the desktop using VBScript code. I have a virtual Drive in my computer. (Virtual Drive is like G drive) I want this shortcut to explore that Drive directly. For this I find out that Shortcut with following string as a TargetPath would work for me:

C:\WINDOWS\explorer.exe /n,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{89214D20-CAC1-4A33-8DF4-BD9D18A996B9}

While creating shortcut using vb script I need to enclose above string in " ", which don't work for me. I need to delete " " from the Target of the created Shortcut only then it works. Is there any way so that I can create shortcut programmatically, that can explore the virtual drive (available in my system). I need to get it in Vista OS.

Regards Sumeet Nandan Garg

flag

2 Answers

vote up 1 vote down check

I am generting .lnk file programmatically now using Win32 method i.e. (IWshShortcut)shell.CreateShortcut() to create the Shortcut file. And it works like charm. Thanks.!!

link|flag
vote up 2 vote down

Google gives a lot of interesting result. For example, this - with P/Invoke calls, seems to be an answer. (this is for your post tag .NET)

Here an example for VBScript:

Set shell = WScript.CreateObject("WScript.Shell")
Set link= shell.CreateShortcut("Explorer.lnk")
link.TargetPath = "c:\windows\explorer.exe"
link.Save
link|flag
Seems like I am not able to put the exact situation I am facing. I need to set TargetPath with no quotes (") programmatically. – Sumeet Apr 8 at 13:00
What do you mean by "no quotes"? What problem with it? Do you have some string variable? – abatishchev Apr 8 at 13:12
I need to put this in Target of the Shortcut: C:\WINDOWS\explorer.exe /n,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{89214D20-CAC1-4A33-8DF4-BD9D18A996B9} That too without enclosing in ". – Sumeet Apr 8 at 13:54
First and last quotes means only string variable and will not be put in target shortcut target – abatishchev Apr 8 at 14:31
when I check the property of the shortcut file manually. I found that the above string is enclosed with ". Hence, I have to remove them explicitly get it working. – Sumeet Apr 8 at 15:31
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.