/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/engine/Basic/assets/WriteConsoleOut.ps1
23 строки
437 B
Jordan Borean
Add PSApplicationOutputEncoding variable (#21219)
21 окт 2025, 08:13
Не верифицирован
21 окт 2025, 08:13
af26292
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. [CmdletBinding()] param ( [Parameter(Mandatory)] [string] $Value, [Parameter(Mandatory)] [string] $Encoding ) $enc = [System.Text.Encoding]::GetEncoding($Encoding) $data = $enc.GetBytes($Value) $outStream = [System.Console]::OpenStandardOutput() try { $outStream.Write($data, 0, $data.Length) } finally { $outStream.Dispose() }