ConvertFrom-CompressedByteArrayToString

SYNOPSIS

Converts a string to a byte array object.

SYNTAX

ConvertFrom-CompressedByteArrayToString [-ByteArray] <Byte[]> [[-Encoding] <String>]
 [-ProgressAction <ActionPreference>] [<CommonParameters>]

DESCRIPTION

Converts a string to a byte array object.

EXAMPLES

EXAMPLE 1

$bytes = ConvertFrom-CompressedByteArrayToString -ByteArray $byteArray
$bytes.GetType()

IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Object[] System.Array

$bytes[0].GetType()

IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Byte System.ValueType

PARAMETERS

-ByteArray

The array of bytes to convert.

Type: Byte[]
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Encoding

The encoding to use for conversion. Defaults to UTF8. Valid options are ASCII, BigEndianUnicode, Default, Unicode, UTF32, and UTF8.

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: UTF8
Accept pipeline input: False
Accept wildcard characters: False

-ProgressAction

{{ Fill ProgressAction Description }}

Type: ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

[String]

NOTES

https://austoonz.github.io/Convert/functions/ConvertFrom-CompressedByteArrayToString/