This is a patch to go from libwin32 v0.171 to v0.172.  This is yet another
unofficial patch that corresponds to the libwin32 that ships with ActivePerl
build 626.  Apply using GNU patch as follows:

    # get libwin32-0.16.zip, libwin32-0.171.patch, libwin32-0.172.patch first
    unzip libwin32-0.16.zip
    rename libwin32-0.16 libwin32-0.172
    cd libwin32-0.172
    patch -p1 -N < ../libwin32-0.171.patch
    patch -p1 -N < ../libwin32-0.172.patch

Note that the patch for v0.171 must be applied first.

Enjoy.

Gurusamy Sarathy
gsar@ActiveState.com
------------------------------------8<------------------------------------
diff -urN libwin32-0.171/APIFile/File.pm libwin32-0.172/APIFile/File.pm
--- libwin32-0.171/APIFile/File.pm	Mon May 14 00:12:25 2001
+++ libwin32-0.172/APIFile/File.pm	Mon May 14 00:14:07 2001
@@ -839,7 +839,7 @@
 
 C<$sOldFileName> is the path to the file to be copied. 
 C<$sNewFileName> is the path to where the file should be copied. 
-Note that you can E<NOT> just specify a path to a directory in
+Note that you can B<NOT> just specify a path to a directory in
 C<$sNewFileName> to copy the file to that directory using the
 same file name.
 
@@ -907,8 +907,8 @@
 Locking this for exclusive access doesn't prevent access to the
 physical drive that the partition is on so other processes can
 still access the raw sectors that way.  Locking this for exclusive
-access E<does> prevent other processes from opening the same raw
-partition and E<does> prevent access to the file system on it.  It
+access B<does> prevent other processes from opening the same raw
+partition and B<does> prevent access to the file system on it.  It
 even prevents the current process from accessing the file system
 on that partition.
 
@@ -1043,7 +1043,7 @@
 =item C<DeleteFile( $sFileName )>
 
 Deletes the named file.  Compared to Perl's C<unlink>, C<DeleteFile>
-has the advantage of not deleting read-only files.  For E<some>
+has the advantage of not deleting read-only files.  For B<some>
 versions of Perl, C<unlink> silently calls C<chmod> whether it needs
 to or not before deleting the file so that files that you have
 protected by marking them as read-only are not always protected from
@@ -1540,7 +1540,7 @@
 a sample of this format].
 
 C<$lTargetBuf> is the size [in bytes] of the buffer to allocate for
-C<$osTargetPath>.  See L<Buffers Sizes> for more information.
+C<$osTargetPath>.  See L<Buffer Sizes> for more information.
 
 C<$olTargetLen> is set to the number of bytes written to
 C<$osTargetPath> but you can also use C<length($osTargetPath)>
@@ -1582,7 +1582,7 @@
 
 =item C<$uOldMode= SetErrorMode( $uNewMode )>
 
-Sets the mode controlling system error handling E<and> returns the
+Sets the mode controlling system error handling B<and> returns the
 previous mode value.  Both C<$uOldMode> and C<$uNewMode> will have
 zero or more of the following bits set:
 
@@ -2249,7 +2249,7 @@
 bytes] where the formatting should begin.
 
 =item C<$uLength>
-        
+
 The length [in bytes] of the section to be formatted.
 
 =back
diff -urN libwin32-0.171/APINet/Changes libwin32-0.172/APINet/Changes
--- libwin32-0.171/APINet/Changes	Mon May 14 00:12:25 2001
+++ libwin32-0.172/APINet/Changes	Mon May 14 00:14:07 2001
@@ -1,5 +1,10 @@
 Revision history for Perl extension Win32API::Net
 
+0.09	Tue Sep 05 2000
+	- fixed yet another memory leak pointed out again by Eamon Doyle.
+	  Macro HV_STORE_AV used newRV_inc instead of newRV_noinc
+	- Corrected minor typo in documentation
+
 0.081   Mon May 22 20:38:11 2000
         - support for building under Perl v5.6.0.
 	- fixed a leak due to improper freeing in UserGetInfo()
diff -urN libwin32-0.171/APINet/Net.html libwin32-0.172/APINet/Net.html
--- libwin32-0.171/APINet/Net.html	Mon May 14 00:12:25 2001
+++ libwin32-0.172/APINet/Net.html	Mon May 14 00:14:08 2001
@@ -6,1749 +6,1558 @@
 
 <BODY>
 
+<A NAME="__index__"></A>
 <!-- INDEX BEGIN -->
 
 <UL>
 
-	<LI><A HREF="#NAME">NAME</A>
-	<LI><A HREF="#SYNOPSIS">SYNOPSIS</A>
-	<LI><A HREF="#NOTE_ON_VERSIONS_PRIOR_TO_0_08">NOTE ON VERSIONS PRIOR TO 0.08</A>
-	<LI><A HREF="#DESCRIPTION">DESCRIPTION</A>
+	<LI><A HREF="#name">NAME</A></LI>
+	<LI><A HREF="#synopsis">SYNOPSIS</A></LI>
+	<LI><A HREF="#note on versions prior to 0.08">NOTE ON VERSIONS PRIOR TO 0.08</A></LI>
+	<LI><A HREF="#description">DESCRIPTION</A></LI>
 	<UL>
 
-		<LI><A HREF="#Using_References">Using References</A>
+		<LI><A HREF="#using references">Using References</A></LI>
 	</UL>
 
-	<LI><A HREF="#DATA_STRUCTURES">DATA STRUCTURES</A>
-	<LI><A HREF="#Exports">Exports</A>
-	<LI><A HREF="#NET_USER_FUNCTIONS">NET USER FUNCTIONS</A>
+	<LI><A HREF="#data structures">DATA STRUCTURES</A></LI>
+	<LI><A HREF="#exports">EXPORTS</A></LI>
+	<LI><A HREF="#net user functions">NET USER FUNCTIONS</A></LI>
 	<UL>
 
-		<LI><A HREF="#UserAdd_server_level_hash_err">UserAdd(server, level, hash, error)</A>
-		<LI><A HREF="#UserChangePassword_server_user_">UserChangePassword(server, user, old, new)</A>
-		<LI><A HREF="#UserDel_server_user_">UserDel(server, user)</A>
-		<LI><A HREF="#UserEnum_server_array_filter_">UserEnum(server, array[, filter])</A>
-		<LI><A HREF="#UserGetGroups_server_user_arra">UserGetGroups(server, user, array)</A>
-		<LI><A HREF="#UserGetInfo_server_user_level_">UserGetInfo(server, user, level, hash)</A>
-		<LI><A HREF="#UserGetLocalGroups_server_user_">UserGetLocalGroups(server, user, array[, flags])</A>
-		<LI><A HREF="#UserModalsGet_">UserModalsGet()</A>
-		<LI><A HREF="#UserModalsSet_">UserModalsSet()</A>
-		<LI><A HREF="#UserSetGroups_server_user_arra">UserSetGroups(server, user, array)</A>
-		<LI><A HREF="#UserSetInfo_server_user_level_">UserSetInfo(server, user, level, hash, error)</A>
+		<LI><A HREF="#useradd(server, level, hash, error)">UserAdd(server, level, hash, error)</A></LI>
+		<LI><A HREF="#userchangepassword(server, user, old, new)">UserChangePassword(server, user, old, new)</A></LI>
+		<LI><A HREF="#userdel(server, user)">UserDel(server, user)</A></LI>
+		<LI><A HREF="#userenum(server, array[, filter])">UserEnum(server, array[, filter])</A></LI>
+		<LI><A HREF="#usergetgroups(server, user, array)">UserGetGroups(server, user, array)</A></LI>
+		<LI><A HREF="#usergetinfo(server, user, level, hash)">UserGetInfo(server, user, level, hash)</A></LI>
+		<LI><A HREF="#usergetlocalgroups(server, user, array[, flags])">UserGetLocalGroups(server, user, array[, flags])</A></LI>
+		<LI><A HREF="#usermodalsget()"><CODE>UserModalsGet()</CODE></A></LI>
+		<LI><A HREF="#usermodalsset()"><CODE>UserModalsSet()</CODE></A></LI>
+		<LI><A HREF="#usersetgroups(server, user, array)">UserSetGroups(server, user, array)</A></LI>
+		<LI><A HREF="#usersetinfo(server, user, level, hash, error)">UserSetInfo(server, user, level, hash, error)</A></LI>
 	</UL>
 
-	<LI><A HREF="#NET_GROUP_FUNCTIONS">NET GROUP FUNCTIONS</A>
+	<LI><A HREF="#net group functions">NET GROUP FUNCTIONS</A></LI>
 	<UL>
 
-		<LI><A HREF="#GroupAdd_server_level_hash_er">GroupAdd(server, level, hash, error)</A>
-		<LI><A HREF="#GroupAddUser_server_group_user">GroupAddUser(server, group, user)</A>
-		<LI><A HREF="#GroupDel_server_group_">GroupDel(server, group)</A>
-		<LI><A HREF="#GroupDelUser_server_group_user">GroupDelUser(server, group, user)</A>
-		<LI><A HREF="#GroupEnum_server_array_">GroupEnum(server, array)</A>
-		<LI><A HREF="#GroupGetInfo_server_group_leve">GroupGetInfo(server, group, level, hash)</A>
-		<LI><A HREF="#GroupGetUsers_server_group_arr">GroupGetUsers(server, group, array)</A>
-		<LI><A HREF="#GroupSetInfo_server_group_leve">GroupSetInfo(server, group, level, hash, error)</A>
-		<LI><A HREF="#GroupSetUsers_server_group_arr">GroupSetUsers(server, group, array)</A>
+		<LI><A HREF="#groupadd(server, level, hash, error)">GroupAdd(server, level, hash, error)</A></LI>
+		<LI><A HREF="#groupadduser(server, group, user)">GroupAddUser(server, group, user)</A></LI>
+		<LI><A HREF="#groupdel(server, group)">GroupDel(server, group)</A></LI>
+		<LI><A HREF="#groupdeluser(server, group, user)">GroupDelUser(server, group, user)</A></LI>
+		<LI><A HREF="#groupenum(server, array)">GroupEnum(server, array)</A></LI>
+		<LI><A HREF="#groupgetinfo(server, group, level, hash)">GroupGetInfo(server, group, level, hash)</A></LI>
+		<LI><A HREF="#groupgetusers(server, group, array)">GroupGetUsers(server, group, array)</A></LI>
+		<LI><A HREF="#groupsetinfo(server, group, level, hash, error)">GroupSetInfo(server, group, level, hash, error)</A></LI>
+		<LI><A HREF="#groupsetusers(server, group, array)">GroupSetUsers(server, group, array)</A></LI>
 	</UL>
 
-	<LI><A HREF="#NET_LOCAL_GROUP_FUNCTIONS">NET LOCAL GROUP FUNCTIONS</A>
+	<LI><A HREF="#net local group functions">NET LOCAL GROUP FUNCTIONS</A></LI>
 	<UL>
 
-		<LI><A HREF="#LocalGroupAdd_server_level_has">LocalGroupAdd(server, level, hash, error)</A>
-		<LI><A HREF="#LocalGroupAddMember_">LocalGroupAddMember()</A>
-		<LI><A HREF="#LocalGroupAddMembers_server_gro">LocalGroupAddMembers(server, group, array)</A>
-		<LI><A HREF="#LocalGroupDel_server_group_">LocalGroupDel(server, group)</A>
-		<LI><A HREF="#LocalGroupDelMember_">LocalGroupDelMember()</A>
-		<LI><A HREF="#LocalGroupDelMembers_server_gro">LocalGroupDelMembers(server, group, array)</A>
-		<LI><A HREF="#LocalGroupEnum_server_array_">LocalGroupEnum(server, array)</A>
-		<LI><A HREF="#LocalGroupGetInfo_server_group_">LocalGroupGetInfo(server, group, level, hash)</A>
-		<LI><A HREF="#LocalGroupGetMembers_server_gro">LocalGroupGetMembers(server, group, hash)</A>
-		<LI><A HREF="#LocalGroupSetInfo_server_level_">LocalGroupSetInfo(server, level, hash, error)</A>
-		<LI><A HREF="#LocalGroupSetMembers_">LocalGroupSetMembers()</A>
+		<LI><A HREF="#localgroupadd(server, level, hash, error)">LocalGroupAdd(server, level, hash, error)</A></LI>
+		<LI><A HREF="#localgroupaddmember()"><CODE>LocalGroupAddMember()</CODE></A></LI>
+		<LI><A HREF="#localgroupaddmembers(server, group, array)">LocalGroupAddMembers(server, group, array)</A></LI>
+		<LI><A HREF="#localgroupdel(server, group)">LocalGroupDel(server, group)</A></LI>
+		<LI><A HREF="#localgroupdelmember()"><CODE>LocalGroupDelMember()</CODE></A></LI>
+		<LI><A HREF="#localgroupdelmembers(server, group, array)">LocalGroupDelMembers(server, group, array)</A></LI>
+		<LI><A HREF="#localgroupenum(server, array)">LocalGroupEnum(server, array)</A></LI>
+		<LI><A HREF="#localgroupgetinfo(server, group, level, hash)">LocalGroupGetInfo(server, group, level, hash)</A></LI>
+		<LI><A HREF="#localgroupgetmembers(server, group, hash)">LocalGroupGetMembers(server, group, hash)</A></LI>
+		<LI><A HREF="#localgroupsetinfo(server, level, hash, error)">LocalGroupSetInfo(server, level, hash, error)</A></LI>
+		<LI><A HREF="#localgroupsetmembers()"><CODE>LocalGroupSetMembers()</CODE></A></LI>
 	</UL>
 
-	<LI><A HREF="#NET_GET_FUNCTIONS">NET GET FUNCTIONS</A>
+	<LI><A HREF="#net get functions">NET GET FUNCTIONS</A></LI>
 	<UL>
 
-		<LI><A HREF="#GetDCName_server_domain_domain">GetDCName(server, domain, domain-controller)</A>
+		<LI><A HREF="#getdcname(server, domain, domaincontroller)">GetDCName(server, domain, domain-controller)</A></LI>
 	</UL>
 
