ModuleType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the type of a module.
public enum class ModuleType
public enum ModuleType
type ModuleType =
Public Enum ModuleType
- Inheritance
-
ModuleType
Fields
Name | Value | Description |
---|---|---|
Script | 0 | Indicates that this is a script module (a powershell file with a .PSM1 extension) |
Binary | 1 | Indicates that this is compiled .dll containing cmdlet definitions. |
Manifest | 2 | Indicates that this module entry was derived from a module manifest and may have child modules. |
Cim | 3 | Indicates that this is cmdlets-over-objects module (a powershell file with a .CDXML extension) |
Workflow | 4 | Indicates that this is workflow module (a powershell file with a .XAML extension) |