Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 25 of 27
Search took 0.00 seconds.
Search: Posts Made By: ewallig
Forum: NSIS Discussion 2nd January 2013, 13:42
Replies: 1
Views: 2,394
Posted By ewallig
ipconfig plugin - mac address detection

Hi,

Not sure if I'm posting in the right place but I am trying to get a simple "ok" or error from my installer when using the IpConfig plugin. Code basically looks like this:

...
Function...
Forum: NSIS Discussion 29th March 2007, 14:18
Replies: 4
Views: 3,742
Posted By ewallig
Hi, you need the following files -...

Hi,

you need the following files

- CAPICOM.dll
- The vbscript file that MSOFT provides for the procedure

Both of these files can be obtained from Microsoft but if you need to, send an...
Forum: NSIS Discussion 27th June 2006, 19:17
Replies: 4
Views: 3,742
Posted By ewallig
Yeah, I'm simply not that talented....but I did...

Yeah, I'm simply not that talented....but I did get it to work using the CAPICOM dll, a sample vbscript that comes in the CAPICOM SDK, and the basic modern UI example so all is well.

Thanks...
Forum: NSIS Discussion 23rd June 2006, 16:13
Replies: 4
Views: 3,742
Posted By ewallig
Question Import digital certificate

Hi,

Saw one post on this a couple of years ago - is there any way to import a root certificate as part of an installation? My "pet app" is code signed by an internal CA and the root cert for that...
Forum: NSIS Discussion 25th May 2006, 14:42
Replies: 13
Views: 2,756
Posted By ewallig
Thanks Stu, I'll give that a try as soon as I can...

Thanks Stu, I'll give that a try as soon as I can :)


- Ed
Forum: NSIS Discussion 25th May 2006, 14:02
Replies: 13
Views: 2,756
Posted By ewallig
Yeah, tried that too - not the results that I...

Yeah, tried that too - not the results that I wanted. However, I think that I've resolved the current problem that I'm having by adding a 5 second pause after the CD-ROM reports that it's ready -...
Forum: NSIS Discussion 25th May 2006, 13:29
Replies: 13
Views: 2,756
Posted By ewallig
Yeah, I did that at first but it takes twice as...

Yeah, I did that at first but it takes twice as long for the installation - the archive is 400+MB of compressed pdf data; if i first copy it to TEMP it takes about 4 minutes to do the copy....
Forum: NSIS Discussion 25th May 2006, 13:20
Replies: 13
Views: 2,756
Posted By ewallig
Thanks - that fixed the code problem but...

Thanks - that fixed the code problem but ultimately did not fix the problem that I was having. The CD-ROM is now reporting that it is ready but (intermittantly) 7zip can't find the archive on the...
Forum: NSIS Discussion 24th May 2006, 20:17
Replies: 13
Views: 2,756
Posted By ewallig
Thanks - still having some issues - tried this: ...

Thanks - still having some issues - tried this:

#spin until the CD is ready
_loop:
cdrom::status "" .R0
StrCmp $R0 '1' 0 _loop

It still jumps ahead sometimes - the next line of...
Forum: NSIS Discussion 24th May 2006, 19:42
Replies: 13
Views: 2,756
Posted By ewallig
That will probably do it...uh...hmm...guess I'm...

That will probably do it...uh...hmm...guess I'm still a bit of an amateur :(

- How would you write a conditional that would loop until the value of cdrom::status was 1?

Thanks..
Forum: NSIS Discussion 24th May 2006, 18:00
Replies: 13
Views: 2,756
Posted By ewallig
CD-ROM drive readiness

Hi all,

Not trying to dig up older threads on multi-disk installations - think i've got that figured out. My question: is there a way to check the readiness of a drive (CD-ROM, for example)?

My...
Forum: NSIS Discussion 19th May 2006, 12:18
Replies: 3
Views: 1,816
Posted By ewallig
Thanks for the info - can you point me at some...

