You are here

NSIS Help Plz (TY)

5 posts / 0 new
Last post
David Dixon II
David Dixon II's picture
Offline
Last seen: 2 years 12 months ago
Developer
Joined: 2007-06-11 22:54
NSIS Help Plz (TY)

Welcome To The New Forum Page. Please Help Me Solve My Friends Computer Issue.

Moved As Requested By Patrick Patience.

my friend is having an issue, yahoo messenger wont open her links when she clicks them. so i created an NSIS app that will open internet explore with the link she clicked.

after creating a NSIS Laucher, when she clicks on the links in yahoo messenger, internet explore lauches (well at least it launched :)) but the page she clicked on
doesnt appear, just her homepage. and i need the page she clicked opened.

so can u guys help me here?

i need a code to allow my laucher to open the link clicked. ty for your help all
you portableapp'ers out there Smiling

wraithdu
Offline
Last seen: 11 years 8 months ago
Developer
Joined: 2007-06-27 20:22
Ahh, sorry, I didn't

Ahh, sorry, I didn't understand your post. I'll have something up for you today.

wraithdu
Offline
Last seen: 11 years 8 months ago
Developer
Joined: 2007-06-27 20:22
This should do it -

This should do it -

; **************************************************************************
; *  Compiler Flags (to reduce executable size, saves some bytes)
; **************************************************************************
SetDatablockOptimize on
SetCompress force
SetCompressor /SOLID /FINAL lzma

; **************************************************************************
; *  Includes
; **************************************************************************
!include "FileFunc.nsh" ; add header for file manipulation
!insertmacro "GetParameters" ; add function for retrieving command line parameters

; **************************************************************************
; *  Runtime Switches
; **************************************************************************
CRCCheck On ; do CRC check on launcher before start ("Off" for later EXE compression)
WindowIcon On ; show icon of the launcher
SilentInstall Silent ; start as launcher, not as installer
AutoCloseWindow True ; automatically close when finished
XPStyle On ; XP style dialogs

; **************************************************************************
; *  Set basic information
; **************************************************************************
Name "IE Link Launcher"
OutFile "FirefoxPortable.exe"
RequestExecutionLevel user

; **************************************************************************
; *  Main section
; **************************************************************************
Section
	${GetParameters} $R0
	SetOutPath "$PROGRAMFILES\Internet Explorer"
	Exec '"$PROGRAMFILES\Internet Explorer\iexplore.exe" $R0'
SectionEnd
David Dixon II
David Dixon II's picture
Offline
Last seen: 2 years 12 months ago
Developer
Joined: 2007-06-11 22:54
WOW

tysvm Smile it works. i will tell my friend that u did the open IE with link part. Smile she will be happy.

Na na na, come on!

wraithdu
Offline
Last seen: 11 years 8 months ago
Developer
Joined: 2007-06-27 20:22
I'm glad it worked for you!

I'm glad it worked for you!

Log in or register to post comments