PDA

View Full Version : Scanreg /fix /opt



brvb
01-12-2000, 05:30 AM
Any comments on the above registry optimizing commands? Is the 'fix' command good to use for routine 'maintenance'? For reorganizing the registry, as I've been told? Or is this recommended for registry 'repair' only? The 'opt' I think speaks for its self, for compacting,& commpressing the registry. Comments on 'fix' would be apprecieated.!

"..theres a story in my eyes..."turn the pages of desire.."...now its time to trade those dreams.."...for the rush of passion's fire.."...

hpguru
01-12-2000, 11:24 PM
I use this sometimes in a batch file of the form

scanreg /fix
scanreg /opt

without any problems but I don't have any detailed info about it. You may find what you are looking for here...

http://search.support.microsoft.com/kb/psssearch.asp?SPR=w98&T=B&KT=ALL&T1=7d&LQ=scanreg&S=F&A=T&DU=C&FR=1&D=win98x%2Bor%2Bierelease%2Bor%2Bcustserv%2Bor%2Bc rossnet&LPR=%22windows+98%22&LNG=ENG&VR=http%3A%2F%2Fsupport.microsoft.com%2Fsupport&CAT=Support&VRL=ENG&SA=ALLKB&Go.x=28&Go.y=21

brvb
01-14-2000, 04:14 AM
>I use this sometimes in a batch file of the form

scanreg /fix
scanreg /opt<

How do you mean in a batch file..?....I just run them separately....is there
a easier, or other way..?

Thanks for the reply!

BVB


"..theres a story in my eyes..."turn the pages of desire.."...now its time to trade those dreams.."...for the rush of passion's fire.."...

jeffmill
01-14-2000, 05:18 PM
Create a text file with a .bat extension. You could call it "MYSCAN.BAT" When you are finished you will be able to type "myscan" at the MSDos prompt to run the batch file. You could also make a shortcut to it if you want.
Making sure you hit the enter key at the end of the last line, place the following text in the file;

@echo off
scanreg /fix
scanreg /opt

hpguru
01-19-2000, 04:02 AM
Don't run that batch file within Windows. It should only be run from a DOS prompt outside of windows. The "@echo off" line isn't required.