-	<LI><A HREF="#USER_INFO_LEVELS">USER INFO LEVELS</A>
-	<LI><A HREF="#USER_INFO_FIELDS">USER INFO FIELDS</A>
-	<LI><A HREF="#USER_FLAGS">USER FLAGS</A>
-	<LI><A HREF="#USER_PRIVILEGE_FLAGS">USER PRIVILEGE FLAGS</A>
-	<LI><A HREF="#USER_ENUM_FILTER">USER ENUM FILTER</A>
-	<LI><A HREF="#USER_FIELD_ERRORS">USER FIELD ERRORS</A>
-	<LI><A HREF="#GROUP_INFO_LEVELS">GROUP INFO LEVELS</A>
-	<LI><A HREF="#GROUP_INFO_FIELDS">GROUP INFO FIELDS</A>
-	<LI><A HREF="#GROUP_FIELD_ERRORS">GROUP FIELD ERRORS</A>
-	<LI><A HREF="#GROUP_USERS_INFO_LEVELS">GROUP USERS INFO LEVELS</A>
-	<LI><A HREF="#GROUP_USERS_INFO_FIELDS">GROUP USERS INFO FIELDS</A>
-	<LI><A HREF="#LOCAL_GROUP_INFO_LEVELS">LOCAL GROUP INFO LEVELS</A>
-	<LI><A HREF="#LOCAL_GROUP_INFO_FIELDS">LOCAL GROUP INFO FIELDS</A>
-	<LI><A HREF="#LOCAL_GROUP_FIELD_ERRORS">LOCAL GROUP FIELD ERRORS</A>
-	<LI><A HREF="#EXAMPLES">EXAMPLES</A>
-	<LI><A HREF="#AUTHOR">AUTHOR</A>
-	<LI><A HREF="#SEE_ALSO">SEE ALSO</A>
-	<LI><A HREF="#ACKNOWEDGEMENTS">ACKNOWEDGEMENTS</A>
+	<LI><A HREF="#user info levels">USER INFO LEVELS</A></LI>
+	<LI><A HREF="#user info fields">USER INFO FIELDS</A></LI>
+	<LI><A HREF="#user flags">USER FLAGS</A></LI>
+	<LI><A HREF="#user privilege flags">USER PRIVILEGE FLAGS</A></LI>
+	<LI><A HREF="#user enum filter">USER ENUM FILTER</A></LI>
+	<LI><A HREF="#user field errors">USER FIELD ERRORS</A></LI>
+	<LI><A HREF="#group info levels">GROUP INFO LEVELS</A></LI>
+	<LI><A HREF="#group info fields">GROUP INFO FIELDS</A></LI>
+	<LI><A HREF="#group field errors">GROUP FIELD ERRORS</A></LI>
+	<LI><A HREF="#group users info levels">GROUP USERS INFO LEVELS</A></LI>
+	<LI><A HREF="#group users info fields">GROUP USERS INFO FIELDS</A></LI>
+	<LI><A HREF="#local group info levels">LOCAL GROUP INFO LEVELS</A></LI>
+	<LI><A HREF="#local group info fields">LOCAL GROUP INFO FIELDS</A></LI>
+	<LI><A HREF="#local group field errors">LOCAL GROUP FIELD ERRORS</A></LI>
+	<LI><A HREF="#examples">EXAMPLES</A></LI>
+	<LI><A HREF="#author">AUTHOR</A></LI>
+	<LI><A HREF="#see also">SEE ALSO</A></LI>
+	<LI><A HREF="#acknowedgements">ACKNOWEDGEMENTS</A></LI>
 </UL>
 <!-- INDEX END -->
 
 <HR>
 <P>
-<H1><A NAME="NAME">NAME</A></H1>
+<H1><A NAME="name">NAME</A></H1>
+<P>Win32API::Net - Perl interface to the Windows NT LanManager API account management functions.</P>
 <P>
-Win32API::Net - Perl interface to the Windows NT LanManager API account
-management functions.
-
-<P>
 <HR>
-<H1><A NAME="SYNOPSIS">SYNOPSIS</A></H1>
-<P>
-use Win32API::Net;
-
+<H1><A NAME="synopsis">SYNOPSIS</A></H1>
+<P>use Win32API::Net;</P>
 <P>
 <HR>
-<H1><A NAME="NOTE_ON_VERSIONS_PRIOR_TO_0_08">NOTE ON VERSIONS PRIOR TO 0.08</A></H1>
-<P>
-As of version 0.08 of this module, the behaviour relating to empty strings
+<H1><A NAME="note on versions prior to 0.08">NOTE ON VERSIONS PRIOR TO 0.08</A></H1>
+<P>As of version 0.08 of this module, the behaviour relating to empty strings
 in input hashes has changed. The old behaviour converted such strings to
 the NULL pointer. The underlying API uses this value as an indication to
 not change the value stored for a given field. This meant that you were not
-able to clear (say) the logonScript field for a user using
-<CODE>UserSetInfo().</CODE>
-
-<P>
-The new behaviour is to leave the string as an empty C string which will
+able to clear (say) the logonScript field for a user using UserSetInfo().</P>
+<P>The new behaviour is to leave the string as an empty C string which will
 allow fields to be cleared.  To pass a NULL pointer to the underlying
 API call (and thus, to leave the field as it was), you need to set the
-corresponding field to <CODE>undef</CODE>.
-
-<P>
-WARNING: <STRONG>THIS IS AN INCOMPATIBLE CHANGE</STRONG>.
-<STRONG>EXISTING SCRIPTS THAT RELIED ON PRIOR BEHAVIOR MAY NEED TO BE MODIFIED</STRONG>.
-
+corresponding field to <CODE>undef</CODE>.</P>
+<P>WARNING: <STRONG>THIS IS AN INCOMPATIBLE CHANGE</STRONG>.
+<STRONG>EXISTING SCRIPTS THAT RELIED ON PRIOR BEHAVIOR MAY NEED TO BE MODIFIED</STRONG>.</P>
 <P>
 <HR>
-<H1><A NAME="DESCRIPTION">DESCRIPTION</A></H1>
-<P>
-Win32API::Net provides a more complete wrapper for the account management
+<H1><A NAME="description">DESCRIPTION</A></H1>
+<P>Win32API::Net provides a more complete wrapper for the account management
 parts of the NT LanManager API than do other similar packages. Most of what
-you can achieve with the native C++ API is possible with this package -
-albeit in a more Perl like manner by using references to pass information
-to and from functions.
-
-<P>
-For an understanding of the environment in which these functions operate
-see
-<A HREF="#DATA_STRUCTURES">DATA STRUCTURES</A>.
-
-<P>
-The following groups of functions are available:
-
-<DL>
-<DT><STRONG><A NAME="item_NET">NET USER FUNCTIONS</A></STRONG><DD>
-<DT><STRONG>NET GROUP FUNCTIONS</STRONG><DD>
-<DT><STRONG>NET LOCAL GROUP FUNCTIONS</STRONG><DD>
-<DT><STRONG>NET GET FUNCTIONS</STRONG><DD>
-</DL>
-<P>
-All functions return 0 on failure and 1 on success. Use the
-<CODE>Win32::GetLastError()</CODE> function to find out more information on why a function failed. In
-addition, some functions that take a hash reference to pass information in
-(e.g. <CODE>UserAdd()</CODE>) have a last argument that will allow more detailed information on which
-key/value pair was not properly specified.
-
-<P>
-<HR>
-<H2><A NAME="Using_References">Using References</A></H2>
-<P>
-References to hashes and arrays are used throughout this package to pass
-information into and out of functions.
-
+you can achieve with the native C++ API is possible with this package - albeit
+in a more Perl like manner by using references to pass information to and
+from functions.</P>
+<P>For an understanding of the environment in which these functions operate see
+<A HREF="#data structures">DATA STRUCTURES</A>.</P>
+<P>The following groups of functions are available:</P>
+<DL>
+<DT><STRONG><A NAME="item_NET_USER_FUNCTIONS"><A HREF="#net user functions">NET USER FUNCTIONS</A></A></STRONG><BR>
+<DD>
+<DT><STRONG><A NAME="item_NET_GROUP_FUNCTIONS"><A HREF="#net group functions">NET GROUP FUNCTIONS</A></A></STRONG><BR>
+<DD>
+<DT><STRONG><A NAME="item_NET_LOCAL_GROUP_FUNCTIONS"><A HREF="#net local group functions">NET LOCAL GROUP FUNCTIONS</A></A></STRONG><BR>
+<DD>
+<DT><STRONG><A NAME="item_NET_GET_FUNCTIONS"><A HREF="#net get functions">NET GET FUNCTIONS</A></A></STRONG><BR>
+<DD>
+</DL>
+<P>All functions return 0 on failure and 1 on success. Use the
+<CODE>Win32::GetLastError()</CODE> function to find out more information on why a
+function failed. In addition, some functions that take a hash reference
+to pass information in (e.g. <CODE>UserAdd()</CODE>) have a last argument that will
+allow more detailed information on which key/value pair was not properly
+specified.</P>
+<P>
+<H2><A NAME="using references">Using References</A></H2>
+<P>References to hashes and arrays are used throughout this package to pass
+information into and out of functions.</P>
 <DL>
-<DT><STRONG><A NAME="item_Using">Using Hash References</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_Using_Hash_References">Using Hash References</A></STRONG><BR>
+<DD>
 Where a hash reference is required you can use anything that evaluates to a
 hash reference. e.g.
-
-<P>
-<PRE>        $href = \%someHash;
-        UserAdd(server, 2, $hRef);
-</PRE>
-<P>
-Or more directly:
-
-<P>
-<PRE>        UserAdd(server, 2, \%someHash);
-</PRE>
-<DT><STRONG>Using Array references</STRONG><DD>
-<P>
+<PRE>
+        $href = \%someHash;
+        UserAdd(server, 2, $hRef);</PRE>
+<P>Or more directly:</P>
+<PRE>
+        UserAdd(server, 2, \%someHash);</PRE>
+<P></P>
+<DT><STRONG><A NAME="item_Using_Array_references">Using Array references</A></STRONG><BR>
+<DD>
 Array references are used in a similar manner to hash references. e.g.
-
-<P>
-<PRE>        $aref = \@someArray;
-        UserEnum(server, $aref);
-</PRE>
-<P>
-Or more directly:
-
-<P>
-<PRE>        UserEnum(server, \@someArray);
-</PRE>
-</DL>
-<P>
-Please note: Any <CODE>*Get*()</CODE> or <CODE>*Enum()</CODE> operation will first clear the contents of the input hash or array being
-referenced.
-
-<P>
-See <A HREF="#EXAMPLES">EXAMPLES</A> and the test.pl script for examples of usage.
-
+<PRE>
+        $aref = \@someArray;
+        UserEnum(server, $aref);</PRE>
+<P>Or more directly:</P>
+<PRE>
+        UserEnum(server, \@someArray);</PRE>
+<P></P></DL>
+<P>Please note: Any <CODE>*Get*()</CODE> or <CODE>*Enum()</CODE> operation will first clear the
+contents of the input hash or array being referenced.</P>
+<P>See <EM>EXAMPLES</EM> and the test.pl script for examples of usage.</P>
 <P>
 <HR>
-<H1><A NAME="DATA_STRUCTURES">DATA STRUCTURES</A></H1>
-<P>
-Most the the functions in the underlying API allow the programmer to pass
+<H1><A NAME="data structures">DATA STRUCTURES</A></H1>
+<P>Most the the functions in the underlying API allow the programmer to pass
 specify at runtime the amount of information that is supplied to the
-function. For example, the <CODE>NetUserGetInfo()</CODE> call allows the programmer to specify levels of 0, 1, 2, 3 (and others).
-Having specified this level, the function returns a structure that will
-contain different fields. For a level <CODE>0</CODE>, the function returns a structure that has only one field. For a supplied
-level of 1, the function returns a structure with <CODE>8</CODE> fields. The programmer needs to know in advance what fields should be
-provided or will be returned for a given level. This mechanism works very
-will since it effectively overloads functions without having to use
-different function prototypes. Perl provides better higher level data
-structures in the form of arrays and hashes. This package uses hashes as
-the means to pass these variable size structure into and out of functions.
-
-<P>
-For any function that takes a reference to a hash as input, the programmer
+function. For example, the <CODE>NetUserGetInfo()</CODE> call allows the programmer to
+specify levels of 0, 1, 2, 3 (and others). Having specified this level, the
+function returns a structure that will contain different fields. For a
+level <CODE>0</CODE>, the function returns a structure that has only one field. For a
+supplied level of 1, the function returns a structure with <CODE>8</CODE> fields. The
+programmer needs to know in advance what fields should be provided or will
+be returned for a given level. This mechanism works very will since it
+effectively overloads functions without having to use different function
+prototypes. Perl provides better higher level data structures in the form
+of arrays and hashes. This package uses hashes as the means to pass these
+variable size structure into and out of functions.</P>
+<P>For any function that takes a reference to a hash as input, the programmer
 is expected to provide appropriate keys and corresponding values as well as
 the level parameter. The called function will then takes the values out of
 the supplied hash and build the approprite structure to pass to the
-underlying API function.
-
-<P>
-For any function that takes a reference to a hash to recieve output, the
+underlying API function.</P>
+<P>For any function that takes a reference to a hash to recieve output, the
 function will first clear any keys an corresponding values in the supplied
 hash. It will call the underlying API call and will then return in the hash
-any keys and values that are applicable at the requested level.
-
-<P>
-Example:
-
-<P>
-The <CODE>UserGetInfo()</CODE> can takes a number of levels. If called with level <CODE>0</CODE>
+any keys and values that are applicable at the requested level.</P>
+<P>Example:</P>
+<P>The <CODE>UserGetInfo()</CODE> can takes a number of levels. If called with level <CODE>0</CODE>
 the supplied hash will, on return from the function, contain a single key
