Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions reference/5.1/Microsoft.PowerShell.Management/New-Item.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,21 +379,21 @@ on the current provider you are using.

If your location is in a `FileSystem` drive, the following values are allowed:

- File
- Directory
- SymbolicLink
- Junction
- HardLink
- `File`
- `Directory`
- `SymbolicLink`
- `Junction`
- `HardLink`

When you create a file using this method, the resulting file is encoded as UTF-8 without a
byte-order-mark (BOM).

In a `Certificate` drive, these are the values you can specify:

- Certificate Provider
- Certificate
- Store
- StoreLocation
- `Certificate Provider`
- `Certificate`
- `Store`
- `StoreLocation`

For more information see [about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

Expand Down
18 changes: 9 additions & 9 deletions reference/7.2/Microsoft.PowerShell.Management/New-Item.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,11 @@ on the current provider you are using.

If your location is in a `FileSystem` drive, the following values are allowed:

- File
- Directory
- SymbolicLink
- Junction
- HardLink
- `File`
- `Directory`
- `SymbolicLink`
- `Junction`
- `HardLink`

> [!NOTE]
> Creating a `SymbolicLink` type on Windows requires elevation as administrator. However, Windows 10
Expand All @@ -392,10 +392,10 @@ If your location is in a `FileSystem` drive, the following values are allowed:

In a `Certificate` drive, these are the values you can specify:

- Certificate Provider
- Certificate
- Store
- StoreLocation
- `Certificate Provider`
- `Certificate`
- `Store`
- `StoreLocation`

For more information see [about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

Expand Down
18 changes: 9 additions & 9 deletions reference/7.4/Microsoft.PowerShell.Management/New-Item.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,11 @@ on the current provider you are using.

If your location is in a `FileSystem` drive, the following values are allowed:

- File
- Directory
- SymbolicLink
- Junction
- HardLink
- `File`
- `Directory`
- `SymbolicLink`
- `Junction`
- `HardLink`

> [!NOTE]
> Creating a `SymbolicLink` type on Windows requires elevation as administrator. However, Windows 10
Expand All @@ -391,10 +391,10 @@ If your location is in a `FileSystem` drive, the following values are allowed:

In a `Certificate` drive, these are the values you can specify:

- Certificate Provider
- Certificate
- Store
- StoreLocation
- `Certificate Provider`
- `Certificate`
- `Store`
- `StoreLocation`

For more information see [about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

Expand Down
14 changes: 14 additions & 0 deletions reference/7.5/CimCmdlets/CimCmdlets.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,43 +20,57 @@ This module is only available on the Windows platform.
## CimCmdlets Cmdlets

### [Export-BinaryMiLog](Export-BinaryMiLog.md)

Creates a binary encoded representation of an object or objects and stores it in a file.

### [Get-CimAssociatedInstance](Get-CimAssociatedInstance.md)

Retrieves the CIM instances that are connected to a specific CIM instance by an association.

### [Get-CimClass](Get-CimClass.md)

Gets a list of CIM classes in a specific namespace.

### [Get-CimInstance](Get-CimInstance.md)

Gets the CIM instances of a class from a CIM server.

### [Get-CimSession](Get-CimSession.md)

Gets the CIM session objects from the current session.

### [Import-BinaryMiLog](Import-BinaryMiLog.md)

Used to re-create the saved objects based on the contents of an export file.

### [Invoke-CimMethod](Invoke-CimMethod.md)

Invokes a method of a CIM class.

### [New-CimInstance](New-CimInstance.md)

Creates a CIM instance.

### [New-CimSession](New-CimSession.md)

Creates a CIM session.

### [New-CimSessionOption](New-CimSessionOption.md)

Specifies advanced options for the `New-CimSession` cmdlet.

### [Register-CimIndicationEvent](Register-CimIndicationEvent.md)

Subscribes to indications using a filter expression or a query expression.

### [Remove-CimInstance](Remove-CimInstance.md)

Removes a CIM instance from a computer.

### [Remove-CimSession](Remove-CimSession.md)

Removes one or more CIM sessions.

### [Set-CimInstance](Set-CimInstance.md)

Modifies a CIM instance on a CIM server by calling the **ModifyInstance** method of the CIM class.
1 change: 1 addition & 0 deletions reference/7.5/CimCmdlets/Get-CimSession.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ Accept wildcard characters: True
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
-WarningAction, and -WarningVariable. For more information, see
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ This section contains the help topics for the cmdlets that are installed with th
## Microsoft.PowerShell.Archive Cmdlets

### [Compress-Archive](Compress-Archive.md)

Creates a compressed archive, or zipped file, from specified files and directories.

### [Expand-Archive](Expand-Archive.md)
Extracts files from a specified archive (zipped) file.

Extracts files from a specified archive (zipped) file.
Loading