Skip to content

Commit cfbf2a8

Browse files
authored
Fixes AB#1794012 - create v7.2 content (#6914)
* Fixes AB#1794012 - create v7.2 content * fix typo in exclude list
1 parent 513a89c commit cfbf2a8

File tree

491 files changed

+167220
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

491 files changed

+167220
-1
lines changed

Diff for: build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ReferenceDocset = Join-Path $PSScriptRoot 'reference'
4141

4242
# Go through all the directories in the reference folder
4343
$jobs = [System.Collections.Generic.List[object]]::new()
44-
$excludeList = 'module', 'media', 'docs-conceptual', 'mapping', 'bread', 'include', '7.2'
44+
$excludeList = 'module', 'media', 'docs-conceptual', 'mapping', 'bread', 'includes', '7.2'
4545
Get-ChildItem $ReferenceDocset -Directory -Exclude $excludeList | ForEach-Object -Process {
4646
$job = Start-ThreadJob -Name $_.Name -ArgumentList @($SkipCabs,$pandocExePath,$PSScriptRoot,$_) -ScriptBlock {
4747
param($SkipCabs, $pandocExePath, $WorkingDirectory, $DocSet)

Diff for: reference/7.2/CimCmdlets/CimCmdlets.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
Download Help Link: https://aka.ms/powershell72-help
3+
Help Version: 7.2.0.0
4+
Locale: en-US
5+
Module Guid: fb6cc51d-c096-4b38-b78d-0fed6277096a
6+
Module Name: CimCmdlets
7+
ms.date: 02/20/2019
8+
schema: 2.0.0
9+
title: CimCmdlets Module
10+
---
11+
# CimCmdlets Module
12+
13+
## Description
14+
15+
Contains cmdlets that interact with Common Information Model (CIM) Servers like the Windows
16+
Management Instrumentation (WMI) service.
17+
18+
## CimCmdlets Cmdlets
19+
20+
### [Export-BinaryMiLog](Export-BinaryMiLog.md)
21+
Creates a binary encoded representation of an object or objects and stores it in a file.
22+
23+
### [Get-CimAssociatedInstance](Get-CimAssociatedInstance.md)
24+
Retrieves the CIM instances that are connected to a specific CIM instance by an association.
25+
26+
### [Get-CimClass](Get-CimClass.md)
27+
Gets a list of CIM classes in a specific namespace.
28+
29+
### [Get-CimInstance](Get-CimInstance.md)
30+
Gets the CIM instances of a class from a CIM server.
31+
32+
### [Get-CimSession](Get-CimSession.md)
33+
Gets the CIM session objects from the current session.
34+
35+
### [Import-BinaryMiLog](Import-BinaryMiLog.md)
36+
Used to re-create the saved objects based on the contents of an export file.
37+
38+
### [Invoke-CimMethod](Invoke-CimMethod.md)
39+
Invokes a method of a CIM class.
40+
41+
### [New-CimInstance](New-CimInstance.md)
42+
Creates a CIM instance.
43+
44+
### [New-CimSession](New-CimSession.md)
45+
Creates a CIM session.
46+
47+
### [New-CimSessionOption](New-CimSessionOption.md)
48+
Specifies advanced options for the `New-CimSession` cmdlet.
49+
50+
### [Register-CimIndicationEvent](Register-CimIndicationEvent.md)
51+
Subscribes to indications using a filter expression or a query expression.
52+
53+
### [Remove-CimInstance](Remove-CimInstance.md)
54+
Removes a CIM instance from a computer.
55+
56+
### [Remove-CimSession](Remove-CimSession.md)
57+
Removes one or more CIM sessions.
58+
59+
### [Set-CimInstance](Set-CimInstance.md)
60+
Modifies a CIM instance on a CIM server by calling the **ModifyInstance** method of the CIM class.
61+

0 commit comments

Comments
 (0)