Lungri,
Here is a script that I came up with for the same purpose. You can save this as a .vbs file and run. You will need to edit the script and input your server information at the top.
On Error Resume Next
Dim qcServer, qcDomain, qcProject, qcUser, qcPassword, qc, RunID, RunFact, Runobj, AttachFact, AttachCol, mycount, Attachobj, AttachedName
'Set variables for QC connection
qcServer =
qcDomain =
qcProject =
qcUser =
qcPassword =
Set qc = CreateObject(''tdapiole80.tdconnection'')
'Check to see that the tdc object exists
If qc Is Nothing Then
MsgBox ''The qc object is empty''
End If
'Establish the connection and log in
qc.InitConnectionEx qcServer
qc.Login qcUser, qcPassword
qc.Connect qcDomain, qcProject
'Get the RunID from user input.
RunID = InputBox(''Delete Attachments from which Run ID?'', ''Delete Run Attachments'')
'Set the objects needed to get to the Attachment object.
Set RunFact = qc.RunFactory
Set Runobj = RunFact.Item(RunID)
Set AttachFact = Runobj.Attachments
Set AttachCol = AttachFact.NewList('''')
'Get a count of attachments for the RunID
mycount = AttachCol.Count
'Iterate through the attachments
For i = 1 to mycount
'Set the attachment item into an object
Set Attachobj = AttachCol.Item(i)
'Get the name property of the attachment
AttachedName = Attachobj.Name(1)
'strip the name to just the first 18 characters
AttachedName = left(AttachedName, 18)
'check to see if the stripped string is ''ReporterScreenShot''
If AttachedName = ''ReporterScreenShot'' Then
'If true, then delete the attachment.
AttachFact.RemoveItem(Attachobj.ID)
End If
'Kill the object to free up for next iteration
Set Attachobj = Nothing
'Iterate
Next
'Disconnect from Quality Center
If qc.Connected = True Then
qc.Disconnect
End If
'Log off the server and release the Connection.
If qc.LoggedIn Then
qc.Logout
qc.ReleaseConnection
End If
'Kill The objects.
Set AttachCol = Nothing
Set AttachFact = Nothing
Set Runobj = Nothing
Set RunFact = Nothing
Set qc = Nothing
'Inform the user that the script completed.
MsgBox ''Script Complete.''
On Error GoTo 0