home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Net.pm < prev    next >
Text File  |  2002-07-08  |  48KB  |  1,815 lines

  1. package Win32API::Net;
  2.  
  3. use strict;
  4. use Carp;
  5. use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $AUTOLOAD);
  6.  
  7. require Exporter;
  8. require DynaLoader;
  9.  
  10. @ISA = qw(Exporter DynaLoader);
  11. # Items to export into callers namespace by default. Note: do not export
  12. # names by default without a very good reason. Use EXPORT_OK instead.
  13. # Do not simply export all your public functions/methods/constants.
  14. @EXPORT = qw();    # don't pollute callees namespace
  15.  
  16. %EXPORT_TAGS=(
  17.     User => [ qw(
  18.         FILTER_INTERDOMAIN_TRUST_ACCOUNT FILTER_NORMAL_ACCOUNT
  19.         FILTER_SERVER_TRUST_ACCOUNT FILTER_TEMP_DUPLICATE_ACCOUNTS
  20.         FILTER_WORKSTATION_TRUST_ACCOUNT
  21.         USER_ACCT_EXPIRES_PARMNUM USER_AUTH_FLAGS_PARMNUM
  22.         USER_CODE_PAGE_PARMNUM USER_COMMENT_PARMNUM USER_COUNTRY_CODE_PARMNUM
  23.         USER_FLAGS_PARMNUM USER_FULL_NAME_PARMNUM USER_HOME_DIR_DRIVE_PARMNUM
  24.         USER_HOME_DIR_PARMNUM USER_LAST_LOGOFF_PARMNUM USER_LAST_LOGON_PARMNUM
  25.         USER_LOGON_HOURS_PARMNUM USER_LOGON_SERVER_PARMNUM
  26.         USER_MAX_STORAGE_PARMNUM USER_NAME_PARMNUM USER_NUM_LOGONS_PARMNUM
  27.         USER_PAD_PW_COUNT_PARMNUM USER_PARMS_PARMNUM USER_PASSWORD_AGE_PARMNUM
  28.         USER_PASSWORD_PARMNUM USER_PRIMARY_GROUP_PARMNUM USER_PRIV_ADMIN
  29.         USER_PRIV_GUEST USER_PRIV_MASK USER_PRIV_PARMNUM USER_PRIV_USER
  30.         USER_PROFILE_PARMNUM USER_PROFILE_PARMNUM USER_SCRIPT_PATH_PARMNUM
  31.         USER_UNITS_PER_WEEK_PARMNUM USER_USR_COMMENT_PARMNUM
  32.         USER_WORKSTATIONS_PARMNUM USER_BAD_PW_COUNT_PARMNUM LG_INCLUDE_INDIRECT
  33.         UF_ACCOUNTDISABLE UF_ACCOUNT_TYPE_MASK UF_DONT_EXPIRE_PASSWD
  34.         UF_HOMEDIR_REQUIRED UF_INTERDOMAIN_TRUST_ACCOUNT UF_LOCKOUT
  35.         UF_MACHINE_ACCOUNT_MASK UF_NORMAL_ACCOUNT UF_PASSWD_CANT_CHANGE
  36.         UF_PASSWD_NOTREQD UF_SCRIPT UF_SERVER_TRUST_ACCOUNT UF_SETTABLE_BITS
  37.         UF_TEMP_DUPLICATE_ACCOUNT UF_WORKSTATION_TRUST_ACCOUNT
  38.         UserAdd UserChangePassword UserDel UserEnum UserGetGroups UserGetInfo 
  39.         UserGetLocalGroups UserModalsGet UserModalsSet UserSetGroups
  40.         UserSetInfo
  41.     )],
  42.     Get => [ qw(
  43.         GetDCName
  44.     )],
  45.     Group => [ qw(
  46.         GROUP_ATTRIBUTES_PARMNUM GROUP_COMMENT_PARMNUM GROUP_NAME_PARMNUM
  47.         GroupAdd GroupAddUser GroupDel GroupDelUser GroupEnum GroupGetInfo 
  48.         GroupGetUsers GroupSetInfo GroupSetUsers 
  49.     )],
  50.     LocalGroup => [ qw(
  51.         LOCALGROUP_COMMENT_PARMNUM LOCALGROUP_NAME_PARMNUM
  52.         LocalGroupAdd LocalGroupAddMember LocalGroupAddMembers LocalGroupDel 
  53.         LocalGroupDelMember LocalGroupDelMembers LocalGroupEnum 
  54.         LocalGroupGetInfo LocalGroupGetMembers LocalGroupSetInfo 
  55.         LocalGroupSetMembers 
  56.     )],
  57. );
  58.  
  59. @EXPORT_OK= ();
  60. { my $ref;
  61.     foreach $ref (  values(%EXPORT_TAGS)  ) {
  62.         push( @EXPORT_OK, @$ref );
  63.     }
  64. }
  65. $EXPORT_TAGS{ALL}= \@EXPORT_OK;
  66.  
  67. $VERSION = '0.09';
  68.  
  69. sub AUTOLOAD {
  70.     my $constname;
  71.     ($constname = $AUTOLOAD) =~ s/.*:://;
  72.     local $! = 0;
  73.     my $val = constant($constname, @_ ? $_[0] : 0);
  74.     if ($! != 0) {
  75.     if ($! =~ /Invalid/) {
  76.         $AutoLoader::AUTOLOAD = $AUTOLOAD;
  77.         goto &AutoLoader::AUTOLOAD;
  78.     }
  79.     else {
  80.         croak "Your vendor has not defined Win32API::Net macro $constname";
  81.     }
  82.     }
  83.     eval "sub $AUTOLOAD { $val }";
  84.     goto &$AUTOLOAD;
  85. }
  86.  
  87. bootstrap Win32API::Net $VERSION;
  88.  
  89. 1;
  90. __END__
  91.  
  92. =head1 NAME
  93.  
  94. Win32API::Net - Perl interface to the Windows NT LanManager API account management functions.
  95.  
  96. =head1 SYNOPSIS
  97.  
  98. use Win32API::Net;
  99.  
  100. =head1 NOTE ON VERSIONS PRIOR TO 0.08
  101.  
  102. As of version 0.08 of this module, the behaviour relating to empty strings
  103. in input hashes has changed. The old behaviour converted such strings to
  104. the NULL pointer. The underlying API uses this value as an indication to
  105. not change the value stored for a given field. This meant that you were not
  106. able to clear (say) the logonScript field for a user using UserSetInfo().
  107.  
  108. The new behaviour is to leave the string as an empty C string which will
  109. allow fields to be cleared.  To pass a NULL pointer to the underlying
  110. API call (and thus, to leave the field as it was), you need to set the
  111. corresponding field to C<undef>.
  112.  
  113. WARNING: B<THIS IS AN INCOMPATIBLE CHANGE>.
  114. B<EXISTING SCRIPTS THAT RELIED ON PRIOR BEHAVIOR MAY NEED TO BE MODIFIED>.
  115.  
  116. =head1 DESCRIPTION
  117.  
  118. Win32API::Net provides a more complete wrapper for the account management
  119. parts of the NT LanManager API than do other similar packages. Most of what
  120. you can achieve with the native C++ API is possible with this package - albeit
  121. in a more Perl like manner by using references to pass information to and
  122. from functions.
  123.  
  124. For an understanding of the environment in which these functions operate see
  125. L<DATA STRUCTURES>.
  126.  
  127. The following groups of functions are available:
  128.  
  129. =over 8
  130.  
  131. =item L<NET USER FUNCTIONS>
  132.  
  133. =item L<NET GROUP FUNCTIONS>
  134.  
  135. =item L<NET LOCAL GROUP FUNCTIONS>
  136.  
  137. =item L<NET GET FUNCTIONS>
  138.  
  139. =back
  140.  
  141. All functions return 0 on failure and 1 on success. Use the
  142. C<Win32::GetLastError()> function to find out more information on why a
  143. function failed. In addition, some functions that take a hash reference
  144. to pass information in (e.g. C<UserAdd()>) have a last argument that will
  145. allow more detailed information on which key/value pair was not properly
  146. specified.
  147.  
  148. =head2 Using References
  149.  
  150. References to hashes and arrays are used throughout this package to pass
  151. information into and out of functions.
  152.  
  153. =over 8
  154.  
  155. =item Using Hash References
  156.  
  157. Where a hash reference is required you can use anything that evaluates to a
  158. hash reference. e.g.
  159.  
  160.     $href = \%someHash;
  161.     UserAdd(server, 2, $hRef);
  162.  
  163. Or more directly:
  164.  
  165.     UserAdd(server, 2, \%someHash);
  166.  
  167. =item Using Array references
  168.  
  169. Array references are used in a similar manner to hash references. e.g.
  170.  
  171.     $aref = \@someArray;
  172.     UserEnum(server, $aref);
  173.  
  174. Or more directly:
  175.  
  176.     UserEnum(server, \@someArray);
  177.  
  178. =back
  179.  
  180. Please note: Any C<*Get*()> or C<*Enum()> operation will first clear the
  181. contents of the input hash or array being referenced.
  182.  
  183. See L<EXAMPLES> and the test.pl script for examples of usage.
  184.  
  185. =head1 DATA STRUCTURES
  186.  
  187. Most the the functions in the underlying API allow the programmer to pass
  188. specify at runtime the amount of information that is supplied to the
  189. function. For example, the C<NetUserGetInfo()> call allows the programmer to
  190. specify levels of 0, 1, 2, 3 (and others). Having specified this level, the
  191. function returns a structure that will contain different fields. For a
  192. level C<0>, the function returns a structure that has only one field. For a
  193. supplied level of 1, the function returns a structure with C<8> fields. The
  194. programmer needs to know in advance what fields should be provided or will
  195. be returned for a given level. This mechanism works very will since it
  196. effectively overloads functions without having to use different function
  197. prototypes. Perl provides better higher level data structures in the form
  198. of arrays and hashes. This package uses hashes as the means to pass these
  199. variable size structure into and out of functions.
  200.  
  201. For any function that takes a reference to a hash as input, the programmer
  202. is expected to provide appropriate keys and corresponding values as well as
  203. the level parameter. The called function will then takes the values out of
  204. the supplied hash and build the approprite structure to pass to the
  205. underlying API function.
  206.  
  207. For any function that takes a reference to a hash to recieve output, the
  208. function will first clear any keys an corresponding values in the supplied
  209. hash. It will call the underlying API call and will then return in the hash
  210. any keys and values that are applicable at the requested level.
  211.  
  212. Example:
  213.  
  214. The C<UserGetInfo()> can takes a number of levels. If called with level C<0>
  215. the supplied hash will, on return from the function, contain a single key
  216. and value - namely B<name>/B<requested-users-name>. If called with a level
  217. of C<1> the supplied hash will, on return from the function, contain 8 keys
  218. and values. The returned keys are C<name, password>, C<passwordAge>,
  219. C<priv>, C<homeDir>, C<comment>, C<flags>, C<scriptPath>. See
  220. L<USER INFO FIELDS> for more information on what these represent.
  221.  
  222.  
  223. =head1 EXPORTS
  224.  
  225. By default, Win32API::Net exports no symbols into the callers namespace.
  226. The following tags can be used to selectively import symbols into the
  227. main namespace.
  228.  
  229. =over 8
  230.  
  231. =item C<:User>
  232.  
  233. Exports all symbols needed for the C<User*()> functions.
  234. See L<NET USER FUNCTIONS>.
  235.  
  236. =item C<:Get>
  237.  
  238. Exports all symbols needed for the C<Get*()> functions.
  239. See L<NET GET FUNCTIONS>.
  240.  
  241. =item C<:Group>
  242.  
  243. Exports all symbols needed for the C<Group*()> functions.
  244. See L<NET GROUP FUNCTIONS>.
  245.  
  246. =item C<:LocalGroup>
  247.  
  248. Exports all symbols needed for the C<LocalGroup*()> functions.
  249. See L<NET LOCAL GROUP FUNCTIONS>.
  250.  
  251. =back
  252.  
  253.  
  254. =head1 NET USER FUNCTIONS
  255.  
  256. The C<User*()> functions operate on NT user accounts.
  257.  
  258. Administrator or Account Operator group membership is required to
  259. successfully execute most of these functions on a remote server or on a
  260. computer that has local security enabled. Administrator privileges are
  261. required to add an Administrator Privilege account.  There are some
  262. exceptions to this whereby a user can change some of their own settings
  263. where these don't conflict with 'administrative information' (e.g. full
  264. name).
  265.  
  266. The C<server> field can be the empty string, in which case the function
  267. defaults to running on the local computer. If you leave this field blank
  268. then you should ensure that you are running the function on a PDC or BDC
  269. for your current domain. Use the support function C<GetDCName()> to find out
  270. what the domain controller is, should you not be running this on the PDC.
  271.  
  272. All functions in this section are 'DOMAIN functions'. This means that,
  273. for example, the C<UserGetLocalGroups()> function actually lists the
  274. domain's local groups of which the named user is a member.
  275.  
  276. The following functions are available.
  277.  
  278.  
  279. =head2 UserAdd(server, level, hash, error)
  280.  
  281. Add a new user account. The user name is taken from the C<name>-key's
  282. value in the supplied hash.
  283.  
  284. =over 8
  285.  
  286. =item C<server> - Scalar String
  287.  
  288. The server on which to add the account.
  289.  
  290. =item C<level> - Scalar Int
  291.  
  292. Level of information provided in hash. This can be either 1, 2 or 3.
  293. See L<USER INFO LEVELS>.
  294.  
  295. =item C<hash> - Hash Reference
  296.  
  297. The information to use to add this account. This should have all the
  298. appropriate keys and values required for C<level>.
  299.  
  300. =item C<error> - Scalar Int
  301.  
  302. Provides information on which field in the hash was not properly specified.
  303. See L<USER FIELD ERRORS> for more information about what values this can
  304. take.
  305.  
  306. =back
  307.  
  308. =head2 UserChangePassword(server, user, old, new)
  309.  
  310. Changes the password for C<user>. If the policy of the machine/domain
  311. only allows password changes if the C<user> is logged on then the C<user>
  312. must be logged on to execute this function. With Administrator or Account
  313. Operator privilege you can use this function to change anyone's password,
  314. so long as you know the old password.
  315.  
  316. =over 8
  317.  
  318. =item C<server> - Scalar String
  319.  
  320. The C<server> on which to change the password.
  321.  
  322. =item C<user> - Scalar String
  323.  
  324. The name of the C<user> whose password is being changed.
  325.  
  326. =item C<old> - Scalar String
  327.  
  328. The existing password for C<user>.
  329.  
  330. =item C<new> - Scalar String
  331.  
  332. The new password for C<user>.
  333.  
  334. =back
  335.  
  336.  
  337. =head2 UserDel(server, user)
  338.  
  339. Deletes the specified C<user> account. Administrator or Account Operator
  340. privilege is required to execute this function.
  341.  
  342. =over 8
  343.  
  344. =item C<server> - Scalar String
  345.  
  346. The C<server> on which to delete the C<user>.
  347.  
  348. =item C<user> - Scalar String
  349.  
  350. The C<user> account to delete.
  351.  
  352. =back
  353.  
  354. =head2 UserEnum(server, array[, filter])
  355.  
  356. Enumerates all the accounts on server that satisfy C<filter>. Unlike the
  357. C<NetUserEnum()> function in the API, this function does not allow you
  358. to specify a level (internally it is hardcoded to 0). In Perl it is
  359. trivial to implement the equivalent function (should you need it) - see
  360. L<Example 1>.
  361.  
  362. =over 8
  363.  
  364. =item C<server> - Scalar String
  365.  
  366. The C<server> on which to enumerate the accounts satisfying C<filter>.
  367.  
  368. =item C<array> - Array Reference
  369.  
  370. The array that will hold the names of all users on C<server> whose
  371. accounts match C<filter>.
  372.  
  373. =item C<filter> - Scalar Int (optional)
  374.  
  375. The filter to apply (see L<USER ENUM FILTER>). This argument is optional
  376. and if not present a default of C<FILTER_NORMAL_ACCOUNT> is used.
  377.  
  378. =back
  379.  
  380. =head2 UserGetGroups(server, user, array)
  381.  
  382. Get the global groups for which C<user> is a member. It returns the group
  383. names in C<array>. Unlike the C<NetUserGetGroups()> function in the API,
  384. this function does not allow you to specify a level (internally is
  385. hardcoded to 0). In Perl it is trivial to implement the equivalent function
  386. (in the unlikely event that you might need it).
  387.  
  388. =over 8
  389.  
  390. =item C<server> - Scalar String
  391.  
  392. The C<server> from which to get the groups of which C<user> is a member.
  393.  
  394. =item C<user> - Scalar String
  395.  
  396. The C<user> whose group membership you wish to examine.
  397.  
  398. =item C<array> - Scalar String
  399.  
  400. The array that will contain the group names to which C<user> belongs.
  401.  
  402. =back
  403.  
  404. =head2 UserGetInfo(server, user, level, hash)
  405.  
  406. Returns the information at the specified C<level> for the named C<user>
  407. in C<hash>.
  408.  
  409. =over 8
  410.  
  411. =item C<server> - Scalar String
  412.  
  413. The C<server> from which to get the requested information about C<user>.
  414.  
  415. =item C<user> - Scalar String
  416.  
  417. The C<user> whose information you want.
  418.  
  419. =item C<level> - Scalar Int
  420.  
  421. One of: 0, 1, 2, 3, 10, 11 and 20. See L<USER INFO LEVELS>.
  422.  
  423. =item C<hash> - Hash Reference
  424.  
  425. The hash that will contain the keys and values for the information
  426. requested. See L<USER INFO FIELDS> for information about which keys are
  427. present in a given level.
  428.  
  429. =back
  430.  
  431. =head2 UserGetLocalGroups(server, user, array[, flags])
  432.  
  433. Gets the names of the local groups of which C<user> is a member. Unlike
  434. the C<NetUserEnum()> function in the API, this function does not allow you
  435. to specify a level. Since the underlying API restricts you to level 0 there
  436. really isn't any need to include it...
  437.  
  438. =over 8
  439.  
  440. =item C<server> - Scalar String
  441.  
  442. The server from which to get the local groups of which C<user> is a member.
  443.  
  444. =item C<user> - Scalar String
  445.  
  446. The C<user> whose local group membership you wish to enumerate.
  447.  
  448. =item C<array> - Array Reference
  449.  
  450. The array that will hold the names of the local groups to which C<user>
  451. belongs.
  452.  
  453. =item C<flags> - Scalar Int <em>(optional)</em>
  454.  
  455. Either C<Win32API::Net::LG_INCLUDE_INDIRECT()> or 0. if C<flags> is
  456. omitted, the function internally uses 0. Specifying C<LG_INCLUDE_INDIRECT()>
  457. will include in the list the names of the groups of which the C<user> is
  458. indirectly a member (e.g. by being in a global group that is a member of a
  459. local group).
  460.  
  461. This field can take no other values.
  462.  
  463. =back
  464.  
  465.  
  466. =head2 UserModalsGet()
  467.  
  468. This function is not currently implemented.
  469.  
  470.  
  471. =head2 UserModalsSet()
  472.  
  473. This function is not currently implemented.
  474.  
  475.  
  476. =head2 UserSetGroups(server, user, array)
  477.  
  478. Sets the (global) group membership for C<user> to the specified groups.
  479. Unlike the API function C<NetUserSetGroups()>, this function does not take a
  480. C<level> parameter (mainly because this option is largely redundant).
  481.  
  482. =over 8
  483.  
  484. =item C<server> - Scalar String
  485.  
  486. The C<server> on which you wish to set the group membership for C<user>.
  487.  
  488. =item C<user> - Scalar String
  489.  
  490. The C<user> whose group membership you wish to set.
  491.  
  492. =item C<array> - Array Reference
  493.  
  494. The array containing the (global) group names to set the C<user>s
  495. membership of.
  496.  
  497. =back
  498.  
  499. This function will fail if any of the group names specified do not exist.
  500.  
  501. =head2 UserSetInfo(server, user, level, hash, error)
  502.  
  503. Sets the info for C<user> according to the information contained in C<hash>
  504. for C<level> (see L<USER INFO LEVELS>).
  505.  
  506. =over 8
  507.  
  508. =item C<server> - Scalar String
  509.  
  510. The C<server> on which you wish to change the info for C<user>.
  511.  
  512. =item C<user> - Scalar String
  513.  
  514. The C<user> whose info you wish to change.
  515.  
  516. =item C<level> - Scalar Int
  517.  
  518. One of 0, 1, 2, 3, or 20 (according to Microsoft documentation). In
  519. practice, you can use all the 10xx levels as well to change most of the
  520. individual properties of the named C<user> - although this may not be
  521. supported in future...
  522.  
  523. =item C<hash> - Hash Reference
  524.  
  525. The hash that will contain the necessary key/value pairs required for
  526. C<level> (see L<USER INFO LEVELS>).
  527.  
  528. =item C<error> - Scalar Int
  529.  
  530. Provides information on which field in C<hash> were not properly
  531. specified. See L<USER FIELD ERRORS> for more information about what
  532. values can be returned in this field.
  533.  
  534. =back
  535.  
  536. =head1 NET GROUP FUNCTIONS
  537.  
  538. The C<Group*()> functions all operate only on global groups. To modify
  539. local groups, use the corresponding C<LocalGroup*()> functions.
  540.  
  541. Administrator or Account Operator group membership is required to
  542. successfully execute most of these functions on a remote server or on
  543. a computer that has local security enabled.
  544.  
  545. The C<server> field can be the empty string, in which case the function
  546. defaults to running on the local computer. If you leave this field blank
  547. then you should ensure that you are running the function on a PDC or BDC
  548. for your current domain. Use the support function C<GetDCName()> to find out
  549. what the domain controller is, should you not be running this on the PDC.
  550.  
  551. The following functions are available.
  552.  
  553.  
  554. =head2 GroupAdd(server, level, hash, error)
  555.  
  556. Adds the specified group.
  557.  
  558. =over 8
  559.  
  560. =item C<server> - Scalar String
  561.  
  562. The C<server> on which to add the group.
  563.  
  564. =item C<level> - Scalar String
  565.  
  566. The C<level> of information contained in C<hash>. This can be one of 0, 1
  567. or 2. See L<GROUP INFO LEVELS>.
  568.  
  569. =item C<hash> - Hash Reference
  570.  
  571. A hash containing the required key/value pairs for C<level>.
  572.  
  573. =item C<error> - Scalar Int
  574.  
  575. Provides information on which field in C<hash> was not properly specified.
  576. See L<GROUP FIELD ERRORS> for more information about what values can be
  577. returned in this field.
  578.  
  579. =back
  580.  
  581.  
  582. =head2 GroupAddUser(server, group, user)
  583.  
  584. Adds the specified C<user> to the specified C<group>.
  585.  
  586. =over 8
  587.  
  588. =item C<server> - Scalar String
  589.  
  590. The C<server> on which to add the C<user> to C<group>.
  591.  
  592. =item C<group> - Scalar String
  593.  
  594. The C<group> to add the C<user> to.
  595.  
  596. =item C<user> - Scalar String
  597.  
  598. The C<user> to add to C<group>.
  599.  
  600. =back
  601.  
  602.  
  603.  
  604. =head2 GroupDel(server, group)
  605.  
  606. Deletes the specified global group.
  607.  
  608. =over 8
  609.  
  610. =item C<server> - Scalar String
  611.  
  612. The C<server> on which to delete the named C<group>.
  613.  
  614. =item C<group> -Scalar String
  615.  
  616. The C<group> to delete.
  617.  
  618. =back
  619.  
  620.  
  621.  
  622. =head2 GroupDelUser(server, group, user)
  623.  
  624. Deletes the specified user from the specified group.
  625.  
  626. =over 8
  627.  
  628. =item C<server> - Scalar String
  629.  
  630. The C<server> on which to delete C<user> from C<group>.
  631.  
  632. =item C<group> - Scalar String
  633.  
  634. The C<group> from which to delete C<user>.
  635.  
  636. =item C<user> - Scalar String
  637.  
  638. The C<user> to delete from C<group>.
  639.  
  640. =back
  641.  
  642.  
  643. =head2 GroupEnum(server, array)
  644.  
  645. Enumerates all the global groups on the server. Unlike the API call
  646. C<NetGroupEnum()>, this function does not allow you to specify a level
  647. (internally it is hardcoded to 0). In Perl it is trivial to implement
  648. the equivalent function (should you need it).
  649.  
  650. =over 8
  651.  
  652. =item C<server> - Scalar String
  653.  
  654. The server on which to enumerate the (global) C<groups>.
  655.  
  656. =item C<array> - Array Reference
  657.  
  658. An array that, on return, will contain the C<group> names.
  659.  
  660. =back
  661.  
  662.  
  663. =head2 GroupGetInfo(server, group, level, hash)
  664.  
  665. Retrieves C<level> information for C<group> returning information in
  666. C<hash>.
  667.  
  668. =over 8
  669.  
  670. =item C<server> - Scalar String
  671.  
  672. The C<server> from which to get the group information.
  673.  
  674. =item C<group> - Scalar String
  675.  
  676. The C<group> whose information you wish to obtain.
  677.  
  678. =item C<level> - Scalar Int
  679.  
  680. The C<level> of information you wish to retrieve. This can be one of 1, 2
  681. or 3. See L<GROUP INFO LEVELS>.
  682.  
  683. =item C<hash> - Hash Reference
  684.  
  685. The hash that will contain the information.
  686.  
  687. =back
  688.  
  689.  
  690. =head2 GroupGetUsers(server, group, array)
  691.  
  692. Returns (in C<array>) the users belonging to C<group>. Unlike the API
  693. call C<NetGroupGetUsers()>, this function does not allow you to specify
  694. a level (internally it is hardcoded to 0). In Perl it is trivial to
  695. implement the equivalent function (should you need it).
  696.  
  697. =over 8
  698.  
  699. =item C<server> - Scalar String
  700.  
  701. The C<server> from which to get the group information.
  702.  
  703. =item C<group> - Scalar String
  704.  
  705. The C<group> whose users you wish to obtain.
  706.  
  707. =item C<array> - Array Reference
  708.  
  709. The array to hold the user names retrieved.
  710.  
  711. =back
  712.  
  713. =head2 GroupSetInfo(server, group, level, hash, error)
  714.  
  715. Sets the information for C<group> according to C<level>.
  716.  
  717. =over 8
  718.  
  719. =item C<server> - Scalar String
  720.  
  721. The C<server> on which to set the C<group> information.
  722.  
  723. =item C<group> - Scalar String
  724.  
  725. The C<group> whose information you wish to set.
  726.  
  727. =item C<level> - Scalar Int
  728.  
  729. The C<level> of information you are supplying in C<hash>.  Level can be
  730. one of 0, 1 or 2. See L<GROUP INFO LEVELS>.
  731.  
  732. =item C<hash> - Hash Reference
  733.  
  734. The hash containing the required key/value pairs for C<level>.
  735.  
  736. =item C<error> - Scalar String
  737.  
  738. On failure, the C<error> parameter will contain a value which specifies
  739. which field caused the error. See L<GROUP FIELD ERRORS>.
  740.  
  741. =back
  742.  
  743. =head2 GroupSetUsers(server, group, array)
  744.  
  745. Sets the membership of C<group> to contain only those users specified
  746. in C<array>. This function will fail if any user names contained in the
  747. array are not valid users on C<server>.  On successful completion
  748. C<group> will contain only the users specified in C<array>.  Use the
  749. functions C<GroupAddUser()/GroupDelUser()> to add and delete individual
  750. users from a group.
  751.  
  752. =over 8
  753.  
  754. =item C<server> - Scalar String
  755.  
  756. The C<server> on which to set the C<group> membership.
  757.  
  758. =item C<group> - Scalar String
  759.  
  760. The C<group> to set the membership of.
  761.  
  762. =item C<array> - Array Reference
  763.  
  764. The array containing the names of all users who will be members of C<group>.
  765.  
  766. =back
  767.  
  768. =head1 NET LOCAL GROUP FUNCTIONS
  769.  
  770. The C<LocalGroup*()> functions operate on local groups. If these
  771. functions are run on a PDC then these functions operate on the domains
  772. local groups.
  773.  
  774. Administrator or Account Operator group membership is required to
  775. successfully execute most of these functions on a remote server or on a
  776. computer that has local security enabled.
  777.  
  778. The C<server> field can be the empty string, in which case the function
  779. defaults to running on the local computer. If you leave this field blank
  780. then you should ensure that you are running the function on a PDC or BDC
  781. for your current domain. Use the support function C<GetDCName()> to find
  782. out what the domain controller is, should you not be running this on the PDC.
  783.  
  784. The following functions are available.
  785.  
  786. =head2 LocalGroupAdd(server, level, hash, error)
  787.  
  788. Adds the specified group. The name of the group is contained in the C<name>
  789. key of C<hash>.
  790.  
  791. =over 8
  792.  
  793. =item C<server> - Scalar String
  794.  
  795. The C<server> on which to add the group.
  796.  
  797. =item C<level> - Scalar String
  798.  
  799. The C<level> of information contained in C<hash>. This can be one of 0 or 1.
  800. See L<LOCAL GROUP INFO LEVELS>.
  801.  
  802. =item C<hash> - Hash Reference
  803.  
  804. A hash containing the required key/value pairs for C<level>.
  805.  
  806. =item C<error> - Scalar Int
  807.  
  808. Provides information on which field in C<hash> wasn't properly specified.
  809. See L<LOCAL GROUP FIELD ERRORS> for more information about what values
  810. this can take.
  811.  
  812. =back
  813.  
  814. =head2 LocalGroupAddMember()
  815.  
  816. This function is obselete in the underlying API and has therefore not
  817. been implemented.  Use C<LocalGroupAddMembers> instead.
  818.  
  819. =head2 LocalGroupAddMembers(server, group, array)
  820.  
  821. Adds the specified users (members) to the local group. Unlike the API
  822. function C<NetLocalGroupAddMembers()>, this function does not allow you
  823. to specify a level (internally it is hardcoded to 3).
  824. This was done to simplify the implementation. To add a 'local' user, you
  825. need only specify the C<name>. You can also specify users using the
  826. C<DOMAIN\user> syntax.
  827.  
  828. =over 8
  829.  
  830. =item C<server> - Scalar String
  831.  
  832. The C<server> on which to add the members to C<group>.
  833.  
  834. =item C<group> - Scalar String
  835.  
  836. The C<group> to add the members to.
  837.  
  838. =item C<array> - Array Reference
  839.  
  840. The array containing the members to add to C<group>.
  841.  
  842. =back
  843.  
  844. =head2 LocalGroupDel(server, group)
  845.  
  846. Delete the specified local group.
  847.  
  848. =over 8
  849.  
  850. =item C<server> - Scalar String
  851.  
  852. The C<server> on which to delete the named C<group>.
  853.  
  854. =item C<group> -Scalar String
  855.  
  856. The C<group> to delete.
  857.  
  858. =back
  859.  
  860. =head2 LocalGroupDelMember()
  861.  
  862. This function is obselete in the underlying API and has therefore not
  863. been implemented.  Use C<LocalGroupDelMembers()> instead.
  864.  
  865. =head2 LocalGroupDelMembers(server, group, array)
  866.  
  867. Delete the specified users (members) of the local group. Unlike the API
  868. function C<NetLocalGroupDelMembers()>, this function does not allow you
  869. to specify a level (internally it is hardcoded to 3). This was done to
  870. simplify the implementation. To delete a 'local' user, you need only
  871. specify the C<name>. You can also specify users using the C<DOMAIN\user>
  872. syntax.
  873.  
  874. =over 8
  875.  
  876. =item C<server> - Scalar String
  877.  
  878. The C<server> on which to delete the members from C<group>.
  879.  
  880. =item C<group> - Scalar String
  881.  
  882. The C<group> to delete the members from.
  883.  
  884. =item C<array> - Array Reference
  885.  
  886. The array containing the members to delete from C<group>.
  887.  
  888. =back
  889.  
  890. =head2 LocalGroupEnum(server, array)
  891.  
  892. Enumerates all the local groups on the server. Unlike the API call
  893. C<NetLocalGroupEnum()>, this function does not allow you to specify a
  894. level (internally it is hardcoded to 0). In Perl it is trivial to
  895. implement the equivalent function (should you need it).
  896.  
  897. =over 8
  898.  
  899. =item C<server> - Scalar String
  900.  
  901. The server on which to enumerate the (local) C<groups>.
  902.  
  903. =item C<array> - Array Reference
  904.  
  905. The array to hold the C<group> names.
  906.  
  907. =back
  908.  
  909. =head2 LocalGroupGetInfo(server, group, level, hash)
  910.  
  911. Retrieves C<level> information for C<group>.
  912.  
  913. =over 8
  914.  
  915. =item C<server> - Scalar String
  916.  
  917. The C<server> from which to get the group information.
  918.  
  919. =item C<group> - Scalar String
  920.  
  921. The C<group> whose information you wish to obtain.
  922.  
  923. =item C<level> - Scalar Int
  924.  
  925. The C<level> of information you wish to retrieve. This can be 0 or 1.
  926. See L<LOCAL GROUP INFO LEVELS>.
  927.  
  928. =item C<hash> - Hash Reference
  929.  
  930. The hash that will contain the information.
  931.  
  932. =back
  933.  
  934. =head2 LocalGroupGetMembers(server, group, hash)
  935.  
  936. Retrieves the users belonging to C<group>. Unlike the API call
  937. C<NetLocalGroupGetUsers()>, this function does not allow you to specify
  938. a level (internally it is hardcoded to 0). In Perl it is trivial to
  939. implement the equivalent function (should you need it).
  940.  
  941. =over 8
  942.  
  943. =item C<server> - Scalar String
  944.  
  945. The C<server> from which to retrieve the group information.
  946.  
  947. =item C<group> - Scalar String
  948.  
  949. The C<group> whose users you wish to obtain.
  950.  
  951. =item C<array> - Array Reference
  952.  
  953. The array to hold the user names retrieved.
  954.  
  955. =back
  956.  
  957. =head2 LocalGroupSetInfo(server, level, hash, error)
  958.  
  959. Sets the information for C<group> according to C<level>.
  960.  
  961. =over 8
  962.  
  963. =item C<server> - Scalar String
  964.  
  965. The C<server> on which to set the C<group> information.
  966.  
  967. =item C<group> - Scalar String
  968.  
  969. The C<group> whose information you wish to set.
  970.  
  971. =item C<level> - Scalar Int
  972.  
  973. The C<level> of information you are supplying in C<hash>.
  974. Level can be one of 0 or 1. See L<LOCAL GROUP INFO LEVELS>.
  975.  
  976. =item C<hash> - Hash Reference
  977.  
  978. The hash containing the required key/value pairs for C<level>.
  979.  
  980. =item C<error> - Scalar String
  981.  
  982. On failure, the C<error> parameter will contain a value which specifies
  983. which field caused the error. See L<LOCAL GROUP FIELD ERRORS>.
  984.  
  985. =back
  986.  
  987. =head2 LocalGroupSetMembers()
  988.  
  989. This function has not been implemented at present.
  990.  
  991.  
  992. =head1 NET GET FUNCTIONS
  993.  
  994. =head2 GetDCName(server, domain, domain-controller)
  995.  
  996. Gets the C<domain-controller> name for C<server> and C<domain>.
  997.  
  998. =over 8
  999.  
  1000. =item C<server> - Scalar String
  1001.  
  1002. The C<server> whose domain controller you wish to locate.
  1003.  
  1004. =item C<domain> - Scalar String
  1005.  
  1006. The C<domain> that C<server> is a member of whose domain-controller
  1007. you wish the locate.
  1008.  
  1009. =item C<domain-controller> - Scalar String (output)
  1010.  
  1011. The name of the C<domain-controller> for the requested C<domain>.
  1012.  
  1013. =back
  1014.  
  1015. Note: This module does not implement the C<NetGetAnyDCName()>API function
  1016. as this is obsolete.
  1017.  
  1018.  
  1019.  
  1020. =head1 USER INFO LEVELS
  1021.  
  1022. Most of the C<User*()> functions take a C<level> parameter. This C<level>
  1023. specifies how much detail the corresponding C<hash> should contain (or in
  1024. the case of a C<UserGet*()> function, will contain after the call). The
  1025. following C<level> descriptions provide information on what fields should
  1026. be present for a given level. See L<USER INFO FIELDS> for a description of
  1027. the fields.
  1028.  
  1029. =over 8
  1030.  
  1031. =item Level 0
  1032.  
  1033. name
  1034.  
  1035. =item Level 1
  1036.  
  1037. name, password, passwordAge, priv, homeDir, comment, flags, scriptPath
  1038.  
  1039. =item Level 2
  1040.  
  1041. name, password, passwordAge, priv, homeDir, comment, flags, scriptPath,
  1042. authFlags, fullName, usrComment, parms, workstations, lastLogon,
  1043. lastLogoff, acctExpires, maxStorage, unitsPerWeek, logonHours, badPwCount,
  1044. numLogons, logonServer, countryCode, codePage
  1045.  
  1046. =item Level 3
  1047.  
  1048. name, password, passwordAge, priv, homeDir, comment, flags, scriptPath,
  1049. authFlags, fullName, usrComment, parms, workstations, lastLogon, lastLogoff,
  1050. acctExpires, maxStorage, unitsPerWeek, logonHours, badPwCount, numLogons,
  1051. logonServer, countryCode, codePage, userId, primaryGroupId, profile,
  1052. homeDirDrive, passwordExpired
  1053.  
  1054. =item Level 10
  1055.  
  1056. name, comment, usrComment, fullName
  1057.  
  1058. =item Level 11
  1059.  
  1060. name, comment, usrComment, fullName, priv, authFlags, passwordAge, homeDir,
  1061. parms, lastLogon, lastLogoff, badPwCount, numLogons, logonServer,
  1062. countryCode, workstations, maxStorage, unitsPerWeek, logonHours, codePage
  1063.  
  1064. =item Level 20
  1065.  
  1066. name, fullName, comment, flags, userId
  1067.  
  1068. =item Level 21
  1069.  
  1070. B<Not available in this implementation>
  1071.  
  1072. =item Level 22
  1073.  
  1074. B<Not available in this implementation>
  1075.  
  1076. =item Level 1003
  1077.  
  1078. password
  1079.  
  1080. =item Level 1005
  1081.  
  1082. priv
  1083.  
  1084. =item Level 1006
  1085.  
  1086. homeDir
  1087.  
  1088. =item Level 1007
  1089.  
  1090. comment
  1091.  
  1092. =item Level 1008
  1093.  
  1094. flags
  1095.  
  1096. =item Level 1009
  1097.  
  1098. scriptPath
  1099.  
  1100. =item Level 1010
  1101.  
  1102. authFlags
  1103.  
  1104. =item Level 1011
  1105.  
  1106. fullName
  1107.  
  1108. =item Level 1012
  1109.  
  1110. usrComment
  1111.  
  1112. =item Level 1013
  1113.  
  1114. parms
  1115.  
  1116. =item Level 1014
  1117.  
  1118. workstations
  1119.  
  1120. =item Level 1017
  1121.  
  1122. acctExpires
  1123.  
  1124. =item Level 1018
  1125.  
  1126. maxStorage
  1127.  
  1128. =item Level 1020
  1129.  
  1130. unitsPerWeek, logonHours
  1131.  
  1132. =item Level 1023
  1133.  
  1134. logonServer
  1135.  
  1136. =item Level 1024
  1137.  
  1138. countryCode
  1139.  
  1140. =item Level 1025
  1141.  
  1142. codePage
  1143.  
  1144. =item Level 1051
  1145.  
  1146. primaryGroupId
  1147.  
  1148. =item Level 1052
  1149.  
  1150. profile
  1151.  
  1152. =item Level 1053
  1153.  
  1154. homeDirDrive
  1155.  
  1156. =back
  1157.  
  1158.  
  1159.  
  1160. =head1 USER INFO FIELDS
  1161.  
  1162. The following is an alphabetical listing of each possible field, together
  1163. with the data type that the field is expected to contain.
  1164.  
  1165. =over 8
  1166.  
  1167. =item C<acctExpires> - Scalar Int (UTC)
  1168.  
  1169. The time (as the number of seconds since 00:00:00, 1st January 1970) when
  1170. the account expires. A -1 in this field specifies that the account never
  1171. expires.
  1172.  
  1173. =item C<authFlags> - Scalar Int (See USER_AUTH_FLAGS).
  1174.  
  1175. The level of authority that this use has. The value this can take depends
  1176. on the users group membership - this value is therefore read only and
  1177. cannot be set using C<UserAdd()> or C<UserSetInfo()>. Its value can be one
  1178. of:
  1179.  
  1180. =back
  1181.  
  1182.  
  1183.     User belongs to group        Flag value
  1184.     ---------------------        ----------
  1185.     Print Operators            Win32API::Net::AF_OP_PRINT()
  1186.     Server Operators        Win32API::Net::AF_OP_SERVER()
  1187.     Account Operators        Win32API::Net::AF_OP_ACCOUNTS()
  1188.  
  1189.  
  1190. =over 8
  1191.  
  1192. =item C<badPwCount> - Scalar Int
  1193.  
  1194. The number of times that the user has failed to logon by specifying an
  1195. incorrect password.
  1196.  
  1197. =item C<codePage> - Scalar Int
  1198.  
  1199. The code page that this user uses.
  1200.  
  1201. =item C<comment> - Scalar String
  1202.  
  1203. The comment associated with this user account. This can be any string
  1204. (apparently of any length).
  1205.  
  1206. =item C<countryCode> - Scalar Int
  1207.  
  1208. The country code that this user uses.
  1209.  
  1210. =item C<flags> - Scalar Int (Bitwise OR of USER_FLAGS)
  1211.  
  1212. The flags for this user. See L<USER FLAGS>.
  1213.  
  1214. =item C<fullName> - Scalar String
  1215.  
  1216. The users' full name.
  1217.  
  1218. =item C<homeDir> - Scalar String
  1219.  
  1220. The home directory of the user. This can be either a UNC path or an
  1221. absolute path (drive letter + path). Can be the empty string ("").
  1222.  
  1223. =item C<homeDirDrive> - Scalar String
  1224.  
  1225. The home directory drive that the users home directory is mapped to
  1226. (assuming that the specified home directory is a UNC path).
  1227.  
  1228. =item C<lastLogon> - Scalar Int (UTC)
  1229.  
  1230. The time (as the number of seconds since 00:00:00, 1st January 1970)
  1231. that the user last logged on.
  1232.  
  1233. =item C<lastLogoff> - Scalar Int (UTC)
  1234.  
  1235. The time (as the number of seconds since 00:00:00, 1st January 1970)
  1236. that the user last logged off .
  1237.  
  1238. =item C<logonHours> - Reference to Array of Integers (length 21 elements)
  1239.  
  1240. The times at which the user can logon. This should be an integer array
  1241. with 21 elements.  Each element represents an 8 hour period and each bit
  1242. represents represents an hour. Only the lower byte of each integer is
  1243. used. If this is left undefined then no restrictions are placed on the
  1244. account.
  1245.  
  1246. =item C<logonServer> - Scalar String
  1247.  
  1248. The logon server for this user. Under Windows NT, this value cannot be
  1249. set and will always have the value '\\*' when queried.
  1250.  
  1251. =item C<maxStorage> - Scalar Int
  1252.  
  1253. The current release of Windows NT does not implement disk quotas so
  1254. it is believed that the value of this key is ignored.
  1255.  
  1256. =item C<name> - Scalar String
  1257.  
  1258. The user name that this request applies to. Most of the functions take
  1259. the user name as a separate argument. In general, the user name provided
  1260. should be the same as that in the one provided in the hash.
  1261.  
  1262. =item C<numLogons> - Scalar Int
  1263.  
  1264. The number of times that the named user has successfully logged on to
  1265. this machine/domain.
  1266.  
  1267. =item C<parms> - Scalar String
  1268.  
  1269. The value of this key can be used by applications. There are none known
  1270. to to author that use it, although it could be used to hold adminitrative
  1271. information.
  1272.  
  1273. =item C<password> - Scalar String
  1274.  
  1275. The password to be set. The password is never returned in a C<UserGet()>
  1276. operation.
  1277.  
  1278. =item C<passwordAge> - Scalar Int (UTC)
  1279.  
  1280. The current age of the password (stored as the number of seconds since
  1281. 00:00:00, 1st January 1970).
  1282.  
  1283. =item C<passwordExpired> - Scalar Int
  1284.  
  1285. The value of this key is used in two different ways. When queried via
  1286. C<UserGetInfo()> the return value is 0 is the password has not expired
  1287. and 1 if it has. When setting the value via C<UserAdd()> or
  1288. C<UserSetInfo()> a value of 0 indicates that the users' password has
  1289. not expired whereas a value of 1 will force the user to change their
  1290. password at the next logon.
  1291.  
  1292. =item C<primaryGroupId> - Scalar Int
  1293.  
  1294. The id of the primary group that this user belongs to. When creating
  1295. accounts with C<UserAdd()> you should use a value of 0x201.
  1296.  
  1297. =item C<priv> - Scalar Int (Bitwise OR of USER_PRIVILEGE_FLAGS)
  1298.  
  1299. The privilege level that this user has. This is never returned from a
  1300. C<UserGet()> call. See L<USER PRIVILEGE FLAGS>.
  1301.  
  1302. =item C<profile> - Scalar String
  1303.  
  1304. The profile that is associated with the named user. This can be UNC path,
  1305. a local path or undefined.
  1306.  
  1307. =item C<scriptPath> - Scalar String
  1308.  
  1309. The path to the logon script for this user. This should be specified as a
  1310. relative path and will cause the logon script to be run from (relative
  1311. location) in the logon servers export directory.
  1312.  
  1313. =item C<unitsPerWeek> - Scalar Int
  1314.  
  1315. The value of this key represents the granularity of the logonHours array.
  1316. Its use is beyond the scope of this package.
  1317.  
  1318. =item C<usrComment> - Scalar String
  1319.  
  1320. The user comment field (contrasted with the comment field ;-).
  1321.  
  1322. =item C<workstations> - Scalar String
  1323.  
  1324. A comma-separated string containing upto 8 workstation that the named
  1325. user can login to.  Setting a value for this key will then allow the
  1326. named user to login to only those computers named.
  1327.  
  1328. =item C<userId> - Scalar Int
  1329.  
  1330. The user id associated with this user This value is generated by the
  1331. system and cannot be set or changed using the C<UserAdd()> or
  1332. C<UserSetInfo()> calls.
  1333.  
  1334. =back
  1335.  
  1336.  
  1337.  
  1338. =head1 USER FLAGS
  1339.  
  1340. The following is an alphabetical listing of the user flags.
  1341. The C<flags> key (see L<USER INFO FIELDS>) should be the bitwise OR of one
  1342. or more of these values.
  1343.  
  1344. =over 8
  1345.  
  1346. =item C<UF_ACCOUNTDISABLE()>
  1347.  
  1348. This account has been disabled.
  1349.  
  1350. =item C<UF_DONT_EXPIRE_PASSWD()>
  1351.  
  1352. Never expire the password on this account.
  1353.  
  1354. =item C<UF_HOMEDIR_REQUIRED()>
  1355.  
  1356. A home directory must be specified (ignored for NT).
  1357.  
  1358. =item C<UF_INTERDOMAIN_TRUST_ACCOUNT()>
  1359.  
  1360. The account represents a interdomain trust account.
  1361.  
  1362. =item C<UF_LOCKOUT()>
  1363.  
  1364. Lock out this account (or this account has been locked out due to
  1365. security policy - i.e.  badLogonCount is greater than your policy allows).
  1366. This value can be cleared but not set by a C<UserSetInfo()> call.
  1367.  
  1368. =item C<UF_NORMAL_ACCOUNT()>
  1369.  
  1370. The account is a normal user account.
  1371.  
  1372. =item C<UF_PASSWD_CANT_CHANGE()>
  1373.  
  1374. The password for this account cannot be changed (execpt by an Administrator
  1375. using one of the above calls).
  1376.  
  1377. =item C<UF_PASSWD_NOTREQD()>
  1378.  
  1379. A password is not required for this account.
  1380.  
  1381. =item C<UF_SCRIPT()>
  1382.  
  1383. This <strong>must be set when creating account on Windows NT.
  1384.  
  1385. =item C<UF_SERVER_TRUST_ACCOUNT()>
  1386.  
  1387. The account represents a Windows NT Backup Domain Controller account in
  1388. the domain.
  1389.  
  1390. =item C<UF_TEMP_DUPLICATE_ACCOUNT()>
  1391.  
  1392. To quote the Microsoft Documentation <em>"This is an account for
  1393. users whose primary account is in another domain. This account provides
  1394. user access to this domain, but not to any domain that trusts this domain.
  1395. The User Manager refers to this account type as a local user account.
  1396.  
  1397. =item C<UF_WORKSTATION_TRUST_ACCOUNT()>
  1398.  
  1399. The account represents a computer account for a workstation or server in
  1400. the domain.
  1401.  
  1402. =back
  1403.  
  1404. Please note that these are implemented as functions and are therefore
  1405. called in the same way as other functions. You should typically use them
  1406. like:
  1407.  
  1408.     $ufScript = Win32API::Net::UF_SCRIPT();
  1409.  
  1410. =head1 USER PRIVILEGE FLAGS
  1411.  
  1412. These following values are used in the C<priv> key. This field is never
  1413. initialised on a C<UserGet*()> call and once set cannot be changed in a
  1414. C<UserSetInfo()> call.
  1415.  
  1416. =over 8
  1417.  
  1418. =item C<USER_PRIV_ADMIN()>
  1419.  
  1420. Account is an an administrative account.
  1421.  
  1422. =item C<USER_PRIV_GUEST()>
  1423.  
  1424. Account is a guest account.
  1425.  
  1426. =item C<USER_PRIV_USER()>
  1427.  
  1428. Account is a user account.
  1429.  
  1430. =back
  1431.  
  1432. Please note that these are implemented as functions and are therefore
  1433. called in the same way as other functions. You should typically use them
  1434. like:
  1435.  
  1436.     $userPrivUser = Win32API::Net::USER_PRIV_USER();
  1437.  
  1438. =head1 USER ENUM FILTER
  1439.  
  1440. These flags are used in the C<UserEnum()> function to specify which
  1441. accounts to retrieve. It should be a bitwise OR of some (or all) of
  1442. the following.
  1443.  
  1444. =over 8
  1445.  
  1446. =item C<FILTER_TEMP_DUPLICATE_ACCOUNT()>
  1447.  
  1448. Show temporary duplicate account (one presumes).
  1449.  
  1450. =item C<FILTER_NORMAL_ACCOUNT()>
  1451.  
  1452. Show normal user account.
  1453.  
  1454. =item C<FILTER_INTERDOMAIN_TRUST_ACCOUNT()>
  1455.  
  1456. Show interdomain trust accounts.
  1457.  
  1458. =item C<FILTER_WORKSTATION_TRUST_ACCOUNT()>
  1459.  
  1460. Show workstation trust accounts.
  1461.  
  1462. =item C<FILTER_SERVER_TRUST_ACCOUNT()>
  1463.  
  1464. Show server trust accounts.
  1465.  
  1466. =back
  1467.  
  1468. Please note that these are implemented as functions and are therefore
  1469. called in the same way as other functions. You should typically use them
  1470. like:
  1471.  
  1472.     $filterNormalAccounts = Win32API::Net::FILTER_NORMAL_ACCOUNT();
  1473.  
  1474. =head1 USER FIELD ERRORS
  1475.  
  1476. For the C<User*()> functions that take an C<error> parameter this variable
  1477. will, on failure, contain one of the following constants. Note that the
  1478. function may fail because more than one key/value was missing from the
  1479. input hash. You will only find out about the first one that was incorrectly
  1480. specified. This is only really useful in debugging.
  1481.  
  1482. =over 8
  1483.  
  1484. =item C<USER_ACCT_EXPIRES_PARMNUM()>
  1485.  
  1486. C<acctExpires> field was absent or not correctly specified.
  1487.  
  1488. =item C<USER_AUTH_FLAGS_PARMNUM()>
  1489.  
  1490. C<authFlags> field was absent or not correctly specified.
  1491.  
  1492. =item C<USER_BAD_PW_COUNT_PARMNUM()>
  1493.  
  1494. C<badPasswordCount> field was absent or not correctly specified.
  1495.  
  1496. =item C<USER_CODE_PAGE_PARMNUM()>
  1497.  
  1498. C<codePage> field was absent or not correctly specified.
  1499.  
  1500. =item C<USER_COMMENT_PARMNUM()>
  1501.  
  1502. C<comment> field was absent or not correctly specified.
  1503.  
  1504. =item C<USER_COUNTRY_CODE_PARMNUM()>
  1505.  
  1506. C<countryCode> field was absent or not correctly specified.
  1507.  
  1508. =item C<USER_FLAGS_PARMNUM()>
  1509.  
  1510. C<flags> field was absent or not correctly specified.
  1511.  
  1512. =item C<USER_FULL_NAME_PARMNUM()>
  1513.  
  1514. C<fullName> field was absent or not correctly specified.
  1515.  
  1516. =item C<USER_HOME_DIR_DRIVE_PARMNUM()>
  1517.  
  1518. C<homeDirDrive> field was absent or not correctly specified.
  1519.  
  1520. =item C<USER_HOME_DIR_PARMNUM()>
  1521.  
  1522. C<homeDir> field was absent or not correctly specified.
  1523.  
  1524. =item C<USER_LAST_LOGOFF_PARMNUM()>
  1525.  
  1526. C<lastLogoff> field was absent or not correctly specified.
  1527.  
  1528. =item C<USER_LAST_LOGON_PARMNUM()>
  1529.  
  1530. C<lastLogon> field was absent or not correctly specified.
  1531.  
  1532. =item C<USER_LOGON_HOURS_PARMNUM()>
  1533.  
  1534. C<logonHours> field was absent or not correctly specified.
  1535.  
  1536. =item C<USER_LOGON_SERVER_PARMNUM()>
  1537.  
  1538. C<logonServer> field was absent or not correctly specified.
  1539.  
  1540. =item C<USER_MAX_STORAGE_PARMNUM()>
  1541.  
  1542. C<maxStorage> field was absent or not correctly specified.
  1543.  
  1544. =item C<USER_NAME_PARMNUM()>
  1545.  
  1546. C<name> field was absent or not correctly specified.
  1547.  
  1548. =item C<USER_NUM_LOGONS_PARMNUM()>
  1549.  
  1550. C<numLogons> field was absent or not correctly specified.
  1551.  
  1552. =item C<USER_PARMS_PARMNUM()>
  1553.  
  1554. C<parms> field was absent or not correctly specified.
  1555.  
  1556. =item C<USER_PASSWORD_AGE_PARMNUM()>
  1557.  
  1558. C<passwordAge> field was absent or not correctly specified.
  1559.  
  1560. =item C<USER_PASSWORD_PARMNUM()>
  1561.  
  1562. C<password> field was absent or not correctly specified.
  1563.  
  1564. =item C<USER_PRIMARY_GROUP_PARMNUM()>
  1565.  
  1566. C<primaryGroup> field was absent or not correctly specified.
  1567.  
  1568. =item C<USER_PRIV_PARMNUM()>
  1569.  
  1570. C<priv> field was absent or not correctly specified.
  1571.  
  1572. =item C<USER_PROFILE_PARMNUM()>
  1573.  
  1574. C<profile> field was absent or not correctly specified.
  1575.  
  1576. =item C<USER_SCRIPT_PATH_PARMNUM()>
  1577.  
  1578. C<scriptPath> field was absent or not correctly specified.
  1579.  
  1580. =item C<USER_UNITS_PER_WEEK_PARMNUM()>
  1581.  
  1582. C<unitPerWeek> field was absent or not correctly specified.
  1583.  
  1584. =item C<USER_USR_COMMENT_PARMNUM()>
  1585.  
  1586. C<usrComment> field was absent or not correctly specified.
  1587.  
  1588. =item C<USER_WORKSTATIONS_PARMNUM()>
  1589.  
  1590. C<workstations> field was absent or not correctly specified.
  1591.  
  1592. =back
  1593.  
  1594.  
  1595. =head1 GROUP INFO LEVELS
  1596.  
  1597. Some of the C<Group*()> functions take a C<level> parameter. This C<level>
  1598. specifies how much detail the corresponding C<hash> should contain (or in
  1599. the case of a C<GroupGetInfo()> function, will contain after the call).
  1600. The following C<level> descriptions provide information on what fields
  1601. should be present for a given level. See L<GROUP INFO FIELDS>
  1602. for a description of the fields.
  1603.  
  1604. =over 8
  1605.  
  1606. =item C<Level 0>
  1607.  
  1608. name.
  1609.  
  1610. =item C<Level 1>
  1611.  
  1612. name, comment.
  1613.  
  1614. =item C<Level 2>
  1615.  
  1616. name, comment, groupId, attributes.
  1617.  
  1618. =item C<Level 1002>
  1619.  
  1620. comment.
  1621.  
  1622. =item C<Level 1005>
  1623.  
  1624. attributes.
  1625.  
  1626. =back
  1627.  
  1628.  
  1629. =head1 GROUP INFO FIELDS
  1630.  
  1631. =over 8
  1632.  
  1633. =item C<attributes> - Scalar Int
  1634.  
  1635. The attributes of the group. These are no longer settable in Windows NT 4.0
  1636. and they are not currently supported in this package either.
  1637.  
  1638. =item C<comment> - Scalar String
  1639.  
  1640. The C<comment> that applies to this group. This is the only value that
  1641. can be set via a GroupSetInfo call.
  1642.  
  1643. =item C<groupId> - Scalar Int
  1644.  
  1645. The groups Id.
  1646.  
  1647. =item C<name> - Scalar String
  1648.  
  1649. The groups name.
  1650.  
  1651. =back
  1652.  
  1653.  
  1654.  
  1655. =head1 GROUP FIELD ERRORS
  1656.  
  1657. For the C<Group*()> functions that take an C<error> parameter
  1658. this variable will, on failure, contain one of the following constants.
  1659. Note that the function may fail because more than one key/value was
  1660. missing from the input hash. You will only find out about the first one
  1661. that was incorrectly specified. This is only really useful for debugging
  1662. purposes.
  1663.  
  1664. =over 8
  1665.  
  1666. =item C<GROUP_ATTRIBUTES_PARMNUM()>
  1667.  
  1668. C<attributes> field was absent or not correctly specified.
  1669.  
  1670. =item C<GROUP_COMMENT_PARMNUM()>
  1671.  
  1672. C<comment> field was absent or not correctly specified.
  1673.  
  1674. =item C<GROUP_NAME_PARMNUM()>
  1675.  
  1676. C<name> field was absent or not correctly specified.
  1677.  
  1678. =back
  1679.  
  1680.  
  1681.  
  1682. =head1 GROUP USERS INFO LEVELS
  1683.  
  1684. The C<GroupGetUsers()> function can take a level of 0 or 1. These will
  1685. return the following:
  1686.  
  1687. =over 8
  1688.  
  1689. =item C<Level 0>
  1690.  
  1691. name.
  1692.  
  1693. =item C<Level 1>
  1694.  
  1695. name, attributes.
  1696.  
  1697. =back
  1698.  
  1699.  
  1700. =head1 GROUP USERS INFO FIELDS
  1701.  
  1702. =over 8
  1703.  
  1704. =item C<name> - Scalar String
  1705.  
  1706. The user's name.
  1707.  
  1708. =item C<attributes> - Scalar Int
  1709.  
  1710. The attributes of the group. These are no longer settable in Windows NT
  1711. 4.0 and they are not currently supported in this package either.
  1712.  
  1713. =back
  1714.  
  1715.  
  1716.  
  1717. =head1 LOCAL GROUP INFO LEVELS
  1718.  
  1719. =over 8
  1720.  
  1721. =item C<Level 0>
  1722.  
  1723. name
  1724.  
  1725. =item C<Level 1>
  1726.  
  1727. name, comment
  1728.  
  1729. =item C<Level 1002>
  1730.  
  1731. comment
  1732.  
  1733.  
  1734. =back
  1735.  
  1736.  
  1737.  
  1738. =head1 LOCAL GROUP INFO FIELDS
  1739.  
  1740. =over 8
  1741.  
  1742. =item C<name> - Scalar String
  1743.  
  1744. The groups name
  1745.  
  1746. =item C<comment> - Scalar String
  1747.  
  1748. The groups 'comment'
  1749.  
  1750. =back
  1751.  
  1752. =head1 LOCAL GROUP FIELD ERRORS
  1753.  
  1754. For the C<LocalGroup*()> functions that take an C<error> parameter this
  1755. variable will, on failure, contain one of the following constants. Note
  1756. that the function may fail because more than one key/value was missing
  1757. or incorrectly specified in the input hash. You will only find out about
  1758. the first one that was incorrectly specified. This is only really useful
  1759. for debugging purposes.
  1760.  
  1761. =over 8
  1762.  
  1763. =item C<LOCALGROUP_NAME_PARMNUM()>
  1764.  
  1765. The C<name> field was absent or not correctly specified.
  1766.  
  1767. =item C<LOCALGROUP_COMMENT_PARMNUM()>
  1768.  
  1769. The C<comment> field wasabsent or not correctly specified.
  1770.  
  1771. =back
  1772.  
  1773. =head1 EXAMPLES
  1774.  
  1775. The following example shows how you can create a function in Perl that
  1776. has the same functionality as the C<NetUserEnum()> API call. The Perl
  1777. version doesn't have the level parameter so you must first use the
  1778. C<UserEnum()> function to retrieve all the account names and then iterate
  1779. through the returned array issuing C<UserGetInfo()> calls.
  1780.  
  1781.     sub userEnumAtLevel {
  1782.        my($server, $level, $filter) = @_;
  1783.        my(@array);
  1784.        Win32API::Net::UserEnum($server, \@array, $filter);
  1785.        for $user (@array) {
  1786.       Win32API::Net::UserGetInfo($server, $user, $level, \%hash);
  1787.       print "This could access all level $level settings for $user - eg fullName $hash{fullName}\n";
  1788.        }
  1789.     }
  1790.     userEnumAtLevel("", 2, 0);
  1791.  
  1792.  
  1793.  
  1794. =head1 AUTHOR
  1795.  
  1796. Bret Giddings, <bret@essex.ac.uk>
  1797.  
  1798.  
  1799. =head1 SEE ALSO
  1800.  
  1801. C<perl(1)>
  1802.  
  1803.  
  1804. =head1 ACKNOWEDGEMENTS
  1805.  
  1806. This work was built upon work done by HiP Communications along with
  1807. modifications to HiPs code by <michael@ecel.uwa.edu.au> and <rothd@roth.net>.
  1808. In addition, I would like to thank Jenny Emby at GEC Marconi, U.K. for
  1809. proof reading this manual page and making many suggestions that have led
  1810. to its current layout. Last but not least I would like to thank Larry Wall
  1811. and all the other Perl contributors for making this truly wonderful
  1812. language.
  1813.  
  1814. =cut
  1815.