Skip to content

Instantly share code, notes, and snippets.

@MyITGuy
Last active October 16, 2025 20:58
Show Gist options
  • Select an option

  • Save MyITGuy/b453d32c47888ee1e219ff1570699122 to your computer and use it in GitHub Desktop.

Select an option

Save MyITGuy/b453d32c47888ee1e219ff1570699122 to your computer and use it in GitHub Desktop.
function ConvertFrom-ByteArray {
[CmdletBinding()]
param (
[Alias('appid')]
[Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)]
[byte[]]
$byteArray
)
begin {}
process {
try {
[System.Text.Encoding]::UTF8.GetString($byteArray)
}
catch {
throw $_
}
}
end {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment