vbscript explination
Hi
Can anyone explain me the difference between below and where and how to use it.
Some examples will be nice for each [:)]
1) 0, True
2) 1, True
3) 0, False
4) 1, False
I have an exampel but i dont understand the difference when i try to run it.
MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 0, TRUE)
MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 1, TRUE)
Can anyone explain me the difference between below and where and how to use it.
Some examples will be nice for each [:)]
1) 0, True
2) 1, True
3) 0, False
4) 1, False
I have an exampel but i dont understand the difference when i try to run it.
MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 0, TRUE)
MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 1, TRUE)
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
anonymous_9363
16 years ago
I'm guessing but I think you missed off the important part of your command line, i.e. the call to the Shell object's Run method:
[name_you_used_for_shell_object].Run("MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 0, TRUE)
In that case, this reference http://www.devguru.com/technologies/wsh/17419.asp at DevGuru will explain it for better than I could.
[name_you_used_for_shell_object].Run("MsiExec.exe /X{5783F2D7-vvv-xxxx-0002-0060B0CE6BBA} /QB!", 0, TRUE)
In that case, this reference http://www.devguru.com/technologies/wsh/17419.asp at DevGuru will explain it for better than I could.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.