We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d37d4 commit 4403979Copy full SHA for 4403979
Encode-Base64
@@ -0,0 +1,6 @@
1
+function Encode-Base64{
2
+ param([parameter(ValueFromPipeline)]$String);
3
+ $String=[Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes($string));
4
+ return $String
5
+ }
6
+
0 commit comments