Hello all thanks for the replies,

Here is something I got from another admin off the military forum.
This seem to work locally haven't pushed it via SMS yet but will soon.
I know, I know, it's not a kix script. VBS is below:

DIM WSHShell: Set WSHShell = CreateObject("WScript.Shell")
DIM Computer: Computer = WSHShell.ExpandEnvironmentStrings("%COMPUTERNAME%")
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

Set colFiles = objWMIService.ExecQuery _
("Select * from CIM_DataFile Where Extension = 'exe' AND (FileName = 'sol' OR FileName = 'blah' OR FileName = 'stuff')")

For Each objFile in colFiles
objFile.Delete
Next