VBScript | Introduction Last Updated : 28 Apr, 2025 Comments Improve Suggest changes Like Article Like Report The VBScript stands for Visual Basics Script language. Basically it is the combination of Visual Basic programming language and JavaScript language. VBScript was invented and maintained by Microsoft. It is used to develop dynamic web pages. It is much lighter compared to Visual Basic programming language but works as a scripting language like JavaScript. To run VBScript on the client-side, the client must have to use Internet Explorer because other browsers are still not supported by the VBScript. VBScript currently runs on below mentioned environments: Internet Information Server (IIS) - It is a Microsoft web server.Windows Script Host(WSH) - It is a native hosting environment of Windows operating system.Internet Explorer (IE) - It is the simplest hosting environment where we can run VBScript code. Prerequisite: To run VBScript script locally we need only two things: Text Editor (Any VBScript editors like Notepad++, Text Hawk, EditPlus, etc.)Microsoft Edge Note: All the VBScript editors are actually HTML editors that supports VBScript. Setup for VBScript: Step 1: Open your text editor and create a basic HTML file (for example: index.html) and paste the below code inside that file. html <!DOCTYPE html> <html> <head> <title>VBScript Introduction</title> </head> <body> <!-- Paste VBScript Here --> </body> </html> Step 2: Paste the below code inside the body tag of your HTML code, or you can paste it inside the head tag. Exactly the same as you have done with JavaScript. javascript <script type="text/vbscript"> document.write("Hello geeks, greeting from GeeksforGeeks") </script> Step 3: Combine both the code and run it on Microsoft Edge and you will get the below output in the console. html <!DOCTYPE html> <html> <head> <title>VBScript Introduction</title> </head> <body> <script type="text/vbscript"> document.write("Welcome to GeeksforGeeks") </script> </body> </html> Output:Welcome to GeeksforGeeks Note: To use in client-side, client have to use Microsoft Edge. Troubleshoot: If your VBScript code is not working then use the following steps: Press F12 key or use Right click to open Inspect Element.Click on "Emulation" to open Emulation setting.Change the Document mode from Default to 10. Disadvantages: The VBScript code will be processed by Microsoft Edge only. Other browsers except Microsoft Edge (like Chrome, Firefox, Safari, Opera etc) will not process the VBScript code.The VBScript code will run only Windows Operating System platform. Other operating systems (like Linux, Mac, etc) will not run.The VBScript code is used as a default scripting language of ASP. Comment More infoAdvertise with us Next Article VBScript | Introduction S skyridetim Follow Improve Article Tags : JavaScript VBScript Similar Reads Introduction to JavaScript JavaScript is a versatile, dynamically typed programming language used for interactive web applications, supporting both client-side and server-side development, and integrating seamlessly with HTML, CSS, and a rich standard library.JavaScript is a single-threaded language that executes one task at 7 min read Introduction to TypeScript TypeScript is a syntactic superset of JavaScript that adds optional static typing, making it easier to write and maintain large-scale applications.Allows developers to catch errors during development rather than at runtime, improving code reliability.Enhances code readability and maintainability wit 5 min read p5.js Introduction p5.js is a JavaScript library used for creative coding. It is based on Processing which is a creative coding environment. The main focus of processing is to make it easy as possible for beginners to learn how to program interactive, graphical applications, to make a programming language more user-fr 2 min read Introduction to Javascript Engines JavaScript is a scripting language and is not directly understood by computer but the browsers have inbuilt JavaScript engine which help them to understand and interpret JavaScript codes. These engines help to convert our JavaScript program into computer-understandable language. A JavaScript engine 4 min read JavaScript Function Examples A function in JavaScript is a set of statements that perform a specific task. It takes inputs, and performs computation, and produces output. The idea is to put some commonly or repeatedly done tasks together and make a function so that instead of writing the same code again and again for different 3 min read Like