-and value - namely <STRONG>name</STRONG>/<STRONG>requested-users-name</STRONG>. If called with a level of <CODE>1</CODE> the supplied hash will, on return from the function, contain 8 keys and
-values. The returned keys are <CODE>name, password</CODE>, <A HREF="#item_passwordAge">passwordAge</A>,
-<A HREF="#item_priv">priv</A>, <A HREF="#item_homeDir">homeDir</A>, <A HREF="#item_comment">comment</A>, <A HREF="#item_flags">flags</A>, <A HREF="#item_scriptPath">scriptPath</A>. See
-<A HREF="#USER_INFO_FIELDS">USER INFO FIELDS</A> for more information on what these represent.
-
-<P>
-<HR>
-<H1><A NAME="Exports">Exports</A></H1>
-<P>
-By default, Win32API::Net exports no symbols into the callers namespace.
-The following tags can be used to selectively import symbols into the main
-namespace.
-
-<DL>
-<DT><STRONG><A NAME="item__User">:User</A></STRONG><DD>
-<P>
-Exports all symbols needed for the <CODE>User*()</CODE> functions. See <A HREF="#NET_USER_FUNCTIONS">NET USER FUNCTIONS</A>.
-
-<DT><STRONG><A NAME="item__Get">:Get</A></STRONG><DD>
-<P>
-Exports all symbols needed for the <CODE>Get*()</CODE> functions. See <A HREF="#NET_GET_FUNCTIONS">NET GET FUNCTIONS</A>.
-
-<DT><STRONG><A NAME="item__Group">:Group</A></STRONG><DD>
-<P>
-Exports all symbols needed for the <CODE>Group*()</CODE> functions. See <A HREF="#NET_GROUP_FUNCTIONS">NET GROUP FUNCTIONS</A>.
-
-<DT><STRONG><A NAME="item__LocalGroup">:LocalGroup</A></STRONG><DD>
-<P>
-Exports all symbols needed for the <CODE>LocalGroup*()</CODE> functions. See <A HREF="#NET_LOCAL_GROUP_FUNCTIONS">NET LOCAL GROUP FUNCTIONS</A>.
-
-</DL>
-<P>
-<HR>
-<H1><A NAME="NET_USER_FUNCTIONS">NET USER FUNCTIONS</A></H1>
-<P>
-The <CODE>User*()</CODE> functions operate on NT user accounts.
-
-<P>
-Administrator or Account Operator group membership is required to
+and value - namely <STRONG>name</STRONG>/<STRONG>requested-users-name</STRONG>. If called with a level
+of <CODE>1</CODE> the supplied hash will, on return from the function, contain 8 keys
+and values. The returned keys are <CODE>name, password</CODE>, <CODE>passwordAge</CODE>,
+<CODE>priv</CODE>, <CODE>homeDir</CODE>, <CODE>comment</CODE>, <CODE>flags</CODE>, <CODE>scriptPath</CODE>. See
+<A HREF="#user info fields">USER INFO FIELDS</A> for more information on what these represent.</P>
+<P>
+<HR>
+<H1><A NAME="exports">EXPORTS</A></H1>
+<P>By default, Win32API::Net exports no symbols into the callers namespace.
+The following tags can be used to selectively import symbols into the
+main namespace.</P>
+<DL>
+<DT><STRONG><A NAME="item_%3AUser"><CODE>:User</CODE></A></STRONG><BR>
+<DD>
+Exports all symbols needed for the <CODE>User*()</CODE> functions.
+See <A HREF="#net user functions">NET USER FUNCTIONS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_%3AGet"><CODE>:Get</CODE></A></STRONG><BR>
+<DD>
+Exports all symbols needed for the <CODE>Get*()</CODE> functions.
+See <A HREF="#net get functions">NET GET FUNCTIONS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_%3AGroup"><CODE>:Group</CODE></A></STRONG><BR>
+<DD>
+Exports all symbols needed for the <CODE>Group*()</CODE> functions.
+See <A HREF="#net group functions">NET GROUP FUNCTIONS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_%3ALocalGroup"><CODE>:LocalGroup</CODE></A></STRONG><BR>
+<DD>
+Exports all symbols needed for the <CODE>LocalGroup*()</CODE> functions.
+See <A HREF="#net local group functions">NET LOCAL GROUP FUNCTIONS</A>.
+<P></P></DL>
+<P>
+<HR>
+<H1><A NAME="net user functions">NET USER FUNCTIONS</A></H1>
+<P>The <CODE>User*()</CODE> functions operate on NT user accounts.</P>
+<P>Administrator or Account Operator group membership is required to
 successfully execute most of these functions on a remote server or on a
 computer that has local security enabled. Administrator privileges are
-required to add an Administrator Privilege account. There are some
+required to add an Administrator Privilege account.  There are some
 exceptions to this whereby a user can change some of their own settings
 where these don't conflict with 'administrative information' (e.g. full
-name).
-
-<P>
-The <A HREF="#item_server">server</A> field can be the empty string, in which case the function defaults to
-running on the local computer. If you leave this field blank then you
-should ensure that you are running the function on a PDC or BDC for your
-current domain. Use the support function <CODE>GetDCName()</CODE> to find out what the domain controller is, should you not be running this
-on the PDC.
-
-<P>
-All functions in this section are 'DOMAIN functions'. This means that, for
-example, the <CODE>UserGetLocalGroups()</CODE> function actually lists the domain's local groups of which the named user
-is a member.
-
-<P>
-The following functions are available.
-
-<P>
-<HR>
-<H2><A NAME="UserAdd_server_level_hash_err">UserAdd(server, level, hash, error)</A></H2>
-<P>
-Add a new user account. The user name is taken from the <A HREF="#item_name">name</A>-key's value in the supplied hash.
-
+name).</P>
+<P>The <CODE>server</CODE> field can be the empty string, in which case the function
+defaults to running on the local computer. If you leave this field blank
+then you should ensure that you are running the function on a PDC or BDC
+for your current domain. Use the support function <CODE>GetDCName()</CODE> to find out
+what the domain controller is, should you not be running this on the PDC.</P>
+<P>All functions in this section are 'DOMAIN functions'. This means that,
+for example, the <CODE>UserGetLocalGroups()</CODE> function actually lists the
+domain's local groups of which the named user is a member.</P>
+<P>The following functions are available.</P>
+<P>
+<H2><A NAME="useradd(server, level, hash, error)">UserAdd(server, level, hash, error)</A></H2>
+<P>Add a new user account. The user name is taken from the <CODE>name</CODE>-key's
+value in the supplied hash.</P>
 <DL>
-<DT><STRONG><A NAME="item_server">server - Scalar String</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_server_%2D_Scalar_String"><CODE>server</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The server on which to add the account.
-
-<DT><STRONG><A NAME="item_level">level - Scalar Int</A></STRONG><DD>
-<P>
-Level of information provided in hash. This can be either 1, 2 or 3. See <A HREF="#USER_INFO_LEVELS">USER INFO LEVELS</A>.
-
-<DT><STRONG><A NAME="item_hash">hash - Hash Reference</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_level_%2D_Scalar_Int"><CODE>level</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
+Level of information provided in hash. This can be either 1, 2 or 3.
+See <A HREF="#user info levels">USER INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_hash_%2D_Hash_Reference"><CODE>hash</CODE> - Hash Reference</A></STRONG><BR>
+<DD>
 The information to use to add this account. This should have all the
-appropriate keys and values required for <A HREF="#item_level">level</A>.
-
-<DT><STRONG><A NAME="item_error">error - Scalar Int</A></STRONG><DD>
-<P>
+appropriate keys and values required for <CODE>level</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_error_%2D_Scalar_Int"><CODE>error</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 Provides information on which field in the hash was not properly specified.
-See <A HREF="#USER_FIELD_ERRORS">USER FIELD ERRORS</A> for more information about what values this can take.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserChangePassword_server_user_">UserChangePassword(server, user, old, new)</A></H2>
-<P>
-Changes the password for <A HREF="#item_user">user</A>. If the policy of the machine/domain only allows password changes if the <A HREF="#item_user">user</A> is logged on then the <A HREF="#item_user">user</A>
+See <A HREF="#user field errors">USER FIELD ERRORS</A> for more information about what values this can
+take.
+<P></P></DL>
+<P>
+<H2><A NAME="userchangepassword(server, user, old, new)">UserChangePassword(server, user, old, new)</A></H2>
+<P>Changes the password for <CODE>user</CODE>. If the policy of the machine/domain
+only allows password changes if the <CODE>user</CODE> is logged on then the <CODE>user</CODE>
 must be logged on to execute this function. With Administrator or Account
 Operator privilege you can use this function to change anyone's password,
-so long as you know the old password.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to change the password.
-
-<DT><STRONG><A NAME="item_user">user - Scalar String</A></STRONG><DD>
-<P>
-The name of the <A HREF="#item_user">user</A> whose password is being changed.
-
-<DT><STRONG><A NAME="item_old">old - Scalar String</A></STRONG><DD>
-<P>
-The existing password for <A HREF="#item_user">user</A>.
-
-<DT><STRONG><A NAME="item_new">new - Scalar String</A></STRONG><DD>
-<P>
-The new password for <A HREF="#item_user">user</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserDel_server_user_">UserDel(server, user)</A></H2>
-<P>
-Deletes the specified <A HREF="#item_user">user</A> account. Administrator or Account Operator privilege is required to execute
-this function.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to delete the <A HREF="#item_user">user</A>.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> account to delete.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserEnum_server_array_filter_">UserEnum(server, array[, filter])</A></H2>
-<P>
-Enumerates all the accounts on server that satisfy <A HREF="#item_filter">filter</A>. Unlike the
-<CODE>NetUserEnum()</CODE> function in the API, this function does not allow you to specify a level
-(internally it is hardcoded to 0). In Perl it is trivial to implement the
-equivalent function (should you need it) - see
-<A HREF="#Example_1">Example 1</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to enumerate the accounts satisfying <A HREF="#item_filter">filter</A>.
-
-<DT><STRONG><A NAME="item_array">array - Array Reference</A></STRONG><DD>
-<P>
-The array that will hold the names of all users on <A HREF="#item_server">server</A> whose accounts match <A HREF="#item_filter">filter</A>.
-
-<DT><STRONG><A NAME="item_filter">filter - Scalar Int (optional)</A></STRONG><DD>
-<P>
-The filter to apply (see <A HREF="#USER_ENUM_FILTER">USER ENUM FILTER</A>). This argument is optional and if not present a default of <A HREF="#item_FILTER_NORMAL_ACCOUNT">FILTER_NORMAL_ACCOUNT</A> is used.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserGetGroups_server_user_arra">UserGetGroups(server, user, array)</A></H2>
-<P>
-Get the global groups for which <A HREF="#item_user">user</A> is a member. It returns the group names in <A HREF="#item_array">array</A>. Unlike the <CODE>NetUserGetGroups()</CODE> function in the API, this function does not allow you to specify a level
-(internally is hardcoded to 0). In Perl it is trivial to implement the
-equivalent function (in the unlikely event that you might need it).
-
+so long as you know the old password.</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> from which to get the groups of which <A HREF="#item_user">user</A> is a member.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> whose group membership you wish to examine.
-
-<DT><STRONG>array - Scalar String</STRONG><DD>
-<P>
-The array that will contain the group names to which <A HREF="#item_user">user</A> belongs.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserGetInfo_server_user_level_">UserGetInfo(server, user, level, hash)</A></H2>
-<P>
-Returns the information at the specified <A HREF="#item_level">level</A> for the named <A HREF="#item_user">user</A>
-in <A HREF="#item_hash">hash</A>.
-
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to change the password.
+<P></P>
+<DT><STRONG><A NAME="item_user_%2D_Scalar_String"><CODE>user</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The name of the <CODE>user</CODE> whose password is being changed.
+<P></P>
+<DT><STRONG><A NAME="item_old_%2D_Scalar_String"><CODE>old</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The existing password for <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_new_%2D_Scalar_String"><CODE>new</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The new password for <CODE>user</CODE>.
+<P></P></DL>
+<P>
+<H2><A NAME="userdel(server, user)">UserDel(server, user)</A></H2>
+<P>Deletes the specified <CODE>user</CODE> account. Administrator or Account Operator
+privilege is required to execute this function.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to delete the <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> account to delete.
+<P></P></DL>
+<P>
+<H2><A NAME="userenum(server, array[, filter])">UserEnum(server, array[, filter])</A></H2>
+<P>Enumerates all the accounts on server that satisfy <CODE>filter</CODE>. Unlike the
+<CODE>NetUserEnum()</CODE> function in the API, this function does not allow you
+to specify a level (internally it is hardcoded to 0). In Perl it is
+trivial to implement the equivalent function (should you need it) - see
+<A HREF="#example 1">Example 1</A>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to enumerate the accounts satisfying <CODE>filter</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_array_%2D_Array_Reference"><CODE>array</CODE> - Array Reference</A></STRONG><BR>
+<DD>
+The array that will hold the names of all users on <CODE>server</CODE> whose
+accounts match <CODE>filter</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_Int"><CODE>filter</CODE> - Scalar Int (optional)</A></STRONG><BR>
+<DD>
+The filter to apply (see <A HREF="#user enum filter">USER ENUM FILTER</A>). This argument is optional
+and if not present a default of <A HREF="#item_FILTER_NORMAL_ACCOUNT"><CODE>FILTER_NORMAL_ACCOUNT</CODE></A> is used.
+<P></P></DL>
+<P>
+<H2><A NAME="usergetgroups(server, user, array)">UserGetGroups(server, user, array)</A></H2>
+<P>Get the global groups for which <CODE>user</CODE> is a member. It returns the group
+names in <CODE>array</CODE>. Unlike the <CODE>NetUserGetGroups()</CODE> function in the API,
+this function does not allow you to specify a level (internally is
+hardcoded to 0). In Perl it is trivial to implement the equivalent function
+(in the unlikely event that you might need it).</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> from which to get the requested information about <A HREF="#item_user">user</A>.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> whose information you want.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
-One of: 0, 1, 2, 3, 10, 11 and 20. See <A HREF="#USER_INFO_LEVELS">USER INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to get the groups of which <CODE>user</CODE> is a member.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> whose group membership you wish to examine.
+<P></P>
+<DT><STRONG><A NAME="item_array_%2D_Scalar_String"><CODE>array</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The array that will contain the group names to which <CODE>user</CODE> belongs.
+<P></P></DL>
+<P>
+<H2><A NAME="usergetinfo(server, user, level, hash)">UserGetInfo(server, user, level, hash)</A></H2>
+<P>Returns the information at the specified <CODE>level</CODE> for the named <CODE>user</CODE>
+in <CODE>hash</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to get the requested information about <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> whose information you want.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
+One of: 0, 1, 2, 3, 10, 11 and 20. See <A HREF="#user info levels">USER INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
 The hash that will contain the keys and values for the information
-requested. See <A HREF="#USER_INFO_FIELDS">USER INFO FIELDS</A> for information about which keys are present in a given level.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserGetLocalGroups_server_user_">UserGetLocalGroups(server, user, array[, flags])</A></H2>
-<P>
-Gets the names of the local groups of which <A HREF="#item_user">user</A> is a member. Unlike the <CODE>NetUserEnum()</CODE> function in the API, this function does not allow you to specify a level.
-Since the underlying API restricts you to level 0 there really isn't any
-need to include it...
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The server from which to get the local groups of which <A HREF="#item_user">user</A> is a member.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> whose local group membership you wish to enumerate.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array that will hold the names of the local groups to which <A HREF="#item_user">user</A>
+requested. See <A HREF="#user info fields">USER INFO FIELDS</A> for information about which keys are
+present in a given level.
+<P></P></DL>
+<P>
+<H2><A NAME="usergetlocalgroups(server, user, array[, flags])">UserGetLocalGroups(server, user, array[, flags])</A></H2>
+<P>Gets the names of the local groups of which <CODE>user</CODE> is a member. Unlike
+the <CODE>NetUserEnum()</CODE> function in the API, this function does not allow you
+to specify a level. Since the underlying API restricts you to level 0 there
+really isn't any need to include it...</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The server from which to get the local groups of which <CODE>user</CODE> is a member.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> whose local group membership you wish to enumerate.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array that will hold the names of the local groups to which <CODE>user</CODE>
 belongs.
