2020-05-07 01:42:52 +02:00
|
|
|
'
|
|
|
|
' This script uses classic WScript.Shell Run method to
|
|
|
|
' execute given command in a hidden window (second param = 0)
|
|
|
|
'
|
2021-10-24 23:11:42 +02:00
|
|
|
' Mariusz Banach / mgeeky, <mb@binary-offensive.com>
|
2020-05-07 01:42:52 +02:00
|
|
|
' (https://github.com/mgeeky)
|
|
|
|
'
|
|
|
|
|
|
|
|
command = "notepad.exe"
|
|
|
|
|
|
|
|
With CreateObject("WScript.Shell")
|
|
|
|
.Run command, 0, False
|
|
|
|
End With
|