1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use PCWSTR;
use crateToWideString;
/// Provides an interface to manage Windows user accounts on either
/// the **local machine** or a **remote server**.
///
/// This struct encapsulates the target server as a wide string pointer
/// (`PCWSTR`) compatible with Windows API calls such as `NetUserAdd`,
/// `NetUserDel`, and `NetUserSetInfo`.
///
/// # Local vs Remote
///
/// - [`UserManager::local`] targets the current machine
/// - [`UserManager::remote`] targets a specific machine (e.g. `"\\\\SERVER01"`)
///
/// # Examples
///
/// ```rust
/// use windows_users::UserManager;
///
/// let local = UserManager::local();
///
/// let remote = UserManager::remote(r"\\SERVER01");
/// ```