Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 25 of 25
Search took 0.00 seconds.
Search: Posts Made By: cirerita
Forum: NSIS Discussion 12th November 2005, 11:31
Replies: 9
Views: 2,670
Posted By cirerita
ok, thanks, I'll add that entry...

ok, thanks, I'll add that entry...
Forum: NSIS Discussion 12th November 2005, 10:34
Replies: 9
Views: 2,670
Posted By cirerita
so, is it any better to simply delete this: ...

so, is it any better to simply delete this:

!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
Forum: NSIS Discussion 12th November 2005, 10:04
Replies: 9
Views: 2,670
Posted By cirerita
thanks, it worked! by the way, is that normal? I...

thanks, it worked! by the way, is that normal? I mean, will it happen again whenever I modify the NSIS script?
Forum: NSIS Discussion 12th November 2005, 09:58
Replies: 9
Views: 2,670
Posted By cirerita
ooops, you meant delete in Windows registry or in...

ooops, you meant delete in Windows registry or in NSIS script???
Forum: NSIS Discussion 12th November 2005, 09:57
Replies: 9
Views: 2,670
Posted By cirerita
can't find that string. is this one: !define...

can't find that string. is this one:

!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
Forum: NSIS Discussion 12th November 2005, 09:49
Replies: 9
Views: 2,670
Posted By cirerita
Language selection gone!!!

hi,
after some changes made to my installation file, the language selection is gone... but I certainly didn't modify this part of the script!!!

Here it is:

; Script generated by the HM NIS...
Forum: NSIS Discussion 12th November 2005, 08:51
Replies: 4
Views: 1,595
Posted By cirerita
oh, thanks, that's just great. it works like a...

oh, thanks, that's just great. it works like a charm!
Forum: NSIS Discussion 12th November 2005, 08:35
Replies: 14
Views: 19,638
Posted By cirerita
it'w weird, beucause it does work this way: ...

it'w weird, beucause it does work this way:
nsExec::ExecToLog '"$INSTDIR\7z.exe" e MediaAutoGraph.rar -aoa -oc:\downloads\test"' [aoa command overwrites without asking first]

i'll try your way...
Forum: NSIS Discussion 11th November 2005, 23:31
Replies: 4
Views: 1,595
Posted By cirerita
thanks, that works, indeed, but I was looking for...

thanks, that works, indeed, but I was looking for an option where the user could check/unckeck all the items by clicking the mouse during the installation process... is that possible?
Forum: NSIS Discussion 11th November 2005, 22:39
Replies: 4
Views: 1,595
Posted By cirerita
How to untick items?

Hi,

I'm using HM NIS editor to create my installation file; it allows you to list the items to be installed and, by default, they're all ticked. You can untick them by manually hitting the mouse...
Forum: NSIS Discussion 11th November 2005, 19:40
Replies: 14
Views: 19,638
Posted By cirerita
thanks guys, got it working: ...

thanks guys, got it working:

nsExec::ExecToLog '"$INSTDIR\7z.exe" e MediaAutoGraph.rar -oc:\downloads\test"'

it copies the content of the rar archive to the downloads\test folder.
Forum: NSIS Discussion 11th November 2005, 19:24
Replies: 14
Views: 19,638
Posted By cirerita
I tried this, but no luck: File...

I tried this, but no luck:

File "..\UnRAR.exe"
File "..\MediaAutoGraph.rar"
nsExec::ExecToLog '"$INSTDIR\UnRAR.exe e" "MediaAutoGraph.rar"'

also tried using 7z:
File "..\7z.exe"
...
Forum: NSIS Discussion 11th November 2005, 18:50
Replies: 14
Views: 19,638
Posted By cirerita
Ok, I tried your command line and extracting also...

Ok, I tried your command line and extracting also UnRAR.exe together with the rar archive. Obviously, UnRAR needs some extra parameters to extract the archive.

