-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
145 lines (111 loc) · 11 KB
/
README.txt
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
What is iPowerShellCpuid?
=========================
iPowerShellCpuid contains a collection of PowerShell Cmdlets that allow us to obtain the CPUID information.
Changes in this version (v1.0.2)
================================
· Added
-----
- Add documentation for all available properties grouped by Leafs (Adds an entry in README.md file).
This information can be useful, because it groups all the searchable properties in one place.
· Changed
-------
- Update iCPUID library to v1.0.6
v1.0.1
======
· Changed
-------
- Update iCPUID library to v1.0.5
- Library versions for this version
•———————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————•
| iPowerShellCpuid 1.0.0.1 CPUID PowerShell Cmdlets library |
•———————————————————————————————————————————————————————————————————•
v1.0.0
======
· Added
-----
- Update iCPUID library to v1.0.3
- Library versions for this version
•———————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————•
| iPowerShellCpuid 1.0.0.0 CPUID PowerShell Cmdlets library |
•———————————————————————————————————————————————————————————————————•
- Solution structure, prepare solution structure to add future new specifications.
\ root
\ documentation [Code documentation (md files)]
\ references [External references]
\ src
\ iPowerShellCpuid [CPUID PowerShell Cmdlets library]
\ tools [Build documentation script]
Install via PowerShellGallery
=============================
For more information, please see https://www.powershellgallery.com/packages/iPowerShellCpuid/1.0.1
Usage
=====
Examples
--------
- Below are a series of tabs with shortcuts and information on all available cmdlets.
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-CpuidIsAvailable |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-CpuidIsAvailable |
| Alias CPUID-Is-Available |
| Description Returns a value that indicates whether this system supports the CPUID instruction. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidIsAvailableCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-GetCpuidImplementedLeafs |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-GetCpuidImplementedLeafs |
| Alias CPUID-Implemented-Leafs |
| Description Returns a collection of elements where each element represents an implemented leaf. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidImplementedLeafsCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-CpuidSubLeafs |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-CpuidSubLeafs |
| Alias CPUID-Sub-Leafs |
| Description Returns all implemented sub-leafs for the given leaf. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidSubLeafsCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-CpuidImplementedProperties |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-CpuidImplementedProperties |
| Alias CPUID-Implemented-Properties |
| Description Returns a collection of elements where each element represents an implemented property for given leaf, optionally you can |
| specify the subleaf. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidImplementedPropertiesCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-GetCpuidLocateProperty |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-GetCpuidLocateProperty |
| Alias CPUID-Locate-Property |
| Description Returns a value that contains the location or locations of the cpuid property by its name. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidLocatePropertyCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-GetCpuidProperty |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-GetCpuidProperty |
| Alias CPUID-Property |
| Description Returns a reference that contains the information associated with the given property such as the key that identifies the |
| property and its value. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidPropertyCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Get-GetCpuidPropertyDetail |
-------------------------------------------------------------------------------------------------------------------------------------------------------
| Name Get-GetCpuidPropertyDetail |
| Alias CPUID-Property-Detail |
| Description Returns a reference that contains the complete data of the given property, includes its name, value, unit in which the |
| property is expressed, description and leaf to which it belongs. |
| Example(s) link https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/PowerShellCpuid.CmdLets/GetCpuidPropertyCmdlet.md |
-------------------------------------------------------------------------------------------------------------------------------------------------------
Library Documentation
---------------------
For full code documentation, please see https://github.com/iAJTin/iPowerShellCpuid/blob/main/documentation/iPowerShellCpuid.md