About 50 results
Open links in new tab
  1. 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 …

  2. Choices for native windows scripting - Stack Overflow

    Mar 9, 2009 · What is a good windows/xp or Vista scripting language that would provide basic functionality similar to what ksh or bsh does for unix? looking to do simple/quick tasks, build …

  3. 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 …

  4. 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 …

  5. 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 …

  6. What tools and languages are available for windows shell scripting ...

    4 I want to know what are the options to do some scripting jobs in windows platform. I need functionality like file manipulations, registry editing etc. Can files be edited using scripting …

  7. 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 …

  8. Choosing a Windows automation scripting language: AutoIt vs …

    Nov 6, 2009 · Closed 13 years ago. I need to choose a Windows automation scripting language. Which one do you recommend; AutoIt, AutoHotkey or some other? I have read "An AutoIt / …

  9. 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?

  10. 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 …