Creating a user with Wix

I'm been working with Wix for a few weeks now, and a really like what I see with the technology, however it can be painful trying to do some obvious things due to limited documentation and examples.

Today I wanted to create a user at install time, a simple problem with a simple solution:

<User xmlns=Id="NewSvc"

                 CanNotChangePassword="yes"

                 CreateUser="yes"

                 FailIfExists="no"

                 PasswordNeverExpires="yes"

                 PasswordExpired="no"

                 RemoveOnUninstall="yes"

                 UpdateIfExists="no"

                 Disabled="no"

                 Name="New Service"

                 Password="pa55w0rd">

 <GroupRef Id="GroupID"/>

</User>

Straight forward enough however I was getting the following error:

The Component element contains an unhandled extension element 'User'.  Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/UtilExtension' namespace has been provided.

Although this is a trivial error to fix it took a while for the solution to dawn on me, after not finding much help on the internet. The problem is that the UtilExtension is responsible for creating users and there is no reference to the DLL.

To resolve the problem I simply needed to add a reference to WixUtilExtension.dll and the problem was solved.

This article is part of the GWB Archives. Original Author: markritchie

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.