Tagged Questions
0
votes
1answer
35 views
Rename a vbscript process
When we run a *.vbs file, in processes, we used to get "wscript.exe". We can change this "wscript.exe" to our custom name by creating a shortcut and executing the shortcut.
Is it possible to display ...
11
votes
1answer
175 views
Display a drop-down/combo box in VB Script
I'm trying to create a drop-down/combo box in VB Script. As per my understanding we need to create an instance for Internet Explorer and create a drop-down/combo box, something like this:
set oIE = ...
2
votes
1answer
58 views
VB Script does not recogonize the actual parameter
I've two VB Scripts. Say First.vbs and Second.vbs.
Frist.vbs calls Second.vbs each time some action/event happens.
I am trying to send two parameters from Frist.vbs to Second.vbs using the following ...
2
votes
2answers
46 views
How to exit all the VB Scripts which was started by me
I have two VB Scripts, say First.vbs and Second.vbs.
First.vbs calls Second.vbs each time some action/event happens.
I want to write a new VB Script, say Third.vbs, which terminates all the ...
0
votes
0answers
43 views
How to get the time at which the file is modified?
I've following script:
intInterval = "2"
strDrive = "c:"
strFolder = "\\Test\\"
strComputer = "."
Set objWMIService = GetObject( "winmgmts:" & "{impersonationLevel=impersonate}!\\" & ...