-
-<DT><STRONG><A NAME="item_flags">flags - Scalar Int &lt;em&gt;(optional)&lt;/em&gt;</A></STRONG><DD>
-<P>
-Either <CODE>Win32API::Net::LG_INCLUDE_INDIRECT()</CODE> or 0. if <A HREF="#item_flags">flags</A> is omitted, the function internally uses 0. Specifying <CODE>LG_INCLUDE_INDIRECT()</CODE>
-will include in the list the names of the groups of which the <A HREF="#item_user">user</A> is indirectly a member (e.g. by being in a global group that is a member of
-a local group).
-
-<P>
-This field can take no other values.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="UserModalsGet_">UserModalsGet()</A></H2>
-<P>
-This function is not currently implemented.
-
-<P>
-<HR>
-<H2><A NAME="UserModalsSet_">UserModalsSet()</A></H2>
-<P>
-This function is not currently implemented.
-
-<P>
-<HR>
-<H2><A NAME="UserSetGroups_server_user_arra">UserSetGroups(server, user, array)</A></H2>
-<P>
-Sets the (global) group membership for <A HREF="#item_user">user</A> to the specified groups. Unlike the API function <CODE>NetUserSetGroups()</CODE>, this function does not take a
-<A HREF="#item_level">level</A> parameter (mainly because this option is largely redundant).
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which you wish to set the group membership for <A HREF="#item_user">user</A>.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> whose group membership you wish to set.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array containing the (global) group names to set the <A HREF="#item_user">user</A>s membership of.
-
-</DL>
-<P>
-This function will fail if any of the group names specified do not exist.
-
-<P>
-<HR>
-<H2><A NAME="UserSetInfo_server_user_level_">UserSetInfo(server, user, level, hash, error)</A></H2>
-<P>
-Sets the info for <A HREF="#item_user">user</A> according to the information contained in <A HREF="#item_hash">hash</A>
-for <A HREF="#item_level">level</A> (see <A HREF="#USER_INFO_LEVELS">USER INFO LEVELS</A>).
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which you wish to change the info for <A HREF="#item_user">user</A>.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> whose info you wish to change.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_flags_%2D_Scalar_Int_%3Cem%3E%28optional%29%3C%2Fe"><CODE>flags</CODE> - Scalar Int &lt;em&gt;(optional)&lt;/em&gt;</A></STRONG><BR>
+<DD>
+Either <CODE>Win32API::Net::LG_INCLUDE_INDIRECT()</CODE> or 0. if <CODE>flags</CODE> is
+omitted, the function internally uses 0. Specifying <CODE>LG_INCLUDE_INDIRECT()</CODE>
+will include in the list the names of the groups of which the <CODE>user</CODE> is
+indirectly a member (e.g. by being in a global group that is a member of a
+local group).
+<P>This field can take no other values.</P>
+<P></P></DL>
+<P>
+<H2><A NAME="usermodalsget()"><CODE>UserModalsGet()</CODE></A></H2>
+<P>This function is not currently implemented.</P>
+<P>
+<H2><A NAME="usermodalsset()"><CODE>UserModalsSet()</CODE></A></H2>
+<P>This function is not currently implemented.</P>
+<P>
+<H2><A NAME="usersetgroups(server, user, array)">UserSetGroups(server, user, array)</A></H2>
+<P>Sets the (global) group membership for <CODE>user</CODE> to the specified groups.
+Unlike the API function <CODE>NetUserSetGroups()</CODE>, this function does not take a
+<CODE>level</CODE> parameter (mainly because this option is largely redundant).</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which you wish to set the group membership for <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> whose group membership you wish to set.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array containing the (global) group names to set the <CODE>user</CODE>s
+membership of.
+<P></P></DL>
+<P>This function will fail if any of the group names specified do not exist.</P>
+<P>
+<H2><A NAME="usersetinfo(server, user, level, hash, error)">UserSetInfo(server, user, level, hash, error)</A></H2>
+<P>Sets the info for <CODE>user</CODE> according to the information contained in <CODE>hash</CODE>
+for <CODE>level</CODE> (see <A HREF="#user info levels">USER INFO LEVELS</A>).</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which you wish to change the info for <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> whose info you wish to change.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
 One of 0, 1, 2, 3, or 20 (according to Microsoft documentation). In
 practice, you can use all the 10xx levels as well to change most of the
-individual properties of the named <A HREF="#item_user">user</A> - although this may not be supported in future...
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
+individual properties of the named <CODE>user</CODE> - although this may not be
+supported in future...
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
 The hash that will contain the necessary key/value pairs required for
-<A HREF="#item_level">level</A> (see <A HREF="#USER_INFO_LEVELS">USER INFO LEVELS</A>).
-
-<DT><STRONG>error - Scalar Int</STRONG><DD>
-<P>
-Provides information on which field in <A HREF="#item_hash">hash</A> were not properly specified. See <A HREF="#USER_FIELD_ERRORS">USER FIELD ERRORS</A> for more information about what values can be returned in this field.
-
-</DL>
-<P>
-<HR>
-<H1><A NAME="NET_GROUP_FUNCTIONS">NET GROUP FUNCTIONS</A></H1>
-<P>
-The <CODE>Group*()</CODE> functions all operate only on global groups. To modify local groups, use
-the corresponding <CODE>LocalGroup*()</CODE> functions.
-
-<P>
-Administrator or Account Operator group membership is required to
-successfully execute most of these functions on a remote server or on a
-computer that has local security enabled.
-
-<P>
-The <A HREF="#item_server">server</A> field can be the empty string, in which case the function defaults to
-running on the local computer. If you leave this field blank then you
-should ensure that you are running the function on a PDC or BDC for your
-current domain. Use the support function <CODE>GetDCName()</CODE> to find out what the domain controller is, should you not be running this
-on the PDC.
-
-<P>
-The following functions are available.
-
-<P>
-<HR>
-<H2><A NAME="GroupAdd_server_level_hash_er">GroupAdd(server, level, hash, error)</A></H2>
-<P>
-Adds the specified group.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to add the group.
-
-<DT><STRONG>level - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information contained in <A HREF="#item_hash">hash</A>. This can be one of 0, 1 or 2. See <A HREF="#GROUP_INFO_LEVELS">GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
-A hash containing the required key/value pairs for <A HREF="#item_level">level</A>.
-
-<DT><STRONG>error - Scalar Int</STRONG><DD>
-<P>
-Provides information on which field in <A HREF="#item_hash">hash</A> was not properly specified. See <A HREF="#GROUP_FIELD_ERRORS">GROUP FIELD ERRORS</A> for more information about what values can be returned in this field.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupAddUser_server_group_user">GroupAddUser(server, group, user)</A></H2>
-<P>
-Adds the specified <A HREF="#item_user">user</A> to the specified <A HREF="#item_group">group</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to add the <A HREF="#item_user">user</A> to <A HREF="#item_group">group</A>.
-
-<DT><STRONG><A NAME="item_group">group - Scalar String</A></STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to add the <A HREF="#item_user">user</A> to.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> to add to <A HREF="#item_group">group</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupDel_server_group_">GroupDel(server, group)</A></H2>
-<P>
-Deletes the specified global group.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to delete the named <A HREF="#item_group">group</A>.
-
-<DT><STRONG>group -Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to delete.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupDelUser_server_group_user">GroupDelUser(server, group, user)</A></H2>
-<P>
-Deletes the specified user from the specified group.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to delete <A HREF="#item_user">user</A> from <A HREF="#item_group">group</A>.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> from which to delete <A HREF="#item_user">user</A>.
-
-<DT><STRONG>user - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_user">user</A> to delete from <A HREF="#item_group">group</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupEnum_server_array_">GroupEnum(server, array)</A></H2>
-<P>
-Enumerates all the global groups on the server. Unlike the API call
-<CODE>NetGroupEnum()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 0). In Perl it is trivial to implement the equivalent function
-(should you need it).
-
+<CODE>level</CODE> (see <A HREF="#user info levels">USER INFO LEVELS</A>).
+<P></P>
+<DT><STRONG><CODE>error</CODE> - Scalar Int</STRONG><BR>
+<DD>
+Provides information on which field in <CODE>hash</CODE> were not properly
+specified. See <A HREF="#user field errors">USER FIELD ERRORS</A> for more information about what
+values can be returned in this field.
+<P></P></DL>
+<P>
+<HR>
+<H1><A NAME="net group functions">NET GROUP FUNCTIONS</A></H1>
+<P>The <CODE>Group*()</CODE> functions all operate only on global groups. To modify
+local groups, use the corresponding <CODE>LocalGroup*()</CODE> functions.</P>
+<P>Administrator or Account Operator group membership is required to
+successfully execute most of these functions on a remote server or on
+a computer that has local security enabled.</P>
+<P>The <CODE>server</CODE> field can be the empty string, in which case the function
+defaults to running on the local computer. If you leave this field blank
+then you should ensure that you are running the function on a PDC or BDC
+for your current domain. Use the support function <CODE>GetDCName()</CODE> to find out
+what the domain controller is, should you not be running this on the PDC.</P>
+<P>The following functions are available.</P>
+<P>
+<H2><A NAME="groupadd(server, level, hash, error)">GroupAdd(server, level, hash, error)</A></H2>
+<P>Adds the specified group.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to add the group.
+<P></P>
+<DT><STRONG><A NAME="item_level_%2D_Scalar_String"><CODE>level</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information contained in <CODE>hash</CODE>. This can be one of 0, 1
+or 2. See <A HREF="#group info levels">GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
+A hash containing the required key/value pairs for <CODE>level</CODE>.
+<P></P>
+<DT><STRONG><CODE>error</CODE> - Scalar Int</STRONG><BR>
+<DD>
+Provides information on which field in <CODE>hash</CODE> was not properly specified.
+See <A HREF="#group field errors">GROUP FIELD ERRORS</A> for more information about what values can be
+returned in this field.
+<P></P></DL>
+<P>
+<H2><A NAME="groupadduser(server, group, user)">GroupAddUser(server, group, user)</A></H2>
+<P>Adds the specified <CODE>user</CODE> to the specified <CODE>group</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to add the <CODE>user</CODE> to <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_group_%2D_Scalar_String"><CODE>group</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The <CODE>group</CODE> to add the <CODE>user</CODE> to.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> to add to <CODE>group</CODE>.
+<P></P></DL>
+<P>
+<H2><A NAME="groupdel(server, group)">GroupDel(server, group)</A></H2>
+<P>Deletes the specified global group.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to delete the named <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_group_%2DScalar_String"><CODE>group</CODE> -Scalar String</A></STRONG><BR>
+<DD>
+The <CODE>group</CODE> to delete.
+<P></P></DL>
+<P>
+<H2><A NAME="groupdeluser(server, group, user)">GroupDelUser(server, group, user)</A></H2>
+<P>Deletes the specified user from the specified group.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to delete <CODE>user</CODE> from <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> from which to delete <CODE>user</CODE>.
+<P></P>
+<DT><STRONG><CODE>user</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>user</CODE> to delete from <CODE>group</CODE>.
+<P></P></DL>
+<P>
+<H2><A NAME="groupenum(server, array)">GroupEnum(server, array)</A></H2>
+<P>Enumerates all the global groups on the server. Unlike the API call
+<CODE>NetGroupEnum()</CODE>, this function does not allow you to specify a level
+(internally it is hardcoded to 0). In Perl it is trivial to implement
+the equivalent function (should you need it).</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
 The server on which to enumerate the (global) <CODE>groups</CODE>.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-An array that, on return, will contain the <A HREF="#item_group">group</A> names.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupGetInfo_server_group_leve">GroupGetInfo(server, group, level, hash)</A></H2>
-<P>
-Retrieves <A HREF="#item_level">level</A> information for <A HREF="#item_group">group</A> returning information in
-<A HREF="#item_hash">hash</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> from which to get the group information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose information you wish to obtain.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information you wish to retrieve. This can be one of 1, 2 or 3. See <A HREF="#GROUP_INFO_LEVELS">GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+An array that, on return, will contain the <CODE>group</CODE> names.
+<P></P></DL>
+<P>
+<H2><A NAME="groupgetinfo(server, group, level, hash)">GroupGetInfo(server, group, level, hash)</A></H2>
+<P>Retrieves <CODE>level</CODE> information for <CODE>group</CODE> returning information in
+<CODE>hash</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to get the group information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose information you wish to obtain.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information you wish to retrieve. This can be one of 1, 2
+or 3. See <A HREF="#group info levels">GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
 The hash that will contain the information.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupGetUsers_server_group_arr">GroupGetUsers(server, group, array)</A></H2>
-<P>
-Returns (in <A HREF="#item_array">array</A>) the users belonging to <A HREF="#item_group">group</A>. Unlike the API call <CODE>NetGroupGetUsers()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 0). In Perl it is trivial to implement the equivalent function
-(should you need it).
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> from which to get the group information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose users you wish to obtain.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
+<P></P></DL>
 <P>
+<H2><A NAME="groupgetusers(server, group, array)">GroupGetUsers(server, group, array)</A></H2>
+<P>Returns (in <CODE>array</CODE>) the users belonging to <CODE>group</CODE>. Unlike the API
+call <CODE>NetGroupGetUsers()</CODE>, this function does not allow you to specify
+a level (internally it is hardcoded to 0). In Perl it is trivial to
+implement the equivalent function (should you need it).</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to get the group information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose users you wish to obtain.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
 The array to hold the user names retrieved.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupSetInfo_server_group_leve">GroupSetInfo(server, group, level, hash, error)</A></H2>
-<P>
-Sets the information for <A HREF="#item_group">group</A> according to <A HREF="#item_level">level</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to set the <A HREF="#item_group">group</A> information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose information you wish to set.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information you are supplying in <A HREF="#item_hash">hash</A>. Level can be one of 0, 1 or 2. See <A HREF="#GROUP_INFO_LEVELS">GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
+<P></P></DL>
 <P>
