Hey you may have already seen this tool in KWWHServer, but here it is again. Free for KWWHunction webmasters/coders!

Open notepad and copy/paste this. Save it as: replace.vbs
Code: 
Const ForReading = 1
Const ForWriting = 2

strFileName = Wscript.Arguments(0)
strOldText = Wscript.Arguments(1)
strNewText = Wscript.Arguments(2)

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(strFileName, ForReading)

strText = objFile.ReadAll
objFile.Close
strNewText = Replace(strText, strOldText, strNewText)

Set objFile = objFSO.OpenTextFile(strFileName, ForWriting)
objFile.WriteLine strNewText
objFile.Close
Finally open notepad again and copy/paste this. Save it as: replace.bat
Code: 
@echo off
color 0c
title I love KWWHunction!
echo.
echo I love KWWHunction again!
cscript replace.vbs "C:\Path\To\Target.txt" "ReplaceThisWith" "This"
pause
This script will find & replace ALL "ReplaceThisWith" with "This" from the file: C:\Path\To\Target.txt

Btw: you can also use Dreamweaver to find&replace
But this is just oldskool that i love.

CheeerZ
l0calh0st Reviewed by l0calh0st on . Find & Replace Script from KWWHServer Hey you may have already seen this tool in KWWHServer, but here it is again. Free for KWWHunction webmasters/coders! :D Open notepad and copy/paste this. Save it as: replace.vbs Const ForReading = 1 Const ForWriting = 2 strFileName = Wscript.Arguments(0) strOldText = Wscript.Arguments(1) strNewText = Wscript.Arguments(2) Rating: 5