Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7188313
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:03:15+00:00 2026-05-28T19:03:15+00:00

People have been embedding and executing VBScript within batch files for a long time.

  • 0

People have been embedding and executing VBScript within batch files for a long time. But all the published solutions that I have seen (at the time this question was originally posed) involve writing a temporary VBS file. For example: Embed VBScript inside Windows batch file.

Is it possible to execute embedded VBScript within batch without writing a temporary file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T19:03:17+00:00Added an answer on May 28, 2026 at 7:03 pm

    Note – jump to the UPDATE 2014-04-27 section at the bottom of this answer for the best solution.

    I used to think the answer was no. But then DosTips user Liviu discovered that the <SUB> character (Ctrl-Z, 0x1A, decimal 26) has bizare effects when embedded within a batch file. If functions somewhat like a line terminator such that it is possible for batch commands that follow a REM (or a :: remark hack) to execute if they are preceded by Ctrl-Z. http://www.dostips.com/forum/viewtopic.php?p=13160#p13160

    This has been confirmed on XP Home Edition sp3, Vista Home Premium sp2 64 bit, and Vista Enterprise sp2 32 bit. I’m assuming it works on other Windows versions.

    Note – the code below is supposed to have embedded Ctrl-Z characters. I swear I used to see them on this site when viewed with IE8. But they seem to have been lost from this post somehow and I cannot figure out how to post them anymore. I’ve replaced the characters with the string <SUB>

    ::<sub>echo This will execute in batch, but it will fail as vbs.
    rem<SUB>echo This will execute in batch, and it is also a valid vbs comment
    ::'<SUB>echo This will execute in batch and it is also a valid vbs comment
    

    That is the key to a successful batch/vbs hybrid. As long as each batch command is preceded by rem<SUB> or ::'<SUB>, then the vbs engine won’t see it, but the batch command will run. Just make sure you terminate the batch portion with an EXIT or EXIT /B. Then the remainder of the script can be normal looking vbs.

    You can even have a batch label if needed. :'Label is both a valid vbs comment and a valid batch label.

    Here is a trivial hybrid script. (again with <SUB> in place of embedded Ctrl-Z char)

    ::'<SUB>@cscript //nologo //e:vbscript "%~f0" & exit /b
    WScript.Echo "Example of a hybrid VBS / batch file"
    

    Update 2012-04-15

    jeb found a solution that avoids the awkward CTRL-Z, but it prints out ECHO OFF at the start and also sets some extraneous variables.

    I have found a solution without CTRL-Z that eliminates the extraneous variables and is simpler to comprehend.

    Normally the special characters &, |, <, > etc. don’t work after a REM statement in batch. But the special characters do work after REM.. I found this nugget of information at http://www.dostips.com/forum/viewtopic.php?p=3500#p3500. A test shows that REM. is still a valid VBS comment. EDIT – based on jeb’s comment, it is safer to use REM^ (there is a space after the caret).

    So here is a trivial VBS/batch hybrid using REM^ &. The only drawback is it prints REM & at the beginning, whereas jeb’s solution prints ECHO OFF.

    rem^ &@cscript //nologo //e:vbscript "%~f0" & exit /b
    WScript.Echo "Example of a hybrid VBS / batch file"
    

    Here is another trivial example that demonstrates multiple batch commands, including a CALL to a labeled sub-routine.

    ::' VBS/Batch Hybrid
    
    ::' --- Batch portion ---------
    rem^ &@echo off
    rem^ &call :'sub
    rem^ &exit /b
    
    :'sub
    rem^ &echo begin batch
    rem^ &cscript //nologo //e:vbscript "%~f0"
    rem^ &echo end batch
    rem^ &exit /b
    
    '----- VBS portion ------------
    wscript.echo "begin VBS"
    wscript.echo "end VBS"
    'wscript.quit(0)
    

    I still like the CTRL-Z solution because it eliminates all extraneous output.

    UPDATE 2012-12-17

    Tom Lavedas posted a method to conveniently run dynamic VBS from a batch script over at Google Groups: No file VBS hybrid scripting. The method uses mshta.exe (Microsoft HTML Application Host).

    His original batch solution relied on an external small VBS.BAT script to execute the VBS within a FOR /F. I modified the syntax slightly to make it convenient to embed directly within any given batch script.

    It is quite slow, but very convenient. It is restricted to executing a single line of VBS.

    The VBS is written normally, except all quotes must be doubled: A quote enclosing a string must be written as "", and quotes internal to a string must be written as """". Normally the mini script is executed within the IN() clause of a FOR /F. It can be executed directly, but only if stdout has been redirected or piped.

    It should work on any Windows OS from XP onward as long as IE is installed.

    @echo off
    setlocal
    :: Define simple batch "macros" to implement VBS within batch
    set "vbsBegin=mshta vbscript:Execute("createobject(""scripting.filesystemobject"")"
    set "vbsBegin=%vbsBegin%.GetStandardStream(1).write("
    set ^"vbsEnd=):close"^)"
    
    :: Get yesterday's date
    for /f %%Y in ('%vbsBegin% date-1 %vbsEnd%') do set Yesterday=%%Y
    set Yesterday
    pause
    echo(
    
    :: Get pi
    for /f %%P in ('%vbsBegin% 4*atn(1) %vbsEnd%') do set PI=%%P
    set PI
    pause
    echo(
    
    set "var=name=value"
    echo Before - %var%
    :: Replace =
    for /f "delims=" %%S in (
      '%vbsBegin% replace(""%var%"",""="","": "") %vbsEnd%'
    ) do set "var=%%S"
    echo After  - %var%
    pause
    echo(
    
    echo Extended ASCII:
    for /l %%N in (0,1,255) do (
    
      %=  Get extended ASCII char, except can't work for 0x00, 0x0A.  =%
      %=  Quotes are only needed for 0x0D                             =%
      %=    Enclosing string quote must be coded as ""                =%
      %=    Internal string quote must be coded as """"               =%
      for /f delims^=^ eol^= %%C in (
        '%vbsBegin% """"""""+chr(%%N)+"""""""" %vbsEnd%'
      ) do set "char.%%N=%%~C"
    
      %=  Display result  =%
      if defined char.%%N (
        setlocal enableDelayedExpansion
        echo(   %%N: [ !char.%%N! ]
        endlocal
      ) else echo(   %%N: Doesn't work :(
    )
    pause
    echo(
    
    :: Executing the mini VBS script directly like the commented code below 
    :: will not work because mshta fails unless stdout has been redirected
    :: or piped.
    ::
    ::    %vbsBegin% ""Hello world"" %vbsEnd%
    ::
    
    :: But this works because output has been piped
    %vbsBegin% ""Hello world"" %vbsEnd% | findstr "^"
    pause
    

    UPDATE 2014-04-27

    Over at DosTips there is a great compendium of js/vbs/html/hta hybrids and chimeras in cmd/bat. Lots of good stuff from various people.

    Within that thread, DosTips user Liviu discovered a beautiful VBS/batch hybrid solution that uses WSF.

    <!-- : Begin batch script
    @echo off
    cscript //nologo "%~f0?.wsf"
    exit /b
    
    ----- Begin wsf script --->
    <job><script language="VBScript">
      WScript.Echo "VBScript output called by batch"
    </script></job>
    

    I think this solution is fantastic. The batch and WSF sections are clearly separated by nice headers. The batch code is absolutely normal, without any odd syntax. The only restriction is the batch code cannot contain -->.

    Similarly, the VBS code within WSF is absolutely normal. The only restriction is the VBS code cannot contain </script>.

    The only risk is the undocumented use of "%~f0?.wsf" as the script to load. Somehow the parser properly finds and loads the running .BAT script "%~f0", and the ?.wsf suffix mysteriously instructs CSCRIPT to interpret the script as WSF. Hopefully MicroSoft will never disable that “feature”.

    Since the solution uses WSF, the batch script can contain any number of independent VBS, JScript, or other jobs that can be selectively called. Each job can even utilize multiple languages.

    <!-- : Begin batch script
    @echo off
    echo batch output
    cscript //nologo "%~f0?.wsf" //job:JS
    cscript //nologo "%~f0?.wsf" //job:VBS
    exit /b
    
    ----- Begin wsf script --->
    <package>
      <job id="JS">
        <script language="VBScript">
          sub vbsEcho()
            WScript.Echo "VBScript output called by JScript called by batch"
          end sub
        </script>
        <script language="JScript">
          WScript.Echo("JScript output called by batch");
          vbsEcho();
        </script>
      </job>
      <job id="VBS">
        <script language="JScript">
          function jsEcho() {
            WScript.Echo("JScript output called by VBScript called by batch");
          }
        </script>
        <script language="VBScript">
          WScript.Echo "VBScript output called by batch"
          call jsEcho
        </script>
      </job>
    </package>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

People have been developing own solutions to the following problems: Consistent messaging frameworks for
I got some huge files I need to parse, and people have been recommending
I've been arguing for some time against embedding server-side tags in JavaScript code, but
People have been telling me that GPU renders triangles only. But how do you
I started working on a timer to show how long people have been on
It seems obvious that some people have been able to figure out how to
I've got a table that people have been inserting into getting the primary key
Ever since the publication of Enterprise Integration Patterns people have been using the notation
There are several people about (myself being one of them) who have been developing
Content people have been using Word and pasting things into the old unicode system.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.