WMI stands for Windows Management Instrumentation. This is used to access system hardware and software features. It provides very powerful API to perform tasks like starting process, terminating processes etc.
How to Restart a machine in vbscript?
How to Restart a machine in vbscript?
'Warning - if you run this script, your computer will reboot/restart'Here you can specify name of computer you want to restart.....'. means local computerstrComputer = "."'create W…Read More
How to shutdown a computer in VBScript?
How to shutdown a computer in VBScript?
'Warning - if you run this script, your computer will shut down'Here you can specify name of the computer you want to shut-down.....'. means local computerstrComputer = ".…Read More
How to read webpage in vbscript
How to read webpage in vbscript
Here is an example in which I am using xmlhttp object to get the url source code.
We can get data from any website using below code.
url="http://www.ebay.com"
Set objHTTP = Crea…Read More
Dynamic Arrays in VBScript example
Dynamic Arrays in VBScript example
In Vb script we can define the dynamic array in vb script as mentioned below.Size of dynamic array changes at run time. Example -Dim a () - declared dynamic array aTo use dynami…Read More
0 comments:
Post a Comment