可以将.vbs文件转换为.exe文件吗?

  • 本文关键字:文件 exe 转换 vbs exe cmd
  • 更新时间 :
  • 英文 :


我想知道一种方法,使我的。vbs文件到。exe文件。

是可能的吗?

代码:

    Option Explicit
    Dim oShell : Set oShell = WScript.CreateObject ("WScript.Shell")
    Dim FSO : set FSO = CreateObject("Scripting.FileSystemObject") 
    Dim StartTime,Elapsed 
    'msgBox(oShell.CurrentDirectory)
    'MsgBox(FSO.GetFile(Wscript.ScriptFullName).ParentFolder )
    oShell.CurrentDirectory = FSO.GetFile(Wscript.ScriptFullName).ParentFolder
    StartTime = Timer
    IF NOT oShell.run( "ParentChildLinkFinal.vbs", 1, True) = 0 then Wscript.Quit
    IF NOT oShell.run( "Parent_Child_Merge_final.vbs", 1, True) = 0 then Wscript.Quit       
    Elapsed = Timer - StartTime
    MsgBox("Total time taken to finish this task:" & Elapsed & "in Seconds")

您可以使用这个实用程序来实现它http://www.vbs2exe.com/

相关内容

  • 没有找到相关文章

最新更新