Edit it in Notebook and replace:
tesclean clean %1 > %1-cleaned.log
with
tesclean clean --replace %1 > %1-cleaned.log
I think you meant...
tes3cmd clean --replace %1 > %1-cleaned.logAt least, that's what I had to type to get it to work. So ultimately, I installed tes3cmd.exe to my Morrowind directory, and created my TES3CMD_Clean.bat file on the desktop with the following code...
@echo offrem drag-and-drop-able bat filerem put shortcut on desktop and drag esp onto itrem "clean" file and log will be added to same folder the esp came fromrem The following is my install directory; yours may be different...cd C:\Games\Bethesda Softworks\Morrowindtes3cmd clean --replace %1 > %1-cleaned.logtype %1-cleaned.logpause
Now the only thing I may do is to add some code to move the old plugin~1.esp to a different backup ESP/M folder.
The output of cleaning "Immersive Chargen v1.25" is...
CLEANING: "C:\Games\Bethesda Softworks\MW Installers\(QSTS) Immersive Chargen v1.25\00 No Character Maker\Immersive Chargen.esp" ...Loaded cached Master: /morrowind.esm Cleaned duplicate record (BOOK): chargen statssheet Cleaned duplicate record (DOOR): chargen exit door Cleaned duplicate object instance (CharGen_cabindoor FRMR: 6034) from CELL: bitter coast region (-1, -9) Cleaned duplicate object instance (Imperial Guard FRMR: 63431) from CELL: seyda neen (-2, -9) Cleaned duplicate object instance (flora_bc_tree_02 FRMR: 24458) from CELL: seyda neen (-2, -9) Cleaned redundant WHGT from CELL: imperial prison ship Cleaned redundant AMBI,WHGT from CELL: seyda neen, census and excise officeOutput saved in: "C:\Games\Bethesda Softworks\MW Installers\(QSTS) Immersive Chargen v1.25\00 No Character Maker\Immersive Chargen.esp"Original backed up to: "C:\Games\Bethesda Softworks\MW Installers\(QSTS) Immersive Chargen v1.25\00 No Character Maker\Immersive Chargen~1.esp"Cleaning Stats for "C:\Games\Bethesda Softworks\MW Installers\(QSTS) Immersive Chargen v1.25\00 No Character Maker\Immersive Chargen.esp": duplicate object instance: 3 duplicate record: 2 redundant CELL.AMBI: 1 redundant CELL.WHGT: 2
Whereas TESPCD cleans the following records...
(ID), (WARNING), (NAME), (ESP), (ORIGINAL) BOOK, Book Entry Identical to Default Entry. (Unclean Entry), chargen statssheet, Immersive Chargen.esp, Morrowind.esmDOOR, Door Entry Identical to Default Entry. (Unclean Entry), CharGen Exit Door, Immersive Chargen.esp, Morrowind.esm
So TES3CMD does seem to catch more than TESPCD does.
Thanks all,
-RMWChaos