Skip to content
⌘ NSIS Forum Archive

How to Create Such a Shortcut

10 posts

jiake#

How to Create Such a Shortcut

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#
Like this:
Afrow UK#
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#
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#
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#
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:

Attachments

  • 3.jpg(36.5 KB, 690 views)
  • 3.jpg(36.5 KB, 690 views)
jiake#
When click the first botton “Connect”,it show the same as double click the short on desktop.
jiake#
I solve the problem:

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