WillumMaguire
WillumMaguire

Reputation: 547

What language is this script written in?

CreateObject("Wscript.Shell").Run "taskkill /f /t /im oovoo.exe", 0, False

I know it is some variation of Visual Basic, and I know it's not .NET. Is it VB6, or some sort of other VB scripting language I'm not aware of?

Upvotes: 0

Views: 131

Answers (2)

MarkL
MarkL

Reputation: 1771

While this could be VBScript, it is also an acceptable and legitimate VB6 code snippet.

Upvotes: 3

ChristopheD
ChristopheD

Reputation: 116267

This is VBScript (typically with a .vbs extension).

Upvotes: 7

Related Questions