7 lines
225 B
PowerShell

$ImagePath = "\\vsql01\FLOWFACT\subcura\Outlook_Signatur\mit_KontaktBild\KontaktBild.jpg"
$Bytes = [System.IO.File]::ReadAllBytes($ImagePath)
$Base64 = [System.Convert]::ToBase64String($Bytes)
$Base64 | Set-Clipboard