Skip to main content

All Questions

Tagged with
0 votes
1 answer
307 views

VBA Wscript.Shell Run — how to run a script with high priority?

I'm want to run my python script from Excel VBA and this code works: Dim newShell As Object Dim PythonExePath As String, PythonScriptPath As String Set newShell = VBA.CreateObject("Wscript.Shell&...
Zhimolost's user avatar
1 vote
1 answer
1k views

Classic asp VB Wscript output

Thanks for reading / helping. On an old win2003 server, in this scenario: Const WshRunning = 0 Const WshFinished = 1 Const WshFailed = 2 Dim shell, exec, strOutput Set shell = CreateObject("WScript....
AlexPM's user avatar
  • 43
0 votes
1 answer
640 views

How to pass two arguments to cmd via wscript.shell

We use an aspx webpage that has two variables in the link. Example: aspxpage.aspx?argument1=arg1&argument2=arg2 the aspx calls a .cmd and needs to pass the two arguments to it divided by a space....
Sunfile's user avatar
  • 121