-The hash containing the required key/value pairs for <A HREF="#item_level">level</A>.
-
-<DT><STRONG>error - Scalar String</STRONG><DD>
-<P>
-On failure, the <A HREF="#item_error">error</A> parameter will contain a value which specifies which field caused the
-error. See <A HREF="#GROUP_FIELD_ERRORS">GROUP FIELD ERRORS</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="GroupSetUsers_server_group_arr">GroupSetUsers(server, group, array)</A></H2>
-<P>
-Sets the membership of <A HREF="#item_group">group</A> to contain only those users specified in <A HREF="#item_array">array</A>. This function will fail if any user names contained in the array are not
-valid users on <A HREF="#item_server">server</A>. On successful completion
-<A HREF="#item_group">group</A> will contain only the users specified in <A HREF="#item_array">array</A>. Use the functions <CODE>GroupAddUser()/GroupDelUser()</CODE> to add and delete individual users from a group.
-
+<H2><A NAME="groupsetinfo(server, group, level, hash, error)">GroupSetInfo(server, group, level, hash, error)</A></H2>
+<P>Sets the information for <CODE>group</CODE> according to <CODE>level</CODE>.</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to set the <A HREF="#item_group">group</A> membership.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to set the membership of.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array containing the names of all users who will be members of <A HREF="#item_group">group</A>.
-
-</DL>
-<P>
-<HR>
-<H1><A NAME="NET_LOCAL_GROUP_FUNCTIONS">NET LOCAL GROUP FUNCTIONS</A></H1>
-<P>
-The <CODE>LocalGroup*()</CODE> functions operate on local groups. If these functions are run on a PDC then
-these functions operate on the domains local groups.
-
-<P>
-Administrator or Account Operator group membership is required to
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to set the <CODE>group</CODE> information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose information you wish to set.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information you are supplying in <CODE>hash</CODE>.  Level can be
+one of 0, 1 or 2. See <A HREF="#group info levels">GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
+The hash containing the required key/value pairs for <CODE>level</CODE>.
+<P></P>
+<DT><STRONG><A NAME="item_error_%2D_Scalar_String"><CODE>error</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+On failure, the <CODE>error</CODE> parameter will contain a value which specifies
+which field caused the error. See <A HREF="#group field errors">GROUP FIELD ERRORS</A>.
+<P></P></DL>
+<P>
+<H2><A NAME="groupsetusers(server, group, array)">GroupSetUsers(server, group, array)</A></H2>
+<P>Sets the membership of <CODE>group</CODE> to contain only those users specified
+in <CODE>array</CODE>. This function will fail if any user names contained in the
+array are not valid users on <CODE>server</CODE>.  On successful completion
+<CODE>group</CODE> will contain only the users specified in <CODE>array</CODE>.  Use the
+functions <CODE>GroupAddUser()/GroupDelUser()</CODE> to add and delete individual
+users from a group.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to set the <CODE>group</CODE> membership.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> to set the membership of.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array containing the names of all users who will be members of <CODE>group</CODE>.
+<P></P></DL>
+<P>
+<HR>
+<H1><A NAME="net local group functions">NET LOCAL GROUP FUNCTIONS</A></H1>
+<P>The <CODE>LocalGroup*()</CODE> functions operate on local groups. If these
+functions are run on a PDC then these functions operate on the domains
+local groups.</P>
+<P>Administrator or Account Operator group membership is required to
 successfully execute most of these functions on a remote server or on a
-computer that has local security enabled.
-
-<P>
-The <A HREF="#item_server">server</A> field can be the empty string, in which case the function defaults to
-running on the local computer. If you leave this field blank then you
-should ensure that you are running the function on a PDC or BDC for your
-current domain. Use the support function <CODE>GetDCName()</CODE> to find out what the domain controller is, should you not be running this
-on the PDC.
-
-<P>
-The following functions are available.
-
-<P>
-<HR>
-<H2><A NAME="LocalGroupAdd_server_level_has">LocalGroupAdd(server, level, hash, error)</A></H2>
-<P>
-Adds the specified group. The name of the group is contained in the <A HREF="#item_name">name</A>
-key of <A HREF="#item_hash">hash</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to add the group.
-
-<DT><STRONG>level - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information contained in <A HREF="#item_hash">hash</A>. This can be one of 0 or 1. See <A HREF="#LOCAL_GROUP_INFO_LEVELS">LOCAL GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
-A hash containing the required key/value pairs for <A HREF="#item_level">level</A>.
-
-<DT><STRONG>error - Scalar Int</STRONG><DD>
-<P>
-Provides information on which field in <A HREF="#item_hash">hash</A> wasn't properly specified. See <A HREF="#LOCAL_GROUP_FIELD_ERRORS">LOCAL GROUP FIELD ERRORS</A> for more information about what values this can take.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupAddMember_">LocalGroupAddMember()</A></H2>
-<P>
-This function is obselete in the underlying API and has therefore not been
-implemented. Use <CODE>LocalGroupAddMembers</CODE> instead.
-
-<P>
-<HR>
-<H2><A NAME="LocalGroupAddMembers_server_gro">LocalGroupAddMembers(server, group, array)</A></H2>
-<P>
-Adds the specified users (members) to the local group. Unlike the API
-function <CODE>NetLocalGroupAddMembers()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 3). This was done to simplify the implementation. To add a
-'local' user, you need only specify the <A HREF="#item_name">name</A>. You can also specify users using the
-<CODE>DOMAIN\user</CODE> syntax.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to add the members to <A HREF="#item_group">group</A>.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to add the members to.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array containing the members to add to <A HREF="#item_group">group</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupDel_server_group_">LocalGroupDel(server, group)</A></H2>
-<P>
-Delete the specified local group.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to delete the named <A HREF="#item_group">group</A>.
-
-<DT><STRONG>group -Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to delete.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupDelMember_">LocalGroupDelMember()</A></H2>
-<P>
-This function is obselete in the underlying API and has therefore not been
-implemented. Use <CODE>LocalGroupDelMembers()</CODE> instead.
-
-<P>
-<HR>
-<H2><A NAME="LocalGroupDelMembers_server_gro">LocalGroupDelMembers(server, group, array)</A></H2>
-<P>
-Delete the specified users (members) of the local group. Unlike the API
-function <CODE>NetLocalGroupDelMembers()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 3). This was done to simplify the implementation. To delete a
-'local' user, you need only specify the <A HREF="#item_name">name</A>. You can also specify users using the <CODE>DOMAIN\user</CODE>
-syntax.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to delete the members from <A HREF="#item_group">group</A>.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> to delete the members from.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array containing the members to delete from <A HREF="#item_group">group</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupEnum_server_array_">LocalGroupEnum(server, array)</A></H2>
-<P>
-Enumerates all the local groups on the server. Unlike the API call
-<CODE>NetLocalGroupEnum()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 0). In Perl it is trivial to implement the equivalent function
-(should you need it).
-
+computer that has local security enabled.</P>
+<P>The <CODE>server</CODE> field can be the empty string, in which case the function
+defaults to running on the local computer. If you leave this field blank
+then you should ensure that you are running the function on a PDC or BDC
+for your current domain. Use the support function <CODE>GetDCName()</CODE> to find
+out what the domain controller is, should you not be running this on the PDC.</P>
+<P>The following functions are available.</P>
+<P>
+<H2><A NAME="localgroupadd(server, level, hash, error)">LocalGroupAdd(server, level, hash, error)</A></H2>
+<P>Adds the specified group. The name of the group is contained in the <CODE>name</CODE>
+key of <CODE>hash</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to add the group.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information contained in <CODE>hash</CODE>. This can be one of 0 or 1.
+See <A HREF="#local group info levels">LOCAL GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
+A hash containing the required key/value pairs for <CODE>level</CODE>.
+<P></P>
+<DT><STRONG><CODE>error</CODE> - Scalar Int</STRONG><BR>
+<DD>
+Provides information on which field in <CODE>hash</CODE> wasn't properly specified.
+See <A HREF="#local group field errors">LOCAL GROUP FIELD ERRORS</A> for more information about what values
+this can take.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupaddmember()"><CODE>LocalGroupAddMember()</CODE></A></H2>
+<P>This function is obselete in the underlying API and has therefore not
+been implemented.  Use <CODE>LocalGroupAddMembers</CODE> instead.</P>
+<P>
+<H2><A NAME="localgroupaddmembers(server, group, array)">LocalGroupAddMembers(server, group, array)</A></H2>
+<P>Adds the specified users (members) to the local group. Unlike the API
+function <CODE>NetLocalGroupAddMembers()</CODE>, this function does not allow you
+to specify a level (internally it is hardcoded to 3).
+This was done to simplify the implementation. To add a 'local' user, you
+need only specify the <CODE>name</CODE>. You can also specify users using the
+<CODE>DOMAIN\user</CODE> syntax.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to add the members to <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> to add the members to.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array containing the members to add to <CODE>group</CODE>.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupdel(server, group)">LocalGroupDel(server, group)</A></H2>
+<P>Delete the specified local group.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to delete the named <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><CODE>group</CODE> -Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> to delete.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupdelmember()"><CODE>LocalGroupDelMember()</CODE></A></H2>
+<P>This function is obselete in the underlying API and has therefore not
+been implemented.  Use <CODE>LocalGroupDelMembers()</CODE> instead.</P>
+<P>
+<H2><A NAME="localgroupdelmembers(server, group, array)">LocalGroupDelMembers(server, group, array)</A></H2>
+<P>Delete the specified users (members) of the local group. Unlike the API
+function <CODE>NetLocalGroupDelMembers()</CODE>, this function does not allow you
+to specify a level (internally it is hardcoded to 3). This was done to
+simplify the implementation. To delete a 'local' user, you need only
+specify the <CODE>name</CODE>. You can also specify users using the <CODE>DOMAIN\user</CODE>
+syntax.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to delete the members from <CODE>group</CODE>.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> to delete the members from.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array containing the members to delete from <CODE>group</CODE>.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupenum(server, array)">LocalGroupEnum(server, array)</A></H2>
+<P>Enumerates all the local groups on the server. Unlike the API call
+<CODE>NetLocalGroupEnum()</CODE>, this function does not allow you to specify a
+level (internally it is hardcoded to 0). In Perl it is trivial to
+implement the equivalent function (should you need it).</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
 The server on which to enumerate the (local) <CODE>groups</CODE>.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
-The array to hold the <A HREF="#item_group">group</A> names.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupGetInfo_server_group_">LocalGroupGetInfo(server, group, level, hash)</A></H2>
-<P>
-Retrieves <A HREF="#item_level">level</A> information for <A HREF="#item_group">group</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> from which to get the group information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose information you wish to obtain.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information you wish to retrieve. This can be 0 or 1. See <A HREF="#LOCAL_GROUP_INFO_LEVELS">LOCAL GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
+The array to hold the <CODE>group</CODE> names.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupgetinfo(server, group, level, hash)">LocalGroupGetInfo(server, group, level, hash)</A></H2>
+<P>Retrieves <CODE>level</CODE> information for <CODE>group</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to get the group information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose information you wish to obtain.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information you wish to retrieve. This can be 0 or 1.
+See <A HREF="#local group info levels">LOCAL GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
 The hash that will contain the information.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupGetMembers_server_gro">LocalGroupGetMembers(server, group, hash)</A></H2>
-<P>
-Retrieves the users belonging to <A HREF="#item_group">group</A>. Unlike the API call
-<CODE>NetLocalGroupGetUsers()</CODE>, this function does not allow you to specify a level (internally it is
-hardcoded to 0). In Perl it is trivial to implement the equivalent function
-(should you need it).
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
+<P></P></DL>
 <P>
-The <A HREF="#item_server">server</A> from which to retrieve the group information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose users you wish to obtain.
-
-<DT><STRONG>array - Array Reference</STRONG><DD>
-<P>
+<H2><A NAME="localgroupgetmembers(server, group, hash)">LocalGroupGetMembers(server, group, hash)</A></H2>
+<P>Retrieves the users belonging to <CODE>group</CODE>. Unlike the API call
+<CODE>NetLocalGroupGetUsers()</CODE>, this function does not allow you to specify
+a level (internally it is hardcoded to 0). In Perl it is trivial to
+implement the equivalent function (should you need it).</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> from which to retrieve the group information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose users you wish to obtain.
+<P></P>
+<DT><STRONG><CODE>array</CODE> - Array Reference</STRONG><BR>
+<DD>
 The array to hold the user names retrieved.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupSetInfo_server_level_">LocalGroupSetInfo(server, level, hash, error)</A></H2>
-<P>
-Sets the information for <A HREF="#item_group">group</A> according to <A HREF="#item_level">level</A>.
-
-<DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> on which to set the <A HREF="#item_group">group</A> information.
-
-<DT><STRONG>group - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_group">group</A> whose information you wish to set.
-
-<DT><STRONG>level - Scalar Int</STRONG><DD>
-<P>
-The <A HREF="#item_level">level</A> of information you are supplying in <A HREF="#item_hash">hash</A>. Level can be one of 0 or 1. See <A HREF="#LOCAL_GROUP_INFO_LEVELS">LOCAL GROUP INFO LEVELS</A>.
-
-<DT><STRONG>hash - Hash Reference</STRONG><DD>
-<P>
-The hash containing the required key/value pairs for <A HREF="#item_level">level</A>.
-
-<DT><STRONG>error - Scalar String</STRONG><DD>
-<P>
-On failure, the <A HREF="#item_error">error</A> parameter will contain a value which specifies which field caused the
-error. See <A HREF="#LOCAL_GROUP_FIELD_ERRORS">LOCAL GROUP FIELD ERRORS</A>.
-
-</DL>
-<P>
-<HR>
-<H2><A NAME="LocalGroupSetMembers_">LocalGroupSetMembers()</A></H2>
-<P>
-This function has not been implemented at present.
-
-<P>
-<HR>
-<H1><A NAME="NET_GET_FUNCTIONS">NET GET FUNCTIONS</A></H1>
-<P>
-<HR>
-<H2><A NAME="GetDCName_server_domain_domain">GetDCName(server, domain, domain-controller)</A></H2>
+<P></P></DL>
 <P>
-Gets the <CODE>domain-controllder</CODE> name for <A HREF="#item_server">server</A> and <A HREF="#item_domain">domain</A>.
-
+<H2><A NAME="localgroupsetinfo(server, level, hash, error)">LocalGroupSetInfo(server, level, hash, error)</A></H2>
+<P>Sets the information for <CODE>group</CODE> according to <CODE>level</CODE>.</P>
 <DL>
