Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 878 Bytes

File metadata and controls

14 lines (12 loc) · 878 Bytes

( *< Byte Byte Byte

Description

This includes two small PowerShell scripts that enable the serializing and subsequent deserializing of any file. This allows that file, for example like a .exe or a .zip, to be sent over the internet as regular text and then reassembled at the destination using the other script.

Instructions

  1. Choose any file
  2. Copy the out.ps1 script file to that directory. Change the $InputFile variable to the name of the file.
  3. Run out.ps1
  4. Send all of the byte chunks files located in the output folder file anywhere you want and place the file in any directory.
  5. Either manually type or copy the in.ps1 script to the same location as the file from step #5.
  6. Open in.ps1 and edit the $OutputFile variable to be the deserialized output file name of your choice.
  7. Run in.ps1
  8. The original file that was serialized should now be usable.