Forum: NSIS Discussion
9th October 2007, 14:05
|
|
Replies: 1
Views: 1,436
|
Forum: NSIS Discussion
9th October 2007, 13:06
|
|
Replies: 1
Views: 1,436
|
Forum: NSIS Discussion
2nd October 2007, 17:22
|
|
Replies: 5
Views: 2,701
|
Forum: NSIS Discussion
20th January 2006, 17:29
|
|
Replies: 3
Views: 1,675
|
Forum: NSIS Discussion
29th November 2005, 16:03
|
|
Replies: 5
Views: 3,113
|
Forum: NSIS Discussion
28th November 2005, 23:59
|
|
Replies: 6
Views: 4,112
If your file is in use:
# Get a temp file...
If your file is in use:
# Get a temp file name
GetTempFileName $0
# Install
SetOutpath $INSTDIR
File /oname=$0 "something.dat"
Rename /REBOOTOK "$INSTDIR\0" "something.dat"
It will add an...
|
Forum: NSIS Discussion
25th November 2005, 15:27
|
|
Replies: 6
Views: 4,112
Power User and PendingFileRenameOperations
When installing with a power user and some files are locked, my installer mark those files for rename on reboot but power user are unable to write in PendingFileRenameOperations registry key. Is...
|
Forum: NSIS Discussion
7th November 2005, 13:57
|
|
Replies: 2
Views: 3,812
Difference between NSH and NSI extensions
Is there a difference between using NSI or NSH extenltion for script? I observed that if I include a script.nsh that create a shortcut with a specific icon, the icon is not used but if I include a...
|
Forum: NSIS Discussion
3rd November 2005, 13:43
|
|
Replies: 9
Views: 6,393
|
Forum: NSIS Discussion
28th October 2005, 21:49
|
|
Replies: 10
Views: 3,562
This could help you... ...
This could help you...
http://support.microsoft.com/default.aspx?scid=kb;en-us;127830
but you seem to already know that.
|
Forum: NSIS Discussion
27th October 2005, 21:29
|
|
Replies: 10
Views: 3,562
|
Forum: NSIS Discussion
27th October 2005, 19:26
|
|
Replies: 10
Views: 3,562
|
Forum: NSIS Discussion
26th October 2005, 12:51
|
|
Replies: 10
Views: 3,562
What I need is Overwrite ifdiff. But anyway...
What I need is Overwrite ifdiff. But anyway SetOverwrite ifdiff also have a bug under Win9x.
Step to reproduce:
-Install on a clean Win9x machine
-Reinstall the same software(always using...
|
Forum: NSIS Discussion
25th October 2005, 14:41
|
|
Replies: 10
Views: 3,562
Bug with GetFileTime under Win9x
I used this code :
-----------------------------------
!define LOW1 $0
!deinfe HIGH1 $1
!define LOW2 $2
!deinfe HIGH2 $3
GetFileTime ${FILENAME} ${HIGH1} ${LOW1}
GetFileTimeLocal...
|
Forum: NSIS Discussion
13th October 2005, 17:22
|
|
Replies: 9
Views: 6,393
|
Forum: NSIS Discussion
13th October 2005, 15:14
|
|
Replies: 9
Views: 6,393
|
Forum: NSIS Discussion
13th October 2005, 14:28
|
|
Replies: 9
Views: 6,393
Print button on the license dialog page
I'm trying to add a print button on license page. I tried 2 differents method:
1- With "Page custom" I could add a button but the edit box that contain license is gray if I put it read only and...
|
Forum: NSIS Discussion
7th October 2005, 15:21
|
|
Replies: 3
Views: 1,512
|
Forum: NSIS Discussion
6th October 2005, 21:36
|
|
Replies: 3
Views: 1,512
Bloc uninstaller from copying itself
I want to find a way to avoid uninstaller from being copied in a temp directory when the user start "Uninst.exe". Is it possible or should I make an other installer that will delete my files?...
|