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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//! Windows Product Activation (WPA) is an antipiracy technology to reduce the casual copying of software.
//!
//! | Class | Description |
//! |---------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
//! | [**Win32\_ComputerSystemWindowsProductActivationSetting**](/previous-versions/windows/desktop/licwmiprov/win32-computersystemwindowsproductactivationsetting) | Association class<br/> Relates instances of [**Win32\_ComputerSystem**](win32-computersystem) and [**Win32\_WindowsProductActivation**](/previous-versions/windows/desktop/legacy/aa394520(v=vs.85)).<br/> |
//! | [**Win32\_Proxy**](/previous-versions/windows/desktop/legacy/aa394389(v=vs.85)) | Instance class<br/> Contains properties and methods to query and configure an Internet connection related to WPA.<br/> |
//! | [**Win32\_WindowsProductActivation**](/previous-versions/windows/desktop/legacy/aa394520(v=vs.85)) | Instance class<br/> Contains properties and methods related to WPA.<br/> |
use crateupdate;
use ;
use SystemTime;
use ;
/// Represents the state of Windows Proxys
///
/// Note: this class doesn't exist anymore
update!;
/// Represents the state of Windows WindowsProductActivations
///
/// Note: this class doesn't exist anymore
update!;
/// The `Win32_Proxy` WMI class contains properties and methods to query and configure an Internet
/// connection related to Windows Product Activation (WPA).
///
/// <https://learn.microsoft.com/en-us/previous-versions/windows/desktop/legacy/aa394389(v=vs.85)>
/// The Win32_WindowsProductActivation WMI class contains properties and methods related to Windows
/// Product Activation (WPA), such as activation state and grace period. This class also provides the
/// ability to activate the customer's computer online and offline.
///
/// <https://learn.microsoft.com/en-us/previous-versions/windows/desktop/legacy/aa394520(v=vs.85)>