TranslatorWindows/Translater/powercopy.ps1

6 lines
368 B
PowerShell
Raw Permalink Normal View History

2024-10-05 10:30:49 +03:00
# Чтение содержимого файла и копирование его в буфер обмена с указанием кодировки UTF-8
$fileContent = Get-Content 'C:\Translater\output.txt' -Raw -Encoding UTF8
$fileContent = $fileContent.TrimEnd()
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Clipboard]::SetText($fileContent)