When I booted up my computer (Windows 7 64 bit) today, a Notepad window, containing what I take to be a brief Visual Basic script, was open on my desktop. I have never seen this before, and I am pretty sure I closed all the open windows (not that this would have been one of them) before I shut it down the previous day. The file name is del.vbs, and there appear to be two copies of it in C:\Users
jtt\AppData\Local\Temp. The contents are as follows.
Sub Main()
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objShell = CreateObject("Wscript.Shell")
objFile = Wscript.ScriptFullName
objFolder = objFSO.GetParentFolderName(objFile)
objParentFolder = objFSO.GetParentFolderName(objFolder)
objShell.CurrentDirectory = objParentFolder
objFSO.DeleteFolder(objFolder)
End Sub
On Error Resume Next
Main
Should I be worried?
I rather think that my system as currently set up does not know how to run .vbs files of this sort, which may be a good thing in this instance, and may explain why it turned up in a Notepad window instead (presumably) of executing.
A scan with Malwarebytes did not turn up anything of any likely relevance.