*****
[important]New version of the PowerShell WMI module 2.0 is out. It has now 19 cmdlets in total! To get the latest version of it, click here [/important]
*****
Have you ever needed to create a new WMI property ? Have you ever needed to create that WMI property in a specefic (and new) WMI class ?
Well, if you did, the WMI-Module is what you are looking for then !
After setting up the method on how to measure a Task sequence time (which I explained here), I needed to add it at the end of our task sequence in the “tatoo” section.
In OSD, we generaly like to put the same information, in various locations : Registry, environment variable and in the WMI repository. The registry and environment variable are pretty easy (or lets say that was something I had already done before), but how do we actually add a WMI property and a new WMI class ?
That is a good question right ?
I have started to write some cmdlets in order to create a class, then a property, then to import or export MOF files, and sooner then I thought, I came up with the WMI PowerShell Module.
And it is my turn to give something back to the PowerShell community.
For now, the module is composed of the following cmdlets :
Compile-MofFile
Export-MofFile
Get-WMIClass
Get-WMICommands
New-WMIClass
New-WMIProperty
Remove-WMIClass
Remove-WMIProperty
Set-WMIPropertyValue
New cmdlets will probably still come, and most likley, with your very valuable feedback, I will publish a new updated version with any eventual bug fixes etc…
[important]Download the latest version of the module on technet right here.[/important]
Here under you will also have the current listing of the module. You can either download it from technet here, or copy paste the listing here below in a new text file called “WMI-Module.psm1”
Listing WMI-Module.psm1
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
|
Function New-WMIClass {
<#
.SYNOPSIS
This function help to create a new WMI class.
.DESCRIPTION
The function allows to create a WMI class in the CimV2 namespace.
Accepts a single string, or an array of strings.
.PARAMETER ClassName
Specify the name of the class that you would like to create. (Can be a single string, or a array of strings).
.PARAMETER NameSpace
Specify the namespace where class the class should be created.
If not specified, the class will automatically be created in “Rootcimv2”
.EXAMPLE
New-WMIClass -ClassName “PowerShellDistrict”
Creates a new class called “PowerShellDistrict”
.EXAMPLE
New-WMIClass -ClassName “aaaa”,“bbbb”
Creates two classes called “aaaa” and “bbbb” in the Rootcimv2
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:16.07.2014
Last modification date: 16.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[/fusion_builder_column][fusion_builder_column type=“1_1” background_position=“left top” background_color=“” border_size=“” border_color=“” border_style=“solid” spacing=“yes” background_image=“” background_repeat=“no-repeat” padding=“” margin_top=“0px” margin_bottom=“0px” class=“” id=“” animation_type=“” animation_speed=“0.3” animation_direction=“left” hide_on_mobile=“no” center_content=“no” min_height=“none”][CmdletBinding()]
Param(
[Parameter(Mandatory=$true,valueFromPipeLine=$true)][string[]]$ClassName,
[Parameter(Mandatory=$false)][string]$NameSpace = “rootcimv2”
)
foreach ($NewClass in $ClassName){
if (!(Get-WMIClass -ClassName $NewClass -NameSpace $NameSpace)){
write-verbose “Attempting to create class $($NewClass)”
$WMI_Class = “”
$WMI_Class = New-Object System.Management.ManagementClass($NameSpace, $null, $null)
$WMI_Class.name = $NewClass
$WMI_Class.Put() | out-null
write-host “Class $($NewClass) created.”
}else{
write-host “Class $($NewClass) is already present. Skiping..”
}
}
}
Function New-WMIProperty {
<#
.SYNOPSIS
This function help to create new WMI properties.
.DESCRIPTION
The function allows to create new properties and set their values into a newly created WMI Class.
Event though it is possible, it is not recommended to create WMI properties in existing WMI classes !
.PARAMETER ClassName
Specify the name of the class where you would like to create the new properties.
.PARAMETER PropertyName
The name of the property.
.PARAMETER PropertyValue
The value of the property.
.EXAMPLE
New-WMIProperty -ClassName “PowerShellDistrict” -PropertyName “WebSite” -PropertyValue “www.PowerShellDistrict.com”
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:16.07.2014
Last modification date: 16.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)]
[ValidateScript({
$_ -ne “”
})]
[string]$ClassName,
[Parameter(Mandatory=$false)]
[string]$NameSpace=“Rootcimv2”,
[Parameter(Mandatory=$true)][string]$PropertyName,
[Parameter(Mandatory=$false)][string]$PropertyValue=“”
)
begin{
[wmiclass]$WMI_Class = Get-WmiObject -Class $ClassName -Namespace $NameSpace -list
}
Process{
write-verbose “Attempting to create property $($PropertyName) with value: $($PropertyValue) in class: $($ClassName)”
$WMI_Class.Properties.add($PropertyName,$PropertyValue)
Write-Output “Added $($PropertyName).”
}
end{
$WMI_Class.Put() | Out-Null
[wmiclass]$WMI_Class = Get-WmiObject -Class $ClassName -list
return $WMI_Class
}
}
Function Set-WMIPropertyValue {
<#
.SYNOPSIS
This function set a WMI property value.
.DESCRIPTION
The function allows to set a new value in an existing WMI property.
.PARAMETER ClassName
Specify the name of the class where the property resides.
.PARAMETER PropertyName
The name of the property.
.PARAMETER PropertyValue
The value of the property.
.EXAMPLE
New-WMIProperty -ClassName “PowerShellDistrict” -PropertyName “WebSite” -PropertyValue “www.PowerShellDistrict.com”
Sets the property “WebSite” to “www.PowerShellDistrict.com”
.EXAMPLE
New-WMIProperty -ClassName “PowerShellDistrict” -PropertyName “MainTopic” -PropertyValue “PowerShellDistrict”
Sets the property “MainTopic” to “PowerShell”
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:16.07.2014
Last modification date: 16.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)]
[ValidateScript({
$_ -ne “”
})]
[string]$ClassName,
[Parameter(Mandatory=$false)]
[string]$NameSpace=“Rootcimv2”,
[Parameter(Mandatory=$true)]
[ValidateScript({
$_ -ne “”
})]
[string]$PropertyName,
[Parameter(Mandatory=$true)]
[string]$PropertyValue
)
begin{
write-verbose “Setting new value : $($PropertyValue) on property: $($PropertyName):”
[wmiclass]$WMI_Class = Get-WmiObject -Class $ClassName -list
}
Process{
$WMI_Class.SetPropertyValue($PropertyName,$PropertyValue)
}
End{
$WMI_Class.Put() | Out-Null
return Get-WmiObject -Class $ClassName -list
}
}
Function Remove-WMIProperty{
<#
.SYNOPSIS
This function removes a WMI property.
.DESCRIPTION
The function allows to remove a specefic WMI property from a specefic WMI class.
/!Be aware that any wrongly deleted WMI properties could make your system unstable./!
.PARAMETER ClassName
Specify the name of the class name.
.PARAMETER PropertyName
The name of the property.
.EXAMPLE
Remove-WMIProperty -ClassName “PowerShellDistrict” -PropertyName “MainTopic”
Removes the WMI property “MainTopic”.
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:21.07.2014
Last modification date: 24.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)][string]$ClassName,
[Parameter(Mandatory=$true)][string]$PropertyName,
[Parameter(Mandatory=$false)][string]$NameSpace = “RootCimv2”,
[Parameter(Mandatory=$false)][string]$Force
)
if ($PSBoundParameters[‘NameSpace’]){
[wmiclass]$WMI_Class = Get-WmiObject -Class $ClassName -Namespace $NameSpace -list
}
else{
write-verbose “Gaterhing data of $($ClassName)”
[wmiclass]$WMI_Class = Get-WmiObject -Class $ClassName -list
}
if (!($force)){
$Answer = Read-Host “Deleting $($PropertyName) can make your system unreliable. Press ‘Y’ to continue”
if ($Answer -eq“Y”){
$WMI_Class.Properties.remove($PropertyName)
write-ouput “Property $($propertyName) removed.”
}else{
write-ouput “Uknowned answer. Class ‘$($PropertyName)’ has not been deleted.”
}
}#End force
elseif ($force){
$WMI_Class.Properties.remove($PropertyName)
write-ouput “Property $($propertyName) removed.”
}
}
Function Remove-WMIClass {
<#
.SYNOPSIS
This function removes a WMI class from the WMI repository.
/! Removing a wrong WMI class could make your system unreliable. Use wisely and at your own risk /!
.DESCRIPTION
The function deletes a WMI class from the WMI repository. Use this function wiseley as this could make your system unstable if wrongly used.
.PARAMETER ClassName
Specify the name of the class that you would like to delete.
.PARAMETER NameSpace
Specify the name of the namespace where the WMI class resides (default is Rootcimv2).
.PARAMETER Force
Will delete the class without asking for confirmation.
.EXAMPLE
Remove-WMIClass -ClassName “PowerShellDistrict”
This will launch an attempt to remove the WMI class PowerShellDistrict from the repository. The user will be asked for confirmation before deleting the class.
.EXAMPLE
Remove-WMIClass -ClassName “PowerShellDistrict” -force
This will remove the WMI PowerShellDistrict class from the repository. The user will NOT be asked for confirmation before deleting the class.
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:18.07.2014
Last modification date: 24.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[parameter(mandatory=$true,valuefrompipeline=$true)]
[ValidateScript({
$_ -ne “”
})]
[string[]]$ClassName,
[Parameter(Mandatory=$false)]
[string]$NameSpace = “RootCimV2”,
[Parameter(Mandatory=$false)]
[Switch]$Force
)
write-verbose “Attempting to delete classes”
foreach ($Class in $ClassName){
if(!($Class)){
write-verbose “Class name is empty. Skipping…”
}else{
[wmiclass]$WMI_Class = Get-WmiObject -Namespace $NameSpace -Class $Class -list
if ($WMI_Class){
if (!($force)){
write-host
$Answer = Read-Host “Deleting $($Class) can make your system unreliable. Press ‘Y’ to continue”
if ($Answer -eq“Y”){
$WMI_Class.Delete()
write-output “$($Class) deleted.”
}else{
write-output “Uknowned answer. Class ‘$($class)’ has not been deleted.”
}
}
elseif ($force){
$WMI_Class.Delete()
write-output “$($Class) deleted.”
}
}Else{
write-output “Class $($Class) not present”
}#End if WMI_CLASS
}#EndIfclass emtpy
}#End foreach
}
Function Compile-MofFile{
<#
.SYNOPSIS
This function will compile a mof file.
.DESCRIPTION
The function allows to create new WMI Namespaces, classes and properties by compiling a MOF file.
Important: Using the Compile-MofFile cmdlet, assures that the newly created WMI classes and Namespaces also will be recreated in case of WMI rebuild.
.PARAMETER MofFile
Specify the complete path to the MOF file.
.EXAMPLE
Compile-MofFile -MofFile C:tatoo.mof
.NOTES
Version: 1.0
Author: Stéphane van Gulick
Creation date:18.07.2014
Last modification date: 18.07.2014
History : Creation : 18.07.2014 —> SVG
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)]
[ValidateScript({
test-path $_
})][string]$MofFile
)
begin{
if (test-path “C:WindowsSystem32wbemmofcomp.exe”){
$MofComp = get-item “C:WindowsSystem32wbemmofcomp.exe”
}
}
Process{
Invoke-expression “& $MofComp $MofFile”
Write-Output “Mof file compilation actions finished.”
}
End{
}
}
Function Export-MofFile {
<#
.SYNOPSIS
This function export a specefic class to a MOF file.
.DESCRIPTION
The function allows export specefic WMI Namespaces, classes and properties by exporting the data to a MOF file format.
Use the Generated MOF file in whit the cmdlet “Compile-MofFile” in order to import, or re-import the existing class.
.PARAMETER MofFile
Specify the complete path to the MOF file.(Must contain “.mof” as extension.
.EXAMPLE
Export-MofFile -ClassName “PowerShellDistrict” -Path “C:tempPowerShellDistrict_Class.mof”
.NOTES
Version: 1.0
Author: Stéphane van Gulick
Creation date:18.07.2014
Last modification date: 18.07.2014
History : Creation : 18.07.2014 —> SVG
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[parameter(mandatory=$true)]
[ValidateScript({
$_.endsWith(“.mof”)
})]
[string]$Path,
[parameter(mandatory=$true)]
[string]$ClassName,
[Parameter(Mandatory=$false)]
[string]$NameSpace = “RootCimV2”
)
begin{}
Process{
if ($PSBoundParameters[‘ClassName’]){
write-verbose “Checking for Namespace: $($Namespace) and Class $($Classname)”
[wmiclass]$WMI_Info = Get-WmiObject -Namespace $NameSpace -Class $ClassName -list
}
else{
[wmi]$WMI_Info = Get-WmiObject -Namespace $NameSpace -list
}
[system.management.textformat]$mof = “mof”
$MofText = $WMI_Info.GetText($mof)
Write-Output “Exporting infos to $($path)”
“#PRAGMA AUTORECOVER” | out-file -FilePath $Path
$MofText | out-file -FilePath $Path -Append
}
End{
return Get-Item $Path
}
}
Function Get-WMIClass{
<#
.SYNOPSIS
get information about a specefic WMI class.
.DESCRIPTION
returns the listing of a WMI class.
.PARAMETER ClassName
Specify the name of the class that needs to be queried.
.PARAMETER NameSpace
Specify the name of the namespace where the class resides in (default is “Rootcimv2”).
.EXAMPLE
get-wmiclass
List all the Classes located in the rootcimv2 namespace (default location).
.EXAMPLE
get-wmiclass -classname win32_bios
Returns the Win32_Bios class.
.EXAMPLE
get-wmiclass -classname MyCustomClass
Returns information from MyCustomClass class located in the default namespace (Rootcimv2).
.EXAMPLE
Get-WMIClass -NameSpace rootccm -ClassName *
List all the Classes located in the rootccm namespace
.EXAMPLE
Get-WMIClass -NameSpace rootccm -ClassName ccm_client
Returns information from the cm_client class located in the rootccm namespace.
.NOTES
Version: 1.0
Author: Stephane van Gulick
Creation date:23.07.2014
Last modification date: 23.07.2014
.LINK
www.powershellDistrict.com
.LINK
http://social.technet.microsoft.com/profile/st%C3%A9phane%20vg/
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$false,valueFromPipeLine=$true)][string]$ClassName,
[Parameter(Mandatory=$false)][string]$NameSpace = “rootcimv2”
)
begin{
write-verbose “Getting WMI class $($Classname)”
}
Process{
if (!($ClassName)){
$return = Get-WmiObject -Namespace $NameSpace -Class * -list
}else{
$return = Get-WmiObject -Namespace $NameSpace -Class $ClassName -list
}
}
end{
return $return
}
}
|
Leave A Comment