-<DT><STRONG>server - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_server">server</A> whose domain controller you wish to locate.
-
-<DT><STRONG><A NAME="item_domain">domain - Scalar String</A></STRONG><DD>
-<P>
-The <A HREF="#item_domain">domain</A> that <A HREF="#item_server">server</A> is a member of whose domain-controller you wish the locate.
-
-<DT><STRONG><A NAME="item_domain">domain-controller - Scalar String (output)</A></STRONG><DD>
-<P>
-The name of the <CODE>domain-controller</CODE> for the requested <A HREF="#item_domain">domain</A>.
-
-</DL>
-<P>
-Note: This module does not implement the <CODE>NetGetAnyDCName()</CODE>API function as this is obsolete.
-
-<P>
-<HR>
-<H1><A NAME="USER_INFO_LEVELS">USER INFO LEVELS</A></H1>
-<P>
-Most of the <CODE>User*()</CODE> functions take a <A HREF="#item_level">level</A> parameter. This <A HREF="#item_level">level</A>
-specifies how much detail the corresponding <A HREF="#item_hash">hash</A> should contain (or in the case of a <CODE>UserGet*()</CODE> function, will contain after the call). The following <A HREF="#item_level">level</A> descriptions provide information on what fields should be present for a
-given level. See <A HREF="#USER_INFO_FIELDS">USER INFO FIELDS</A> for a description of the fields.
-
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> on which to set the <CODE>group</CODE> information.
+<P></P>
+<DT><STRONG><CODE>group</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>group</CODE> whose information you wish to set.
+<P></P>
+<DT><STRONG><CODE>level</CODE> - Scalar Int</STRONG><BR>
+<DD>
+The <CODE>level</CODE> of information you are supplying in <CODE>hash</CODE>.
+Level can be one of 0 or 1. See <A HREF="#local group info levels">LOCAL GROUP INFO LEVELS</A>.
+<P></P>
+<DT><STRONG><CODE>hash</CODE> - Hash Reference</STRONG><BR>
+<DD>
+The hash containing the required key/value pairs for <CODE>level</CODE>.
+<P></P>
+<DT><STRONG><CODE>error</CODE> - Scalar String</STRONG><BR>
+<DD>
+On failure, the <CODE>error</CODE> parameter will contain a value which specifies
+which field caused the error. See <A HREF="#local group field errors">LOCAL GROUP FIELD ERRORS</A>.
+<P></P></DL>
+<P>
+<H2><A NAME="localgroupsetmembers()"><CODE>LocalGroupSetMembers()</CODE></A></H2>
+<P>This function has not been implemented at present.</P>
+<P>
+<HR>
+<H1><A NAME="net get functions">NET GET FUNCTIONS</A></H1>
+<P>
+<H2><A NAME="getdcname(server, domain, domaincontroller)">GetDCName(server, domain, domain-controller)</A></H2>
+<P>Gets the <CODE>domain-controller</CODE> name for <CODE>server</CODE> and <CODE>domain</CODE>.</P>
+<DL>
+<DT><STRONG><CODE>server</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>server</CODE> whose domain controller you wish to locate.
+<P></P>
+<DT><STRONG><A NAME="item_domain_%2D_Scalar_String"><CODE>domain</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The <CODE>domain</CODE> that <CODE>server</CODE> is a member of whose domain-controller
+you wish the locate.
+<P></P>
+<DT><STRONG><A NAME="item_String"><CODE>domain-controller</CODE> - Scalar String (output)</A></STRONG><BR>
+<DD>
+The name of the <CODE>domain-controller</CODE> for the requested <CODE>domain</CODE>.
+<P></P></DL>
+<P>Note: This module does not implement the <CODE>NetGetAnyDCName()</CODE>API function
+as this is obsolete.</P>
+<P>
+<HR>
+<H1><A NAME="user info levels">USER INFO LEVELS</A></H1>
+<P>Most of the <CODE>User*()</CODE> functions take a <CODE>level</CODE> parameter. This <CODE>level</CODE>
+specifies how much detail the corresponding <CODE>hash</CODE> should contain (or in
+the case of a <CODE>UserGet*()</CODE> function, will contain after the call). The
+following <CODE>level</CODE> descriptions provide information on what fields should
+be present for a given level. See <A HREF="#user info fields">USER INFO FIELDS</A> for a description of
+the fields.</P>
 <DL>
-<DT><STRONG><A NAME="item_Level">Level 0</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_Level_0">Level 0</A></STRONG><BR>
+<DD>
 name
-
-<DT><STRONG>Level 1</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1">Level 1</A></STRONG><BR>
+<DD>
 name, password, passwordAge, priv, homeDir, comment, flags, scriptPath
-
-<DT><STRONG>Level 2</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_2">Level 2</A></STRONG><BR>
+<DD>
 name, password, passwordAge, priv, homeDir, comment, flags, scriptPath,
 authFlags, fullName, usrComment, parms, workstations, lastLogon,
 lastLogoff, acctExpires, maxStorage, unitsPerWeek, logonHours, badPwCount,
 numLogons, logonServer, countryCode, codePage
-
-<DT><STRONG>Level 3</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_3">Level 3</A></STRONG><BR>
+<DD>
 name, password, passwordAge, priv, homeDir, comment, flags, scriptPath,
-authFlags, fullName, usrComment, parms, workstations, lastLogon,
-lastLogoff, acctExpires, maxStorage, unitsPerWeek, logonHours, badPwCount,
-numLogons, logonServer, countryCode, codePage, userId, primaryGroupId,
-profile, homeDirDrive, passwordExpired
-
-<DT><STRONG>Level 10</STRONG><DD>
-<P>
+authFlags, fullName, usrComment, parms, workstations, lastLogon, lastLogoff,
+acctExpires, maxStorage, unitsPerWeek, logonHours, badPwCount, numLogons,
+logonServer, countryCode, codePage, userId, primaryGroupId, profile,
+homeDirDrive, passwordExpired
+<P></P>
+<DT><STRONG><A NAME="item_Level_10">Level 10</A></STRONG><BR>
+<DD>
 name, comment, usrComment, fullName
-
-<DT><STRONG>Level 11</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_11">Level 11</A></STRONG><BR>
+<DD>
 name, comment, usrComment, fullName, priv, authFlags, passwordAge, homeDir,
 parms, lastLogon, lastLogoff, badPwCount, numLogons, logonServer,
 countryCode, workstations, maxStorage, unitsPerWeek, logonHours, codePage
-
-<DT><STRONG>Level 20</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_20">Level 20</A></STRONG><BR>
+<DD>
 name, fullName, comment, flags, userId
-
-<DT><STRONG>Level 21</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_21">Level 21</A></STRONG><BR>
+<DD>
 <STRONG>Not available in this implementation</STRONG>
-
-
-
-<DT><STRONG>Level 22</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_22">Level 22</A></STRONG><BR>
+<DD>
 <STRONG>Not available in this implementation</STRONG>
-
-
-
-<DT><STRONG>Level 1003</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1003">Level 1003</A></STRONG><BR>
+<DD>
 password
-
-<DT><STRONG>Level 1005</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1005">Level 1005</A></STRONG><BR>
+<DD>
 priv
-
-<DT><STRONG>Level 1006</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1006">Level 1006</A></STRONG><BR>
+<DD>
 homeDir
-
-<DT><STRONG>Level 1007</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1007">Level 1007</A></STRONG><BR>
+<DD>
 comment
-
-<DT><STRONG>Level 1008</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1008">Level 1008</A></STRONG><BR>
+<DD>
 flags
-
-<DT><STRONG>Level 1009</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1009">Level 1009</A></STRONG><BR>
+<DD>
 scriptPath
-
-<DT><STRONG>Level 1010</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1010">Level 1010</A></STRONG><BR>
+<DD>
 authFlags
-
-<DT><STRONG>Level 1011</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1011">Level 1011</A></STRONG><BR>
+<DD>
 fullName
-
-<DT><STRONG>Level 1012</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1012">Level 1012</A></STRONG><BR>
+<DD>
 usrComment
-
-<DT><STRONG>Level 1013</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1013">Level 1013</A></STRONG><BR>
+<DD>
 parms
-
-<DT><STRONG>Level 1014</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1014">Level 1014</A></STRONG><BR>
+<DD>
 workstations
-
-<DT><STRONG>Level 1017</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1017">Level 1017</A></STRONG><BR>
+<DD>
 acctExpires
-
-<DT><STRONG>Level 1018</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1018">Level 1018</A></STRONG><BR>
+<DD>
 maxStorage
-
-<DT><STRONG>Level 1020</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1020">Level 1020</A></STRONG><BR>
+<DD>
 unitsPerWeek, logonHours
-
-<DT><STRONG>Level 1023</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1023">Level 1023</A></STRONG><BR>
+<DD>
 logonServer
-
-<DT><STRONG>Level 1024</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1024">Level 1024</A></STRONG><BR>
+<DD>
 countryCode
-
-<DT><STRONG>Level 1025</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1025">Level 1025</A></STRONG><BR>
+<DD>
 codePage
-
-<DT><STRONG>Level 1051</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1051">Level 1051</A></STRONG><BR>
+<DD>
 primaryGroupId
-
-<DT><STRONG>Level 1052</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1052">Level 1052</A></STRONG><BR>
+<DD>
 profile
-
-<DT><STRONG>Level 1053</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1053">Level 1053</A></STRONG><BR>
+<DD>
 homeDirDrive
-
-</DL>
+<P></P></DL>
 <P>
 <HR>
-<H1><A NAME="USER_INFO_FIELDS">USER INFO FIELDS</A></H1>
-<P>
-The following is an alphabetical listing of each possible field, together
-with the data type that the field is expected to contain.
-
+<H1><A NAME="user info fields">USER INFO FIELDS</A></H1>
+<P>The following is an alphabetical listing of each possible field, together
+with the data type that the field is expected to contain.</P>
 <DL>
-<DT><STRONG><A NAME="item_acctExpires">acctExpires - Scalar Int (UTC)</A></STRONG><DD>
-<P>
+<DT><STRONG><CODE>acctExpires</CODE> - Scalar Int (UTC)</STRONG><BR>
+<DD>
 The time (as the number of seconds since 00:00:00, 1st January 1970) when
 the account expires. A -1 in this field specifies that the account never
 expires.
-
-<DT><STRONG><A NAME="item_authFlags">authFlags - Scalar Int (See USER_AUTH_FLAGS).</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>authFlags</CODE> - Scalar Int (See USER_AUTH_FLAGS).</STRONG><BR>
+<DD>
 The level of authority that this use has. The value this can take depends
 on the users group membership - this value is therefore read only and
-cannot be set using <CODE>UserAdd()</CODE> or <CODE>UserSetInfo()</CODE>. Its value can be one of:
-
-</DL>
-<P>
-<PRE>        User belongs to group           Flag value
+cannot be set using <CODE>UserAdd()</CODE> or <CODE>UserSetInfo()</CODE>. Its value can be one
+of:
+<P></P></DL>
+<PRE>
+        User belongs to group           Flag value
         ---------------------           ----------
         Print Operators                 Win32API::Net::AF_OP_PRINT()
         Server Operators                Win32API::Net::AF_OP_SERVER()
-        Account Operators               Win32API::Net::AF_OP_ACCOUNTS()
-</PRE>
+        Account Operators               Win32API::Net::AF_OP_ACCOUNTS()</PRE>
 <DL>
-<DT><STRONG><A NAME="item_badPwCount">badPwCount - Scalar Int</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_badPwCount_%2D_Scalar_Int"><CODE>badPwCount</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The number of times that the user has failed to logon by specifying an
 incorrect password.
-
-<DT><STRONG><A NAME="item_codePage">codePage - Scalar Int</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_codePage_%2D_Scalar_Int"><CODE>codePage</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The code page that this user uses.
-
-<DT><STRONG><A NAME="item_comment">comment - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_comment_%2D_Scalar_String"><CODE>comment</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The comment associated with this user account. This can be any string
 (apparently of any length).
-
-<DT><STRONG><A NAME="item_countryCode">countryCode - Scalar Int</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_countryCode_%2D_Scalar_Int"><CODE>countryCode</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The country code that this user uses.
-
-<DT><STRONG>flags - Scalar Int (Bitwise OR of USER_FLAGS)</STRONG><DD>
-<P>
-The flags for this user. See <A HREF="#USER_FLAGS">USER FLAGS</A>.
-
-<DT><STRONG><A NAME="item_fullName">fullName - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>flags</CODE> - Scalar Int (Bitwise OR of USER_FLAGS)</STRONG><BR>
+<DD>
+The flags for this user. See <A HREF="#user flags">USER FLAGS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_fullName_%2D_Scalar_String"><CODE>fullName</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The users' full name.
-
-<DT><STRONG><A NAME="item_homeDir">homeDir - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_homeDir_%2D_Scalar_String"><CODE>homeDir</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The home directory of the user. This can be either a UNC path or an
 absolute path (drive letter + path). Can be the empty string (``'').
-
-<DT><STRONG><A NAME="item_homeDirDrive">homeDirDrive - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_homeDirDrive_%2D_Scalar_String"><CODE>homeDirDrive</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The home directory drive that the users home directory is mapped to
 (assuming that the specified home directory is a UNC path).
-
-<DT><STRONG><A NAME="item_lastLogon">lastLogon - Scalar Int (UTC)</A></STRONG><DD>
-<P>
-The time (as the number of seconds since 00:00:00, 1st January 1970) that
-the user last logged on.
-
-<DT><STRONG><A NAME="item_lastLogoff">lastLogoff - Scalar Int (UTC)</A></STRONG><DD>
-<P>
-The time (as the number of seconds since 00:00:00, 1st January 1970) that
-the user last logged off .
-
-<DT><STRONG><A NAME="item_logonHours">logonHours - Reference to Array of Integers (length 21 elements)</A></STRONG><DD>
-<P>
-The times at which the user can logon. This should be an integer array with
-21 elements. Each element represents an 8 hour period and each bit
-represents represents an hour. Only the lower byte of each integer is used.
-If this is left undefined then no restrictions are placed on the account.
-
-<DT><STRONG><A NAME="item_logonServer">logonServer - Scalar String</A></STRONG><DD>
-<P>
-The logon server for this user. Under Windows NT, this value cannot be set
-and will always have the value '\\*' when queried.
-
-<DT><STRONG><A NAME="item_maxStorage">maxStorage - Scalar Int</A></STRONG><DD>
-<P>
-The current release of Windows NT does not implement disk quotas so it is
-believed that the value of this key is ignored.
-
-<DT><STRONG><A NAME="item_name">name - Scalar String</A></STRONG><DD>
-<P>
-The user name that this request applies to. Most of the functions take the
-user name as a separate argument. In general, the user name provided should
-be the same as that in the one provided in the hash.
-
-<DT><STRONG><A NAME="item_numLogons">numLogons - Scalar Int</A></STRONG><DD>
-<P>
-The number of times that the named user has successfully logged on to this
-machine/domain.
-
-<DT><STRONG><A NAME="item_parms">parms - Scalar String</A></STRONG><DD>
-<P>
-The value of this key can be used by applications. There are none known to
-to author that use it, although it could be used to hold adminitrative
+<P></P>
+<DT><STRONG><CODE>lastLogon</CODE> - Scalar Int (UTC)</STRONG><BR>
+<DD>
+The time (as the number of seconds since 00:00:00, 1st January 1970)
+that the user last logged on.
+<P></P>
+<DT><STRONG><CODE>lastLogoff</CODE> - Scalar Int (UTC)</STRONG><BR>
+<DD>
+The time (as the number of seconds since 00:00:00, 1st January 1970)
+that the user last logged off .
+<P></P>
+<DT><STRONG><A NAME="item_Integers"><CODE>logonHours</CODE> - Reference to Array of Integers (length 21 elements)</A></STRONG><BR>
+<DD>
+The times at which the user can logon. This should be an integer array
+with 21 elements.  Each element represents an 8 hour period and each bit
+represents represents an hour. Only the lower byte of each integer is
+used. If this is left undefined then no restrictions are placed on the
+account.
+<P></P>
+<DT><STRONG><A NAME="item_logonServer_%2D_Scalar_String"><CODE>logonServer</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The logon server for this user. Under Windows NT, this value cannot be
+set and will always have the value '\\*' when queried.
+<P></P>
+<DT><STRONG><A NAME="item_maxStorage_%2D_Scalar_Int"><CODE>maxStorage</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
+The current release of Windows NT does not implement disk quotas so
+it is believed that the value of this key is ignored.
+<P></P>
+<DT><STRONG><A NAME="item_name_%2D_Scalar_String"><CODE>name</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The user name that this request applies to. Most of the functions take
+the user name as a separate argument. In general, the user name provided
+should be the same as that in the one provided in the hash.
+<P></P>
+<DT><STRONG><A NAME="item_numLogons_%2D_Scalar_Int"><CODE>numLogons</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
+The number of times that the named user has successfully logged on to
+this machine/domain.
+<P></P>
+<DT><STRONG><A NAME="item_parms_%2D_Scalar_String"><CODE>parms</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The value of this key can be used by applications. There are none known
+to to author that use it, although it could be used to hold adminitrative
 information.