This is what i get in the log...
Forum: NSIS Discussion 11th November 2005, 18:37
Replies: 14
Views: 19,638
Posted By cirerita
Is there any other way to extract files on the...

Is there any other way to extract files on the fly from a rar archive?
Forum: NSIS Discussion 11th November 2005, 18:26
Replies: 14
Views: 19,638
Posted By cirerita
How to extract a .rar file and copy it to a diff. folder??

Hi,
I made a search and found that the nsExec command apparently can be used to extract .rar files together with Unrar, or so I understood.

I've been trying to use it in my installer to no avail....
Forum: NSIS Discussion 30th October 2005, 23:41
Replies: 16
Views: 5,192
Posted By cirerita
ok, thanks, I'll try that.

ok, thanks, I'll try that.
Forum: NSIS Discussion 30th October 2005, 23:27
Replies: 16
Views: 5,192
Posted By cirerita
ok. any idea as to how to wrap the uninstallers?...

ok. any idea as to how to wrap the uninstallers? is there any command for wrapping all of them?
Forum: NSIS Discussion 30th October 2005, 22:19
Replies: 16
Views: 5,192
Posted By cirerita
yep, sure: ...

yep, sure:
http://www.inmatrix.com/zplayer/formats/aac.shtml

here you can grab the aacparser.exe and see how it works. it's an opensource filter; the installation file was created using nsis.
Forum: NSIS Discussion 30th October 2005, 11:35
Replies: 16
Views: 5,192
Posted By cirerita
most of those opensource packages have been...

most of those opensource packages have been created using nsis.

how do yo call the uninstallers created by those files.

Delete "$INSTDIR\cdxa.exe"

this deletes "cdxa.exe", but not the...
Forum: NSIS Discussion 29th October 2005, 17:09
Replies: 16
Views: 5,192
Posted By cirerita
thanks. searching the forum I also found this: ...

thanks. searching the forum I also found this:
Exec 'regedit "$PLUGINSDIR\regentry.reg"'

or
Exec 'regedit \s "$PLUGINSDIR\regentry.reg"' if you want a silent registration.

as I said, my...
Forum: NSIS Discussion 28th October 2005, 23:17
Replies: 16
Views: 5,192
Posted By cirerita
ok, I've been using the Execwait command and it...

ok, I've been using the Execwait command and it seems to work ok. I've to manually add it after each installation package entry, there seems to be no other easier way...

finally, I'd like to...
Forum: NSIS Discussion 28th October 2005, 22:17
Replies: 16
Views: 5,192
Posted By cirerita
yep, that's right, I'll include some .ax and .dll...

yep, that's right, I'll include some .ax and .dll files, such as vsfilter.dll or DTSWAV.ax. however, these ones seem easier to install. I just use Regdll and they're registered.

yes, I need some...
Forum: NSIS Discussion 28th October 2005, 19:50
Replies: 16
Views: 5,192
Posted By cirerita
ok, it seems that you cannot add more than one...

ok, it seems that you cannot add more than one !define MUI_FINISHPAGE_RUN "$INSTDIR entry.

also, I took a close look at the wizard's option at the end and it lets you choose among the listed...
Forum: NSIS Discussion 28th October 2005, 19:40
Replies: 16
Views: 5,192
Posted By cirerita
thanks for the reply. so, does it mean that I...

thanks for the reply. so, does it mean that I have to manually add a
!define MUI_FINISHPAGE_RUN "$INSTDIR\myappl.exe" entry for each application I want to be installed????

I thought the wizard...
Forum: NSIS Discussion 28th October 2005, 18:42
Replies: 16
Views: 5,192
Posted By cirerita
Installer only runs one item out of twenty!

Hi there,

I'm a 100% newbie, and I'm using HM NIS editor's wizard to create my setup file. I'd like my setup file to install some filters and codecs for HTPC use. However, no matter how many items...
Showing results 1 to 25 of 25

 
Forum Jump