Recent content by yamiseto

  1. Y

    Solved: Pass a variable from VBS to batch

    Best answer selected by yamiseto.
  2. Y

    Solved: Pass a variable from VBS to batch

    My question was answered on Computing.net by Razor2.3. Thank you for all your support!
  3. Y

    Solved: Pass a variable from VBS to batch

    Thanks for the reply. I was pretty sure I tried that, but I went to check anyway. I'll try to provide as much info as possible. In the root of C:\ I have a folder called "test". In that folder are 3 files; test.bat, start.vbs, shortcut.lnk. Here are the contents of each. test.bat echo...
  4. Y

    Solved: Pass a variable from VBS to batch

    I want to add some details about problems that I've run into. For the past four hours or so, since I posted this question, I have been searching for a way to accomplish my task. I've tried all kinds of different ways of passing and setting a variable into the VBS. My problem, I think, comes...
  5. Y

    Solved: Pass a variable from VBS to batch

    I am working on a batch script for my specific purpose. The batch has launches a program like so: start /w program.exe %1 This way I can easily pass variable to my batch using a shortcut. Like: C:\mybatch.bat "My variable" Because I the batch waits for the program to do its job, it could be open...