-
-<DT><STRONG><A NAME="item_password">password - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_password_%2D_Scalar_String"><CODE>password</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The password to be set. The password is never returned in a <CODE>UserGet()</CODE>
 operation.
-
-<DT><STRONG><A NAME="item_passwordAge">passwordAge - Scalar Int (UTC)</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>passwordAge</CODE> - Scalar Int (UTC)</STRONG><BR>
+<DD>
 The current age of the password (stored as the number of seconds since
 00:00:00, 1st January 1970).
-
-<DT><STRONG><A NAME="item_passwordExpired">passwordExpired - Scalar Int</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_passwordExpired_%2D_Scalar_Int"><CODE>passwordExpired</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The value of this key is used in two different ways. When queried via
-<CODE>UserGetInfo()</CODE> the return value is 0 is the password has not expired and 1 if it has. When
-setting the value via <CODE>UserAdd()</CODE> or
-<CODE>UserSetInfo()</CODE> a value of 0 indicates that the users' password has not expired whereas a
-value of 1 will force the user to change their password at the next logon.
-
-<DT><STRONG><A NAME="item_primaryGroupId">primaryGroupId - Scalar Int</A></STRONG><DD>
-<P>
+<CODE>UserGetInfo()</CODE> the return value is 0 is the password has not expired
+and 1 if it has. When setting the value via <CODE>UserAdd()</CODE> or
+<CODE>UserSetInfo()</CODE> a value of 0 indicates that the users' password has
+not expired whereas a value of 1 will force the user to change their
+password at the next logon.
+<P></P>
+<DT><STRONG><A NAME="item_primaryGroupId_%2D_Scalar_Int"><CODE>primaryGroupId</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The id of the primary group that this user belongs to. When creating
 accounts with <CODE>UserAdd()</CODE> you should use a value of 0x201.
-
-<DT><STRONG><A NAME="item_priv">priv - Scalar Int (Bitwise OR of USER_PRIVILEGE_FLAGS)</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>priv</CODE> - Scalar Int (Bitwise OR of USER_PRIVILEGE_FLAGS)</STRONG><BR>
+<DD>
 The privilege level that this user has. This is never returned from a
-<CODE>UserGet()</CODE> call. See <A HREF="#USER_PRIVILEGE_FLAGS">USER PRIVILEGE FLAGS</A>.
-
-<DT><STRONG><A NAME="item_profile">profile - Scalar String</A></STRONG><DD>
-<P>
-The profile that is associated with the named user. This can be UNC path, a
-local path or undefined.
-
-<DT><STRONG><A NAME="item_scriptPath">scriptPath - Scalar String</A></STRONG><DD>
-<P>
+<CODE>UserGet()</CODE> call. See <A HREF="#user privilege flags">USER PRIVILEGE FLAGS</A>.
+<P></P>
+<DT><STRONG><A NAME="item_profile_%2D_Scalar_String"><CODE>profile</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+The profile that is associated with the named user. This can be UNC path,
+a local path or undefined.
+<P></P>
+<DT><STRONG><A NAME="item_scriptPath_%2D_Scalar_String"><CODE>scriptPath</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The path to the logon script for this user. This should be specified as a
 relative path and will cause the logon script to be run from (relative
 location) in the logon servers export directory.
-
-<DT><STRONG><A NAME="item_unitsPerWeek">unitsPerWeek - Scalar Int</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_unitsPerWeek_%2D_Scalar_Int"><CODE>unitsPerWeek</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The value of this key represents the granularity of the logonHours array.
 Its use is beyond the scope of this package.
-
-<DT><STRONG><A NAME="item_usrComment">usrComment - Scalar String</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_usrComment_%2D_Scalar_String"><CODE>usrComment</CODE> - Scalar String</A></STRONG><BR>
+<DD>
 The user comment field (contrasted with the comment field ;-).
-
-<DT><STRONG><A NAME="item_workstations">workstations - Scalar String</A></STRONG><DD>
-<P>
-A comma-separated string containing upto 8 workstation that the named user
-can login to. Setting a value for this key will then allow the named user
-to login to only those computers named.
-
-<DT><STRONG><A NAME="item_userId">userId - Scalar Int</A></STRONG><DD>
-<P>
-The user id associated with this user This value is generated by the system
-and cannot be set or changed using the <CODE>UserAdd()</CODE> or
+<P></P>
+<DT><STRONG><A NAME="item_workstations_%2D_Scalar_String"><CODE>workstations</CODE> - Scalar String</A></STRONG><BR>
+<DD>
+A comma-separated string containing upto 8 workstation that the named
+user can login to.  Setting a value for this key will then allow the
+named user to login to only those computers named.
+<P></P>
+<DT><STRONG><A NAME="item_userId_%2D_Scalar_Int"><CODE>userId</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
+The user id associated with this user This value is generated by the
+system and cannot be set or changed using the <CODE>UserAdd()</CODE> or
 <CODE>UserSetInfo()</CODE> calls.
-
-</DL>
+<P></P></DL>
 <P>
 <HR>
-<H1><A NAME="USER_FLAGS">USER FLAGS</A></H1>
-<P>
-The following is an alphabetical listing of the user flags. The <A HREF="#item_flags">flags</A> key (see <A HREF="#USER_INFO_FIELDS">USER INFO FIELDS</A>) should be the bitwise OR of one or more of these values.
-
+<H1><A NAME="user flags">USER FLAGS</A></H1>
+<P>The following is an alphabetical listing of the user flags.
+The <CODE>flags</CODE> key (see <A HREF="#user info fields">USER INFO FIELDS</A>) should be the bitwise OR of one
+or more of these values.</P>
 <DL>
-<DT><STRONG><A NAME="item_UF_ACCOUNTDISABLE">UF_ACCOUNTDISABLE()</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_UF_ACCOUNTDISABLE"><CODE>UF_ACCOUNTDISABLE()</CODE></A></STRONG><BR>
+<DD>
 This account has been disabled.
-
-<DT><STRONG><A NAME="item_UF_DONT_EXPIRE_PASSWD">UF_DONT_EXPIRE_PASSWD()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_DONT_EXPIRE_PASSWD"><CODE>UF_DONT_EXPIRE_PASSWD()</CODE></A></STRONG><BR>
+<DD>
 Never expire the password on this account.
-
-<DT><STRONG><A NAME="item_UF_HOMEDIR_REQUIRED">UF_HOMEDIR_REQUIRED()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_HOMEDIR_REQUIRED"><CODE>UF_HOMEDIR_REQUIRED()</CODE></A></STRONG><BR>
+<DD>
 A home directory must be specified (ignored for NT).
-
-<DT><STRONG><A NAME="item_UF_INTERDOMAIN_TRUST_ACCOUNT">UF_INTERDOMAIN_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_INTERDOMAIN_TRUST_ACCOUNT"><CODE>UF_INTERDOMAIN_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 The account represents a interdomain trust account.
-
-<DT><STRONG><A NAME="item_UF_LOCKOUT">UF_LOCKOUT()</A></STRONG><DD>
-<P>
-Lock out this account (or this account has been locked out due to security
-policy - i.e. badLogonCount is greater than your policy allows). This value
-can be cleared but not set by a <CODE>UserSetInfo()</CODE> call.
-
-<DT><STRONG><A NAME="item_UF_NORMAL_ACCOUNT">UF_NORMAL_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_LOCKOUT"><CODE>UF_LOCKOUT()</CODE></A></STRONG><BR>
+<DD>
+Lock out this account (or this account has been locked out due to
+security policy - i.e.  badLogonCount is greater than your policy allows).
+This value can be cleared but not set by a <CODE>UserSetInfo()</CODE> call.
+<P></P>
+<DT><STRONG><A NAME="item_UF_NORMAL_ACCOUNT"><CODE>UF_NORMAL_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 The account is a normal user account.
-
-<DT><STRONG><A NAME="item_UF_PASSWD_CANT_CHANGE">UF_PASSWD_CANT_CHANGE()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_PASSWD_CANT_CHANGE"><CODE>UF_PASSWD_CANT_CHANGE()</CODE></A></STRONG><BR>
+<DD>
 The password for this account cannot be changed (execpt by an Administrator
 using one of the above calls).
-
-<DT><STRONG><A NAME="item_UF_PASSWD_NOTREQD">UF_PASSWD_NOTREQD()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_PASSWD_NOTREQD"><CODE>UF_PASSWD_NOTREQD()</CODE></A></STRONG><BR>
+<DD>
 A password is not required for this account.
-
-<DT><STRONG><A NAME="item_UF_SCRIPT">UF_SCRIPT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_SCRIPT"><CODE>UF_SCRIPT()</CODE></A></STRONG><BR>
+<DD>
 This &lt;strong&gt;must be set when creating account on Windows NT.
-
-<DT><STRONG><A NAME="item_UF_SERVER_TRUST_ACCOUNT">UF_SERVER_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
-The account represents a Windows NT Backup Domain Controller account in the
-domain.
-
-<DT><STRONG><A NAME="item_UF_TEMP_DUPLICATE_ACCOUNT">UF_TEMP_DUPLICATE_ACCOUNT()</A></STRONG><DD>
-<P>
-To quote the Microsoft Documentation &lt;em&gt;&amp;quot;This is an account
-for users whose primary account is in another domain. This account provides
+<P></P>
+<DT><STRONG><A NAME="item_UF_SERVER_TRUST_ACCOUNT"><CODE>UF_SERVER_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
+The account represents a Windows NT Backup Domain Controller account in
+the domain.
+<P></P>
+<DT><STRONG><A NAME="item_UF_TEMP_DUPLICATE_ACCOUNT"><CODE>UF_TEMP_DUPLICATE_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
+To quote the Microsoft Documentation &lt;em&gt;&amp;quot;This is an account for
+users whose primary account is in another domain. This account provides
 user access to this domain, but not to any domain that trusts this domain.
 The User Manager refers to this account type as a local user account.
-
-<DT><STRONG><A NAME="item_UF_WORKSTATION_TRUST_ACCOUNT">UF_WORKSTATION_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_UF_WORKSTATION_TRUST_ACCOUNT"><CODE>UF_WORKSTATION_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 The account represents a computer account for a workstation or server in
 the domain.
-
-</DL>
-<P>
-Please note that these are implemented as functions and are therefore
+<P></P></DL>
+<P>Please note that these are implemented as functions and are therefore
 called in the same way as other functions. You should typically use them
-like:
-
-<P>
-<PRE>        $ufScript = Win32API::Net::UF_SCRIPT();
-</PRE>
+like:</P>
+<PRE>
+        $ufScript = Win32API::Net::UF_SCRIPT();</PRE>
 <P>
 <HR>
-<H1><A NAME="USER_PRIVILEGE_FLAGS">USER PRIVILEGE FLAGS</A></H1>
-<P>
-These following values are used in the <A HREF="#item_priv">priv</A> key. This field is never initialised on a <CODE>UserGet*()</CODE> call and once set cannot be changed in a
-<CODE>UserSetInfo()</CODE> call.
-
+<H1><A NAME="user privilege flags">USER PRIVILEGE FLAGS</A></H1>
+<P>These following values are used in the <CODE>priv</CODE> key. This field is never
+initialised on a <CODE>UserGet*()</CODE> call and once set cannot be changed in a
+<CODE>UserSetInfo()</CODE> call.</P>
 <DL>
-<DT><STRONG><A NAME="item_USER_PRIV_ADMIN">USER_PRIV_ADMIN()</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_USER_PRIV_ADMIN"><CODE>USER_PRIV_ADMIN()</CODE></A></STRONG><BR>
+<DD>
 Account is an an administrative account.
-
-<DT><STRONG><A NAME="item_USER_PRIV_GUEST">USER_PRIV_GUEST()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_USER_PRIV_GUEST"><CODE>USER_PRIV_GUEST()</CODE></A></STRONG><BR>
+<DD>
 Account is a guest account.
-
-<DT><STRONG><A NAME="item_USER_PRIV_USER">USER_PRIV_USER()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_USER_PRIV_USER"><CODE>USER_PRIV_USER()</CODE></A></STRONG><BR>
+<DD>
 Account is a user account.
-
-</DL>
-<P>
-Please note that these are implemented as functions and are therefore
+<P></P></DL>
+<P>Please note that these are implemented as functions and are therefore
 called in the same way as other functions. You should typically use them
-like:
-
-<P>
-<PRE>        $userPrivUser = Win32API::Net::USER_PRIV_USER();
-</PRE>
+like:</P>
+<PRE>
+        $userPrivUser = Win32API::Net::USER_PRIV_USER();</PRE>
 <P>
 <HR>
-<H1><A NAME="USER_ENUM_FILTER">USER ENUM FILTER</A></H1>
-<P>
-These flags are used in the <CODE>UserEnum()</CODE> function to specify which accounts to retrieve. It should be a bitwise OR
-of some (or all) of the following.
-
+<H1><A NAME="user enum filter">USER ENUM FILTER</A></H1>
+<P>These flags are used in the <CODE>UserEnum()</CODE> function to specify which
+accounts to retrieve. It should be a bitwise OR of some (or all) of
+the following.</P>
 <DL>
-<DT><STRONG><A NAME="item_FILTER_TEMP_DUPLICATE_ACCOUNT">FILTER_TEMP_DUPLICATE_ACCOUNT()</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_FILTER_TEMP_DUPLICATE_ACCOUNT"><CODE>FILTER_TEMP_DUPLICATE_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 Show temporary duplicate account (one presumes).
-
-<DT><STRONG><A NAME="item_FILTER_NORMAL_ACCOUNT">FILTER_NORMAL_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_FILTER_NORMAL_ACCOUNT"><CODE>FILTER_NORMAL_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 Show normal user account.
-
-<DT><STRONG><A NAME="item_FILTER_INTERDOMAIN_TRUST_ACCOUNT">FILTER_INTERDOMAIN_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_FILTER_INTERDOMAIN_TRUST_ACCOUNT"><CODE>FILTER_INTERDOMAIN_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 Show interdomain trust accounts.
-
-<DT><STRONG><A NAME="item_FILTER_WORKSTATION_TRUST_ACCOUNT">FILTER_WORKSTATION_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_FILTER_WORKSTATION_TRUST_ACCOUNT"><CODE>FILTER_WORKSTATION_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 Show workstation trust accounts.
-
-<DT><STRONG><A NAME="item_FILTER_SERVER_TRUST_ACCOUNT">FILTER_SERVER_TRUST_ACCOUNT()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_FILTER_SERVER_TRUST_ACCOUNT"><CODE>FILTER_SERVER_TRUST_ACCOUNT()</CODE></A></STRONG><BR>
+<DD>
 Show server trust accounts.
