Forum: NSIS Discussion
21st April 2010, 09:04
|
Replies: 14
Views: 1,857
|
Forum: NSIS Discussion
24th November 2009, 09:31
|
Replies: 2
Views: 2,333
The Indexing service is called CISVC and can be...
The Indexing service is called CISVC and can be found in [HKLM]\SYSTEM\CurrentControlSet\services\CISVC
You can check if the key exists or use the service plugin to check if the service is installed...
|
Forum: NSIS Discussion
23rd January 2009, 20:51
|
Replies: 30
Views: 15,167
Hi TobbeSweden,
The API calls and the array...
Hi TobbeSweden,
The API calls and the array code on the Wiki are quite old (2+ years now!).
AfroUK has updated his plugin and shuffled things around, so the options that I was using probably don't...
|
Forum: NSIS Discussion
28th June 2008, 10:37
|
Replies: 8
Views: 2,790
Do you define the size of the APPBARDATA...
Do you define the size of the APPBARDATA structure somewhere? It appears to me that you need to allocate memory first before passing anything to APPBARDATA as its first member is its size in bytes....
|
Forum: NSIS Discussion
22nd May 2008, 09:29
|
Replies: 8
Views: 3,172
|
Forum: NSIS Discussion
21st May 2008, 15:25
|
Replies: 8
Views: 3,172
What are the values of R1 and R2 that you get...
What are the values of R1 and R2 that you get after calling NetUserGetLocalGroups? Try to pop them out.
Also, what does the array contain at the end of the call? Try the /Debug option (check Afro's...
|
Forum: NSIS Discussion
30th April 2008, 08:52
|
Replies: 4
Views: 2,048
Try the IP Helper...
Try the IP Helper (http://msdn.microsoft.com/en-us/library/aa366071(VS.85).aspx) functions
CF
|
Forum: NSIS Discussion
15th April 2008, 22:21
|
Replies: 19
Views: 12,345
|
Forum: NSIS Discussion
3rd April 2008, 01:46
|
Replies: 19
Views: 12,345
You can use NetShareDel...
You can use NetShareDel (http://msdn2.microsoft.com/en-us/library/bb525386(VS.85).aspx) to remove a share from a computer, assuming that you have admin/power user rights. Note however that this will...
|
Forum: NSIS Discussion
13th March 2008, 14:42
|
Replies: 5
Views: 2,618
LookupAccountName ...
LookupAccountName (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthz/security/lookupaccountname.asp) accepts a username and returns its SID and (optionally) the domain name
...
|
Forum: NSIS Discussion
19th December 2007, 10:16
|
Replies: 1
Views: 1,309
You could use FindFirst...
You could use FindFirst (http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.5.9), FindNext (http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.5.10) in your folder then use the file details in a loop...
|
Forum: NSIS Discussion
18th December 2007, 18:18
|
Replies: 9
Views: 8,847
|
Forum: NSIS Discussion
9th December 2007, 13:33
|
Replies: 18
Views: 5,202
WTSEnumerateSessions ...
WTSEnumerateSessions (http://msdn2.microsoft.com/en-us/library/aa383833.aspx) will give you an array of WTS_SESSION_INFO (http://msdn2.microsoft.com/en-us/library/aa383864.aspx) structures and each...
|
Forum: NSIS Discussion
30th November 2007, 18:45
|
Replies: 1
Views: 1,309
Check this...
Check this (http://nsis.sourceforge.net/FileAssoc) wiki page.
CF
|
Forum: NSIS Discussion
29th November 2007, 09:33
|
Replies: 2
Views: 1,542
|
Forum: NSIS Discussion
27th November 2007, 22:44
|
Replies: 6
Views: 2,050
The GetSize...
The GetSize (http://nsis.sourceforge.net/Docs/AppendixE.html#E.1.3) macro does not work for you?
CF
|
Forum: NSIS Discussion
15th November 2007, 09:27
|
Replies: 2
Views: 1,388
|
Forum: NSIS Discussion
15th November 2007, 07:30
|
Replies: 2
Views: 3,406
|
Forum: NSIS Discussion
28th October 2007, 19:41
|
Replies: 2
Views: 1,919
|
Forum: NSIS Discussion
28th October 2007, 12:33
|
Replies: 5
Views: 4,140
|
Forum: NSIS Discussion
23rd October 2007, 17:32
|
Replies: 2
Views: 2,154
There are several threads/wiki...
There are several threads/wiki (http://nsis.sourceforge.net/Developer_Center) pages dealing with drivers...
A few examples:
drivers install...
|
Forum: NSIS Discussion
22nd October 2007, 14:45
|
Replies: 3
Views: 1,789
|
Forum: NSIS Discussion
17th October 2007, 10:48
|
Replies: 9
Views: 4,448
Ownership of files/folders you can set from...
Ownership of files/folders you can set from within the installer using the AccessControl (http://nsis.sourceforge.net/AccessControl_plug-in) plugin...
Also you may want to have a look at the...
|
Forum: NSIS Discussion
12th October 2007, 22:13
|
Replies: 3
Views: 1,681
#1: Call GetFileAttributes(A/W) ...
#1: Call GetFileAttributes(A/W) (http://msdn2.microsoft.com/en-us/library/aa364944.aspx) then subtract from the output value FILE_ATTRIBUTE_ARCHIVE with an IntOp, then call SetFileAttributes(A/W) ...
|
Forum: NSIS Discussion
12th October 2007, 19:53
|
Replies: 146
Views: 51,189
|