|
|
#1 (permalink) |
|
Guest
Posts: n/a
|
On Tue, 21 Oct 2008 00:00:00 -0700, MFD <MFD@discussions.microsoft.com> wrote:
>I need some help. I would like to create a group with my MSI package. I need >the group to able to ad users to it and use it for athentication. Do someone >have any good idea how to create a group in a MSI? > This is a MAKEMSI vbscript custom action that can create a user a group should be very similar (my guess is replace "user" with "group"): http://makemsi-manual.dennisbareis.c...r_creation.htm Bye, Dennis Dennis Bareis [Microsoft MVP] (dbareis@KillSpam.gmail.com) http://dennisbareis.com/ Freeware Windows Installer creation tool (+ "ORCA automation"): http://makemsi.dennisbareis.com/ |
|
|
|
#3 (permalink) |
|
Guest
Posts: n/a
|
There's no builkt-in support in MSI, so it's going to be a custom action,
probably C++ because it's not obvious to me that any other language has the required support. So this is really a programming question about how to use the NetGroupAdd function. -- Phil Wilson Definitive Guide to Windows Installer http://www.apress.com/book/view/1590592972 "MFD" <MFD@discussions.microsoft.com> wrote in message news:29A152CC-46F8-4B73-AA49-F3AEAB6A63B4@microsoft.com... >I need some help. I would like to create a group with my MSI package. I >need > the group to able to ad users to it and use it for athentication. Do > someone > have any good idea how to create a group in a MSI? > > Thanks |
|