Ok Sunaj,
The meaning with it is that if keyword is found that line should be removed from the file.
Here goes:
Dim objFileSystem, objInputFile
Dim strInputFile, inputData, strData
Dim args
strOutputFile = "infile.txt"
Set objFileSystem = CreateObject("Scripting.fileSystemObject"

Set objInputFile = objFileSystem.OpenTextFile(strOutputFile, 1)
inputData = Split(objInputFile.ReadAll, vbNewline)
Set fs = CreateObject("Scripting.FileSystemObject"

Set ts = fs.OpenTextFile(strOutputFile, 2, True)
Set args = WScript.Arguments
For each strData In inputData
If Len(strData) = 0 Then WScript.Quit(0)
If InStr(strData, args) = 0 Then ts.Writeline strData Else
Next
ts.Close
objInputFile.Close
Set objFileSystem = Nothing
WScript.Quit(0)
Thanks
/JJ