Thanks for the info - can you point me at some documentation or examples?
Forum: NSIS Discussion 18th May 2006, 19:44
Replies: 3
Views: 1,816
Posted By ewallig
Automate an Excel spreadsheet during an installation

Hi,

Developer of a spreadsheet-based application now needs to upgrade his "database" structure. As part of the upgrade, he needs to capture all of the currently stored data in the previous version...
Forum: NSIS Discussion 9th December 2005, 19:37
Replies: 1
Views: 1,517
Posted By ewallig
Disregard, I figured it out - oversight on my...

Disregard, I figured it out - oversight on my part :(


Thanks
Forum: NSIS Discussion 9th December 2005, 19:17
Replies: 1
Views: 1,517
Posted By ewallig
Adding to existing start menu

Hi,

Trying to write a patch for an existing application. It's not really a real patch; all I need it to do is create a couple of directories in the existing $INSTDIR, copy some files to those...
Forum: NSIS Discussion 23rd November 2005, 16:59
Replies: 1
Views: 1,277
Posted By ewallig
If Folder Exists?

Hi,

I need to build some checking into my installer. Basically, I need to check for the existence of 3 sub-directories. If they are there, then the installer simply needs to copy files into the...
Forum: NSIS Discussion 21st November 2005, 14:15
Replies: 2
Views: 2,691
Posted By ewallig
Thanks, I'll play around w/ that :)

Thanks, I'll play around w/ that :)
Forum: NSIS Discussion 21st November 2005, 13:39
Replies: 2
Views: 2,691
Posted By ewallig
Question Removing Renamed Desktop Shortcuts

Hi,

OK, I need to write an installer that detects/removes a previous version of an application and its desktop shortcut and then installs the updated version and recreates the shortcut. The...
Forum: NSIS Discussion 13th October 2005, 13:59
Replies: 3
Views: 1,745
Posted By ewallig
OK, well, I figured it out - lots of flexibility...

OK, well, I figured it out - lots of flexibility with this installer - I like it!!


Thanks again...
Forum: NSIS Discussion 12th October 2005, 18:09
Replies: 3
Views: 1,745
Posted By ewallig
Thanks for the quick reply. Sorry, but I'm still...

Thanks for the quick reply. Sorry, but I'm still quite the newbie w/ NSIS - what about things like InstallDir, InstallDirRegKey, etc? Are they necessary or can I omit them in my installer?

I just...
Forum: NSIS Discussion 12th October 2005, 17:55
Replies: 3
Views: 1,745
Posted By ewallig
NSIS as wrapper for another exe

Hi,

I've looked through the forums and haven't quite found the answer that I'm looking for. Basically, I want to deploy the existing SpyBot S&D installer package silently via my own installer (a...
Forum: NSIS Discussion 17th September 2005, 18:04
Replies: 11
Views: 3,160
Posted By ewallig
Thanks Stu, I'll give that a try.

Thanks Stu, I'll give that a try.
Forum: NSIS Discussion 16th September 2005, 19:02
Replies: 11
Views: 3,160
Posted By ewallig
Hi again, Ok, I tried to run the script...

Hi again,

Ok, I tried to run the script using ExecShell - didn't have any luck running a .vbs file. I tried both directly running the file:

ExecShell open "$INSTDIR\killDesktopIcons.vbs"
-...
Forum: NSIS Discussion 16th September 2005, 15:35
Replies: 11
Views: 3,160
Posted By ewallig
ok, I guess that was a stupid question - I'll...

ok, I guess that was a stupid question - I'll give it a try and get back if I have problems.

Thanks again....
Forum: NSIS Discussion 16th September 2005, 13:29
Replies: 11
Views: 3,160
Posted By ewallig
Would I put the ExecShell command within the...

Would I put the ExecShell command within the uninstaller section or elsewhere?


Thanks...
Showing results 1 to 25 of 27

 
Forum Jump