No,

you just have to select 'hidden' in the dropdown (ComboBox) below the huge black TextBox and the WindowStyle value of the Shell function will get set to 0.

Instead of displaying the result to a textbox like in the demo :

 Quote:

$ListingTextBox.Text = $System.Shell($CommandTextBox.Text,$WindowStyle,3)


you can as well do this :

 Code:

$result = $System.Shell($CommandTextBox.Text,$WindowStyle,3)
if instr($result,"whatever")
    "it's a whatever !!!"
endif



See?
_________________________