Evotec

Project

GPOZaurr

GPOZaurr helps inspect, report on, and remediate Group Policy environments with PowerShell.

Stars 1,166
Forks 115
Open issues 16
PowerShell Gallery downloads 417,764
Release v1.1.9
Language: PowerShell Updated: 2026-04-11

API Reference

Function

ConvertFrom-CSExtension

Namespace GPOZaurr

Converts Client-side Extension (CSE) GUIDs to their corresponding names.

Remarks

This function takes an array of CSE GUIDs and returns their corresponding names. It can be used to easily identify the purpose of each CSE GUID.

Examples

Authored help example

EXAMPLE 1

PS >


ConvertFrom-CSExtension -CSE '{35378EAC-683F-11D2-A89A-00C04FBBCFA2}', '{0F6B957E-509E-11D1-A7CC-0000F87571E3}' -Limited
Converts the specified CSE GUIDs to their corresponding names, limited to a predefined set.
        

EXAMPLE 2

PS >


ConvertFrom-CSExtension -CSE '{D02B1F73-3407-48AE-BA88-E8213C6761F1}', '{0ACDD40C-75AC-47ab-BAA0-BF6DE7E7FE63}'
Converts the specified CSE GUIDs to their corresponding names without any limitations.
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

ConvertFrom-CSExtension [-CSE <String[]>] [-Limited] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

CSE String[] optionalposition: 0pipeline: False
Specifies an array of Client-side Extension (CSE) GUIDs to be converted to names.
Limited SwitchParameter optionalposition: namedpipeline: False
Indicates whether the conversion should be limited to a predefined set of CSE GUIDs.