Hi,
I am getting crazy about the following.
I can run any programs on my PC from a vbscript except one.
"Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "C:\temp\x.exe", 1, true"
This does not work for my "x.exe" program and only for it.
It must be known that I can run this program just clicking on it from the explorer, or using start, run, or putting it in a .bat file.
For Instance this works:
"WshShell.Run "C:\temp\x.bat", 1, true"
x.bat =
"c:
cd temp
x.exe"
But this is not what i need.
Does anyone have ideas about it, it will be very welcome, because on my side I am totally puzzled.
KidCode