Skip to content

Commit f1c1176

Browse files
committed
add Script to get Base64 from DLL
1 parent a06ac53 commit f1c1176

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

QRCodeDLLtoBase64.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
$Content = Get-Content -Path QRCoder.dll -AsByteStream
2+
$Base64 = [System.Convert]::ToBase64String($Content)
3+
$Base64 | Out-File encodedQRCoder.txt

0 commit comments

Comments
 (0)