About 8,780,000 results
Open links in new tab
  1. How to run a file using VisualBasicScript (.vbs) - Stack Overflow

    Jun 5, 2009 · How can I run a file with VisualBasicScript (.vbs)? The file is 'file.bat' and it's located in the same dir as the .vbs.

  2. windows - vbscript output to console - Stack Overflow

    Dec 7, 2010 · What is the command or the quickest way to output results to console using vbscript?

  3. Run a vbscript from another vbscript - Stack Overflow

    Nov 6, 2009 · How do I get a vbscript to run another vbscript? Id imagine its only a few lines of code but not tried doing this before, nothing is passed between the 2, one just needs to …

  4. How to run vbs as administrator from vbs? - Stack Overflow

    Can anyone help me with running vbs from itself but with administrator rights? I need rename computer with Windows 8 via VBScript, but it's possible only if I run my script through …

  5. In vbscript can you use two possible conditions in an if statement?

    Jun 14, 2014 · Dim v v = "" If v = "" Then MsgBox "Empty String" ' Pass. "" = "". If v = 0 Then MsgBox "Zero" ' Fail! Illegal comparison. If v = False Then MsgBox "False" ' Fail! "" <> False. …

  6. vbscript - To keep screen active (without locking) in Windows …

    Sep 10, 2018 · A simple vb script will help you resolve this. Create a .vbs file and paste the below code

  7. Getting current directory in VBScript - Stack Overflow

    Apr 22, 2013 · If you drop a file onto your vbs file (launcing the script in WScript with arguments), then the working dir will be C:\Windows\System32 (!) (even if the dropped file is in the same …

  8. Calling a .vbs script from Excel VBA - Stack Overflow

    Oct 30, 2012 · Is it possible to call a .vbs script from a VBA code whenever needed? If possible then can you give me a sample code of how to do so?

  9. Running Powershell from vbs with command as parameter

    Hey i want to run from an vbs script a powershell commando. Something like start powershell.exe and enter a specific command like Restart-Service. I thought something similar to this could work:

  10. How to run VBScript from command line without Cscript/Wscript

    Apr 15, 2014 · WScript "D:\VBS\Converter.vbs" Now I would like to execute above VBScript without Cscript or Wscript command by simply typing the name of VBscript name i.e. …