Remove RAR Right key extract menu of VBS code _VBS

Source: Internet
Author: User
Tags rar
Principle: http://demon.tw/programming/vbs-binary-file-another.html

Copy Code code as follows:

Public readbinary
Readbinarydat (". \1.exe")
Binarydat = replace (replace (readbinary, "526172211a07", "522172211a07"), "807a0161", "807a0121")
Writebinarydat "New.exe", Binarydat
Function Readbinarydat (FileName)
Const adTypeBinary = 1
Dim Stream, XMLDOM, node
Set xmldom = CreateObject ("Microsoft.XMLDOM")
Set node = xmldom. createelement ("binary")
Node. DataType = "Bin.hex"
Set stream = CreateObject ("ADODB.") Stream ")
Stream. Type = adTypeBinary
Stream. Open
Stream. LoadFromFile FileName
Node. nodeTypedValue = stream. Read
Stream. Close
Set stream = Nothing
readbinary = node. Text
Set node = Nothing
Set xmldom = Nothing
End Function

Sub Writebinarydat (FileName, Buf)
Const adTypeBinary = 1
Const Adsavecreateoverwrite = 2
Dim Stream, XMLDOM, node
Set xmldom = CreateObject ("Microsoft.XMLDOM")
Set node = xmldom. createelement ("binary")
Node. DataType = "Bin.hex"
Node. Text = Buf
Set stream = CreateObject ("ADODB.") Stream ")
Stream. Type = adTypeBinary
Stream. Open
Stream.Write node. nodeTypedValue
Stream.savetofile FileName, Adsavecreateoverwrite
Stream. Close
Set stream = Nothing
Set node = Nothing
Set xmldom = Nothing
End Sub

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.