-
-</DL>
-<P>
-Please note that these are implemented as functions and are therefore
+<P></P></DL>
+<P>Please note that these are implemented as functions and are therefore
 called in the same way as other functions. You should typically use them
-like:
-
-<P>
-<PRE>        $filterNormalAccounts = Win32API::Net::FILTER_NORMAL_ACCOUNT();
-</PRE>
-<P>
-<HR>
-<H1><A NAME="USER_FIELD_ERRORS">USER FIELD ERRORS</A></H1>
-<P>
-For the <CODE>User*()</CODE> functions that take an <A HREF="#item_error">error</A> parameter this variable will, on failure, contain one of the following
-constants. Note that the function may fail because more than one key/value
-was missing from the input hash. You will only find out about the first one
-that was incorrectly specified. This is only really useful in debugging.
-
-<DL>
-<DT><STRONG><A NAME="item_USER_ACCT_EXPIRES_PARMNUM">USER_ACCT_EXPIRES_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_acctExpires">acctExpires</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_AUTH_FLAGS_PARMNUM">USER_AUTH_FLAGS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_authFlags">authFlags</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_BAD_PW_COUNT_PARMNUM">USER_BAD_PW_COUNT_PARMNUM()</A></STRONG><DD>
-<P>
+like:</P>
+<PRE>
+        $filterNormalAccounts = Win32API::Net::FILTER_NORMAL_ACCOUNT();</PRE>
+<P>
+<HR>
+<H1><A NAME="user field errors">USER FIELD ERRORS</A></H1>
+<P>For the <CODE>User*()</CODE> functions that take an <CODE>error</CODE> parameter this variable
+will, on failure, contain one of the following constants. Note that the
+function may fail because more than one key/value was missing from the
+input hash. You will only find out about the first one that was incorrectly
+specified. This is only really useful in debugging.</P>
+<DL>
+<DT><STRONG><A NAME="item_USER_ACCT_EXPIRES_PARMNUM"><CODE>USER_ACCT_EXPIRES_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>acctExpires</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_AUTH_FLAGS_PARMNUM"><CODE>USER_AUTH_FLAGS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>authFlags</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_BAD_PW_COUNT_PARMNUM"><CODE>USER_BAD_PW_COUNT_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
 <CODE>badPasswordCount</CODE> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_CODE_PAGE_PARMNUM">USER_CODE_PAGE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_codePage">codePage</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_COMMENT_PARMNUM">USER_COMMENT_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_comment">comment</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_COUNTRY_CODE_PARMNUM">USER_COUNTRY_CODE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_countryCode">countryCode</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_FLAGS_PARMNUM">USER_FLAGS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_flags">flags</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_FULL_NAME_PARMNUM">USER_FULL_NAME_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_fullName">fullName</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_HOME_DIR_DRIVE_PARMNUM">USER_HOME_DIR_DRIVE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_homeDirDrive">homeDirDrive</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_HOME_DIR_PARMNUM">USER_HOME_DIR_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_homeDir">homeDir</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_LAST_LOGOFF_PARMNUM">USER_LAST_LOGOFF_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_lastLogoff">lastLogoff</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_LAST_LOGON_PARMNUM">USER_LAST_LOGON_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_lastLogon">lastLogon</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_LOGON_HOURS_PARMNUM">USER_LOGON_HOURS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_logonHours">logonHours</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_LOGON_SERVER_PARMNUM">USER_LOGON_SERVER_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_logonServer">logonServer</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_MAX_STORAGE_PARMNUM">USER_MAX_STORAGE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_maxStorage">maxStorage</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_NAME_PARMNUM">USER_NAME_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_name">name</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_NUM_LOGONS_PARMNUM">USER_NUM_LOGONS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_numLogons">numLogons</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PARMS_PARMNUM">USER_PARMS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_parms">parms</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PASSWORD_AGE_PARMNUM">USER_PASSWORD_AGE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_passwordAge">passwordAge</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PASSWORD_PARMNUM">USER_PASSWORD_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_password">password</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PRIMARY_GROUP_PARMNUM">USER_PRIMARY_GROUP_PARMNUM()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_USER_CODE_PAGE_PARMNUM"><CODE>USER_CODE_PAGE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>codePage</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_COMMENT_PARMNUM"><CODE>USER_COMMENT_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>comment</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_COUNTRY_CODE_PARMNUM"><CODE>USER_COUNTRY_CODE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>countryCode</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_FLAGS_PARMNUM"><CODE>USER_FLAGS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>flags</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_FULL_NAME_PARMNUM"><CODE>USER_FULL_NAME_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>fullName</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_HOME_DIR_DRIVE_PARMNUM"><CODE>USER_HOME_DIR_DRIVE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>homeDirDrive</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_HOME_DIR_PARMNUM"><CODE>USER_HOME_DIR_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>homeDir</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_LAST_LOGOFF_PARMNUM"><CODE>USER_LAST_LOGOFF_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>lastLogoff</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_LAST_LOGON_PARMNUM"><CODE>USER_LAST_LOGON_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>lastLogon</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_LOGON_HOURS_PARMNUM"><CODE>USER_LOGON_HOURS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>logonHours</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_LOGON_SERVER_PARMNUM"><CODE>USER_LOGON_SERVER_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>logonServer</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_MAX_STORAGE_PARMNUM"><CODE>USER_MAX_STORAGE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>maxStorage</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_NAME_PARMNUM"><CODE>USER_NAME_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>name</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_NUM_LOGONS_PARMNUM"><CODE>USER_NUM_LOGONS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>numLogons</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_PARMS_PARMNUM"><CODE>USER_PARMS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>parms</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_PASSWORD_AGE_PARMNUM"><CODE>USER_PASSWORD_AGE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>passwordAge</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_PASSWORD_PARMNUM"><CODE>USER_PASSWORD_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>password</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_PRIMARY_GROUP_PARMNUM"><CODE>USER_PRIMARY_GROUP_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
 <CODE>primaryGroup</CODE> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PRIV_PARMNUM">USER_PRIV_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_priv">priv</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_PROFILE_PARMNUM">USER_PROFILE_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_profile">profile</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_SCRIPT_PATH_PARMNUM">USER_SCRIPT_PATH_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_scriptPath">scriptPath</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_UNITS_PER_WEEK_PARMNUM">USER_UNITS_PER_WEEK_PARMNUM()</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_USER_PRIV_PARMNUM"><CODE>USER_PRIV_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>priv</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_PROFILE_PARMNUM"><CODE>USER_PROFILE_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>profile</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_SCRIPT_PATH_PARMNUM"><CODE>USER_SCRIPT_PATH_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>scriptPath</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_UNITS_PER_WEEK_PARMNUM"><CODE>USER_UNITS_PER_WEEK_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
 <CODE>unitPerWeek</CODE> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_USR_COMMENT_PARMNUM">USER_USR_COMMENT_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_usrComment">usrComment</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_USER_WORKSTATIONS_PARMNUM">USER_WORKSTATIONS_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_workstations">workstations</A> field was absent or not correctly specified.
-
-</DL>
-<P>
-<HR>
-<H1><A NAME="GROUP_INFO_LEVELS">GROUP INFO LEVELS</A></H1>
-<P>
-Some of the <CODE>Group*()</CODE> functions take a <A HREF="#item_level">level</A> parameter. This <A HREF="#item_level">level</A>
-specifies how much detail the corresponding <A HREF="#item_hash">hash</A> should contain (or in the case of a <CODE>GroupGetInfo()</CODE> function, will contain after the call). The following <A HREF="#item_level">level</A> descriptions provide information on what fields should be present for a
-given level. See <A HREF="#GROUP_INFO_FIELDS">GROUP INFO FIELDS</A>
-for a description of the fields.
-
+<P></P>
+<DT><STRONG><A NAME="item_USER_USR_COMMENT_PARMNUM"><CODE>USER_USR_COMMENT_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>usrComment</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_USER_WORKSTATIONS_PARMNUM"><CODE>USER_WORKSTATIONS_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>workstations</CODE> field was absent or not correctly specified.
+<P></P></DL>
+<P>
+<HR>
+<H1><A NAME="group info levels">GROUP INFO LEVELS</A></H1>
+<P>Some of the <CODE>Group*()</CODE> functions take a <CODE>level</CODE> parameter. This <CODE>level</CODE>
+specifies how much detail the corresponding <CODE>hash</CODE> should contain (or in
+the case of a <CODE>GroupGetInfo()</CODE> function, will contain after the call).
+The following <CODE>level</CODE> descriptions provide information on what fields
+should be present for a given level. See <A HREF="#group info fields">GROUP INFO FIELDS</A>
+for a description of the fields.</P>
 <DL>
-<DT><STRONG>Level 0</STRONG><DD>
-<P>
+<DT><STRONG><CODE>Level 0</CODE></STRONG><BR>
+<DD>
 name.
-
-<DT><STRONG>Level 1</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>Level 1</CODE></STRONG><BR>
+<DD>
 name, comment.
-
-<DT><STRONG>Level 2</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>Level 2</CODE></STRONG><BR>
+<DD>
 name, comment, groupId, attributes.
-
-<DT><STRONG>Level 1002</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><A NAME="item_Level_1002"><CODE>Level 1002</CODE></A></STRONG><BR>
+<DD>
 comment.
-
-<DT><STRONG>Level 1005</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>Level 1005</CODE></STRONG><BR>
+<DD>
 attributes.
-
-</DL>
+<P></P></DL>
 <P>
 <HR>
-<H1><A NAME="GROUP_INFO_FIELDS">GROUP INFO FIELDS</A></H1>
+<H1><A NAME="group info fields">GROUP INFO FIELDS</A></H1>
 <DL>
-<DT><STRONG><A NAME="item_attributes">attributes - Scalar Int</A></STRONG><DD>
-<P>
+<DT><STRONG><A NAME="item_attributes_%2D_Scalar_Int"><CODE>attributes</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The attributes of the group. These are no longer settable in Windows NT 4.0
 and they are not currently supported in this package either.
-
-<DT><STRONG>comment - Scalar String</STRONG><DD>
-<P>
-The <A HREF="#item_comment">comment</A> that applies to this group. This is the only value that can be set via a
-GroupSetInfo call.
-
-<DT><STRONG><A NAME="item_groupId">groupId - Scalar Int</A></STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>comment</CODE> - Scalar String</STRONG><BR>
+<DD>
+The <CODE>comment</CODE> that applies to this group. This is the only value that
+can be set via a GroupSetInfo call.
+<P></P>
+<DT><STRONG><A NAME="item_groupId_%2D_Scalar_Int"><CODE>groupId</CODE> - Scalar Int</A></STRONG><BR>
+<DD>
 The groups Id.
-
-<DT><STRONG>name - Scalar String</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>name</CODE> - Scalar String</STRONG><BR>
+<DD>
 The groups name.
-
-</DL>
+<P></P></DL>
 <P>
 <HR>
-<H1><A NAME="GROUP_FIELD_ERRORS">GROUP FIELD ERRORS</A></H1>
-<P>
-For the <CODE>Group*()</CODE> functions that take an <A HREF="#item_error">error</A> parameter this variable will, on failure, contain one of the following
-constants. Note that the function may fail because more than one key/value
-was missing from the input hash. You will only find out about the first one
+<H1><A NAME="group field errors">GROUP FIELD ERRORS</A></H1>
+<P>For the <CODE>Group*()</CODE> functions that take an <CODE>error</CODE> parameter
+this variable will, on failure, contain one of the following constants.
+Note that the function may fail because more than one key/value was
+missing from the input hash. You will only find out about the first one
 that was incorrectly specified. This is only really useful for debugging
-purposes.
-
+purposes.</P>
 <DL>
-<DT><STRONG><A NAME="item_GROUP_ATTRIBUTES_PARMNUM">GROUP_ATTRIBUTES_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_attributes">attributes</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_GROUP_COMMENT_PARMNUM">GROUP_COMMENT_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_comment">comment</A> field was absent or not correctly specified.
-
-<DT><STRONG><A NAME="item_GROUP_NAME_PARMNUM">GROUP_NAME_PARMNUM()</A></STRONG><DD>
-<P>
-<A HREF="#item_name">name</A> field was absent or not correctly specified.
-
-</DL>
-<P>
-<HR>
-<H1><A NAME="GROUP_USERS_INFO_LEVELS">GROUP USERS INFO LEVELS</A></H1>
-<P>
-The <CODE>GroupGetUsers()</CODE> function can take a level of 0 or 1. These will return the following:
-
+<DT><STRONG><A NAME="item_GROUP_ATTRIBUTES_PARMNUM"><CODE>GROUP_ATTRIBUTES_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>attributes</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_GROUP_COMMENT_PARMNUM"><CODE>GROUP_COMMENT_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>comment</CODE> field was absent or not correctly specified.
+<P></P>
+<DT><STRONG><A NAME="item_GROUP_NAME_PARMNUM"><CODE>GROUP_NAME_PARMNUM()</CODE></A></STRONG><BR>
+<DD>
+<CODE>name</CODE> field was absent or not correctly specified.
+<P></P></DL>
+<P>
+<HR>
+<H1><A NAME="group users info levels">GROUP USERS INFO LEVELS</A></H1>
+<P>The <CODE>GroupGetUsers()</CODE> function can take a level of 0 or 1. These will
+return the following:</P>
 <DL>
-<DT><STRONG>Level 0</STRONG><DD>
-<P>
+<DT><STRONG><CODE>Level 0</CODE></STRONG><BR>
+<DD>
 name.
-
-<DT><STRONG>Level 1</STRONG><DD>
-<P>
+<P></P>
+<DT><STRONG><CODE>Level 1</CODE></STRONG><BR>
+<DD>
 name, attributes.
-
-</DL>
+<P></P></DL>
 <P>
 <HR>
-<H1><A NAME="GROUP_USERS_INFO_FIELDS">GROUP USERS INFO FIELDS</A></H1>
+<H1><A NAME="group users info fields">GROUP USERS INFO FIELDS</A></H1>
 <DL>
-<DT><STRONG>name - Scalar String</STRONG><DD>
-<P>
+<DT><STRONG><CODE>name</CODE> - Scalar String</STRONG><BR>
+<DD>
 The user's name.
-
-<DT><STRONG>attributes - Scalar Int</STRONG><DD>
-<P>
-The attributes of the group. These are no longer settable in Windows NT 4.0
-and they are not currently supported in this package either.
-
-</DL>
+<P></P>
+<DT><STRONG><CODE>attributes</CODE> - Sc