Forum: NSIS Discussion
4th June 2013, 07:17
|
|
Replies: 4
Views: 2,967
x64.nsh is included. If you read below, I said...
x64.nsh is included. If you read below, I said the 64bit dll was copied.
Question here is "why the dll is copied to SysWOW64, rather then being copied to system32".
I do get the proper 64bit ach...
|
Forum: NSIS Discussion
3rd June 2013, 20:07
|
|
Replies: 4
Views: 2,967
Copying DLL to $SYSDIR
Hi All,
Here is a code in my nsis script.
SetOutPath $SYSDIR
MessageBox MB_OK $SYSDIR ;This shows C:\windows\System32
${If} ${RunningX64}
File ".\My64bitDLL.dll"
${Else}...
|
Forum: NSIS Discussion
1st February 2013, 13:53
|
|
Replies: 7
Views: 3,373
|
Forum: NSIS Discussion
1st February 2013, 13:47
|
|
Replies: 7
Views: 3,373
nsis uninstaller
hi all,
is there any way, I can sign the uninstaller and change the icon of unsintaller. The uninstaller exe is created by nsis scipt normally, that just removes the files and shortcuts.
Thanks
|
Forum: NSIS Discussion
2nd October 2012, 08:11
|
|
Replies: 8
Views: 4,665
|
Forum: NSIS Discussion
2nd October 2012, 06:36
|
|
Replies: 8
Views: 4,665
|
Forum: NSIS Discussion
1st October 2012, 15:55
|
|
Replies: 8
Views: 4,665
|
Forum: NSIS Discussion
1st October 2012, 14:54
|
|
Replies: 8
Views: 4,665
|
Forum: NSIS Discussion
1st October 2012, 14:29
|
|
Replies: 8
Views: 4,665
Add task using schtasks from nsis
Hi All,
I am trying to add a task to task scheduler, using my nsis script.
ExecWait '$SYSDIR\schtasks.exe /Create /TN MyAppTask /SC ONSTART /TR "$INSTDIR"\MyApp.exe /RU System'
It adds a...
|