Tag: vbscript
In the Windows environment, all three types of scripts (PowerShell, VBScript, and JScript) use CreateObject to invoke the COM object WScript.Shell in order to simulate keystrokes. For example, you …
On Windows, we can use VBScript to many administrative tasks. We can list the boot configuration properties of your PC using the following VBScript – which executes a SQL …
Querying SQLite Database via VBScript can be done via the ADODB.Connection Object. We use the Open to specify the connection String, and the Execute method to run a SQL …
December 9, 2020
algorithms, BASH, bash script, c / c++, c #, C/C++, C# (CSharp), Java, java, javascript, Node.Js, php, PHP, programming languages, python, Python, Rust, string, VBScript, vbscript
You are given a lowercase alphabet string text. Return a new string where every character in text is mapped to its reverse in the alphabet, so that a becomes …
I was given a few Excel CSV files that contain quite a lot of values, like this: The task is to copy all the valid numbers and store them …