PDA

View Full Version : How to Create Such a Shortcut


jiake
30th October 2007, 09:33
I'm Chinese,many nouns in computer,I don't know how to express in English,so I give a picture.

How to Create Such a Shortcut:

jiake
30th October 2007, 09:39
Like this:

Afrow UK
30th October 2007, 11:19
Try the ShellLink plug-in (http://nsis.sourceforge.net/ShellLink_plug-in).

Stu

Anders
30th October 2007, 12:50
It might even be possible to just copy the .lnk file

Afrow UK
30th October 2007, 13:14
I have noticed the shortcut will have a GUID as a path. You can try that GUID as the path when creating the shortcut with CreateShortCut, or try copying the .lnk file as Anders suggests.

Stu

Anders
30th October 2007, 13:52
I suspect you would need to build a full guid path, and not just the guid for the connection, something like, ::{mycomputerguid}\::{controlpanel}\::{netconnections}\::{connectionguid} or something horrible like that, and the guid for the actual connection might change from machine to machine (that means a copy of a .lnk from another system might not work)

jiake
31st October 2007, 07:26
CreateShortCut $DeskTop\PPTP-VPN.lnk "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{网络连接}\::{BA126AD7-2166-11D1-B1D0-00805FC1270E}"

CreateShortCut $DeskTop\PPTP-VPN.lnk "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{NetConnections}\::{BA126AD7-2166-11D1-B1D0-00805FC1270E}"

This will create an incorrect shortcut.

jiake
31st October 2007, 07:36
Open the Shortcut of a NetConnection with NotePad,it content this path:

%AppData%\Microsoft\Network\Connections\Pbk\rasphone.pbk

%AllUsersProfile%\Application Data\Microsoft\Network\Connections\Pbk\rasphone.pbk

Run %AppData%\Microsoft\Network\Connections\Pbk\rasphone.pbk,it shows this:

jiake
31st October 2007, 07:39
When click the first botton “Connect”,it show the same as double click the short on desktop.

jiake
31st October 2007, 08:23
I solve the problem:

CreateShortCut “ADSL.lnk” "%Windir%\system32\rasphone.exe -d ADSL"