-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating EZOut.HelpOut.ps1 (changing import logic) (#51)
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
Jul 25, 2022
1 parent
cdda611
commit 4fbe86c
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
|
||
Get-PropertySet | ||
--------------- | ||
### Synopsis | ||
Gets the property sets | ||
|
||
--- | ||
### Description | ||
|
||
Gets the property sets. Property sets are predefined views of an object. | ||
|
||
--- | ||
### Examples | ||
#### EXAMPLE 1 | ||
```PowerShell | ||
Get-PropertySet | ||
``` | ||
|
||
#### EXAMPLE 2 | ||
```PowerShell | ||
Get-PropertySet -TypeName System.Diagnostics.Process | ||
``` | ||
|
||
--- | ||
### Parameters | ||
#### **TypeName** | ||
|
||
The name of the typename to get | ||
|
||
|
||
|
||
|Type |Requried|Postion|PipelineInput| | ||
|----------------|--------|-------|-------------| | ||
|```[String[]]```|false |1 |false | | ||
--- | ||
### Outputs | ||
System.Management.Automation.PSObject | ||
|
||
|
||
--- | ||
### Syntax | ||
```PowerShell | ||
Get-PropertySet [[-TypeName] <String[]>] [<CommonParameters>] | ||
``` | ||
--- | ||
|
||
|