About 50 results
Open links in new tab
  1. Which to choose on Windows: VBScript, JScript, Wscript

    You can write WSH (Windows Scripting Host) and WSC (Windows Scripting Component) scripts that use both VBScript and JScript by combining them in an XML-based wrapper, if you need to merge …

  2. How to enable your Windows Script Host through Registry Editor?

    Jun 15, 2023 · With the Windows Script Host restrictions lifted, you should only run scripts from trusted sources and if you’re sure they are safe to run. That’s it! This enables Windows Scripting host on …

  3. A scripting language for Windows? - Stack Overflow

    Mar 19, 2017 · Windows Scripting Host The Microsoft Windows Script Host (originally called Windows Scripting Host, but renamed for the second release) is an automation technology for Microsoft …

  4. windows - Batch script loop - Stack Overflow

    for /l is your friend: for /l %x in (1, 1, 100) do echo %x Starts at 1, increments by one, and finishes at 100. WARNING: Use %% instead of %, if it's in a batch file, like: for /l %%x in (1, 1, 100) do echo …

  5. JavaScript version used by the Windows Scripting Host

    Oct 13, 2017 · Does the version of JavaScript supported in Windows Scripting depend on the version of Windows, the version of Internet Explorer installed on the computer, or some other factor or …

  6. scripting - How can I get user input (via a dialog window) in a Windows ...

    Oct 12, 2010 · I'd like to create a simple search script that runs from the CMD prompt. It needs to asks for user input first e.g. "what to search". How can I prompt the user for input (in cmd), or open a input ...

  7. Windows batch files: .bat vs .cmd? - Stack Overflow

    Sep 29, 2008 · Windows NT inherited cmd from OS/2, but Windows NT's Win32 version started off 32-bit. Although OS/2 went 32-bit in 1992, its cmd remained a 16-bit OS/2 1.x program. The ComSpec …

  8. scripting - Best way to automate tasks in windows - Stack Overflow

    Mar 16, 2010 · Mac has applescript 'built in' and I've found its pretty nice to work with for automating stuff. What's the best windows equivalent?

  9. Single script to run in both Windows batch and Linux Bash?

    Jul 7, 2013 · Here's a full, dual-compatible program that runs in Windows cmd.exe and in Bash, either in Git Bash in Windows, or in Bash in Linux. In Windows, this program updates the PATH for the …

  10. How do you loop in a Windows batch file? - Stack Overflow

    Aug 31, 2009 · FOR %%A IN (list) DO command parameters list is a list of any elements, separated by either spaces, commas or semicolons. command can be any internal or external command, batch file …