6
0
mirror of https://github.com/avast/ioc synced 2024-06-29 18:21:19 +00:00
ioc-collection/VB-Research/vbOpenScript/test.vbs
2023-01-04 16:31:51 +01:00

28 lines
816 B
Plaintext

'usage: cscript test.vbs
' make sure you are running exe and script at same permission level
'32/64 bit cmd prompt doesnt matter.
'If you just double click on the file it will run in wscript and
'the echo will be a msgbox vrs console print (still works but)
Set o = GetObject("remote.forms")
Set f = o.Item(0)
f.List1.Clear()
For Each form In o
f.List1.AddItem "Form: " & form.Name
For Each c In form.Controls
f.List1.AddItem vbTab & "Control: " & c.Name & " - " & TypeName(c)
Next
Next
WScript.echo Hex(f.formMeth("remote hi"))
WScript.echo Hex(f.pubClass.classMeth("remote class hi"))
WScript.echo f.pubClass.pubString
f.text1.Text = "I see you"
f.text1.Font.Name = "System"
if f.width < 8000 then f.width = 8000 else f.width = 4000
f.List1.AddItem "hi from script"