Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 25 of 26
Search took 0.00 seconds.
Search: Posts Made By: patelb
Forum: NSIS Discussion 1st October 2008, 23:15
Replies: 4
Views: 13,445
Posted By patelb
Okay a new discovery If I specify the full...

Okay a new discovery

If I specify the full path like this:

ExecWait '"C:\Somefolder\Anotherfolder\Support\dotnetfx3.exe" /a /norestart' $0

Everything works fine, the parameters are...
Forum: NSIS Discussion 1st October 2008, 22:39
Replies: 4
Views: 13,445
Posted By patelb
Sorry there was a mistake in my first post. The...

Sorry there was a mistake in my first post. The second ExecWait call should have been:

ExecWait 'Support\dotnetfx3.exe /q /norestart' $R0.

Also ive already tried this:
ExecWait...
Forum: NSIS Discussion 1st October 2008, 21:09
Replies: 4
Views: 13,445
Posted By patelb
ExecWait with parameters?

My program requires .Net framework so I do a check for it and if its not installed, I install it like so:

File /oname=$PLUGINSDIR\dotnetfx3.exe "..\..\Support\dotnetfx3.exe"

ExecWait...
Forum: NSIS Discussion 9th September 2008, 16:49
Replies: 0
Views: 1,059
Posted By patelb
AccessControl plug-in

Can you use the AccessControl plug-in to grant access rights to folders for given user accounts like Internet Guest Account
, Network Service, etc.? If so how? If I wanted to give Network Service...
Forum: NSIS Discussion 3rd September 2008, 20:41
Replies: 3
Views: 1,543
Posted By patelb
Checking for Ajax

Im making an installer for an application that requires ASP.Net AJAX 1.0 and MySQL .Net data driver. Is there a way to check if these are installed when running an NSIS installer?
Forum: NSIS Discussion 17th July 2008, 18:05
Replies: 3
Views: 1,390
Posted By patelb
Well I cant really run it silently because it...

Well I cant really run it silently because it requires user interaction. Also when you say "pack" do you mean the script of the compiled .exe file?
Forum: NSIS Discussion 17th July 2008, 17:43
Replies: 3
Views: 1,390
Posted By patelb
Question Call another installer

I know this question has probably been asked a million times but I did some searching and could not find the answer. Im writing an installer(Call it Program 1) that requires another program(Call it...
Forum: NSIS Discussion 16th July 2008, 18:55
Replies: 3
Views: 1,384
Posted By patelb
Nevermind, I figured it out. I took the low tech...

Nevermind, I figured it out. I took the low tech way and just wrote the application name to a file and then read from it during uninstall.
Forum: NSIS Discussion 16th July 2008, 18:15
Replies: 3
Views: 1,384
Posted By patelb
$appName is set by the user during the install. ...

$appName is set by the user during the install. They are prompted to enter an application name that will be used to create the virtual directories and such.
Forum: NSIS Discussion 16th July 2008, 17:55
Replies: 3
Views: 1,384
Posted By patelb
Question easiest way to share info between installer and uninstaller?

Im building an installer for a web application. This installer will be used for many of our different web applications because there installed the same way. Everytime the user installs one of our...
Forum: NSIS Discussion 14th July 2008, 23:41
Replies: 13
Views: 1,796
Posted By patelb
That "looping" solution you gave me earlier, on...

That "looping" solution you gave me earlier, on the fileread command its reading the line break also. So the delete command is not working properly. Is there like a chomp function in nsis that will...
Forum: NSIS Discussion 14th July 2008, 23:30
Replies: 13
Views: 1,796
Posted By patelb
I can see them

I can see them
Forum: NSIS Discussion 14th July 2008, 22:58
Replies: 13
Views: 1,796
Posted By patelb
I thought this was unsafe: ...

I thought this was unsafe:

_http://forums.winamp.com/showthread.php?s=&threadid=289986
Forum: NSIS Discussion 14th July 2008, 22:29
Replies: 13
Views: 1,796
Posted By patelb
Very clever!

Very clever!
Forum: NSIS Discussion 14th July 2008, 22:18
Replies: 13
Views: 1,796
Posted By patelb
Ok that makes sense. What is norm in this...

Ok that makes sense. What is norm in this situation then? If people use a list of files to build the uninstall section, do they just hard code where that file will reside?
Forum: NSIS Discussion 14th July 2008, 22:02
Replies: 13
Views: 1,796
Posted By patelb
But the file will be inside the install...

But the file will be inside the install directory, and since the install directory will be different with each install is there a way to make this whole process dynamic?

I cant do this either...
Forum: NSIS Discussion 14th July 2008, 21:23
Replies: 13
Views: 1,796
Posted By patelb
Syntax question

I have this in my uninstall section:

Section "Uninstall"
!include "$instdir\unifilelist.nsh"
SectionEnd

I keep getting this error though:
!include: could not find:...
Forum: NSIS Discussion 14th July 2008, 17:19
Replies: 1
Views: 1,259
Posted By patelb
Here is the url that is supposed to be in the...

Here is the url that is supposed to be in the previous post:
http://forums.winamp.com/showthread.php?postid=1468974#post1468974
Forum: NSIS Discussion 14th July 2008, 17:17
Replies: 1
Views: 1,259
Posted By patelb
Uninstall file list

Im creating an uninstaller which adds file with commands like this 'File /r c:\somegivendirectory\*.*'. My question is what is the easiest way to generate a dynamic list of files that I can use when...
Forum: NSIS Discussion 11th July 2008, 22:02
Replies: 3
Views: 1,865
Posted By patelb
This is probably a really stpuid question...

This is probably a really stpuid question but....How would I set it, is there a function call I can use to set it?
Forum: NSIS Discussion 11th July 2008, 19:13
Replies: 3
Views: 1,865
Posted By patelb
Custom $INSTDIR

Im writing an installer for a web application...It starts off with a prompt asking the user to enter what they want to call the application(this will be used when creating the virtual directories and...
Forum: NSIS Discussion 9th July 2008, 19:02
Replies: 9
Views: 4,638
Posted By patelb
Your right! Its here:...

Your right! Its here: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp\PathWWWRoot

Thanks!
Forum: NSIS Discussion 9th July 2008, 18:54
Replies: 9
Views: 4,638
Posted By patelb
Ok cool thanks for the help! I know the way im...

Ok cool thanks for the help! I know the way im doing it is really sloppy but it is the only way I could think of. Ill look in the www service being in the registry, but I dont think there is a key...
Forum: NSIS Discussion 9th July 2008, 18:44
Replies: 9
Views: 4,638
Posted By patelb
I took an existing script and condensed it to...

I took an existing script and condensed it to this:

strComputer = "."
Set objWMIService = GetObject _
("winmgmts:{authenticationLevel=pktPrivacy}\\" _
& strComputer &...
Forum: NSIS Discussion 9th July 2008, 18:31
Replies: 9
Views: 4,638
Posted By patelb
Is there a way of detecting the root web folder...

Is there a way of detecting the root web folder from nsis?
Showing results 1 to 25 of 26

 
Forum Jump