[winxp] GUIDE: Making your windows folder smaller!


Recommended Posts

nuhi, I wonder if you could do me a favor. Below is a list of Fonts I remove from a fresh install of XP. I've tried unsuccessfully making a bat file which will move these Fonts to a backup folder on C:\ For some reason I cannot get the bat file to move them all, only some.

Could you make a pattern for me to go by like with a cmd file? Maybe a command file would move them better. If you get me started I can take it from there. Maybe if you laid it out for me using the first two or three Fonts listed.

What I would like is it to "move" the Fonts from C:\WINDOWS\Fonts to a backup folder on C:\ named backup. Within the backup folder I would like a subfolder named WINDOWS. In the WINDOWS subfolder I would like another subfolder named Fonts...where the Fonts will be placed for safe keeping.

Hope it's not too much to ask. Thanks.

Fonts I Remove From A Fresh Install:

8514fix.fon

8514fixe.fon

8514fixg.fon

8514fixr.fon

8514fixt.fon

8514oem.fon

8514oeme.fon

8514oemg.fon

8514oemr.fon

8514oemt.fon

8514sys.fon

8514syse.fon

8514sysg.fon

8514sysr.fon

8514syst.fon

85775.fon

85855.fon

85f1257.fon

85s1257.fon

app775.fon

app850.fon

app852.fon

app855.fon

app857.fon

app866.fon

ariblk.ttf

cga40737.fon

cga40850.fon

cga40852.fon

cga40857.fon

cga40866.fon

cga40869.fon

cga80737.fon

cga80850.fon

cga80852.fon

cga80857.fon

cga80866.fon

cga80869.fon

comic.ttf

comicbd.ttf

coue1257.fon

couf1257.fon

couree.fon

coureg.fon

courer.fon

couret.fon

courf.fon

courfe.fon

courfg.fon

courfr.fon

courft.fon

dos737.fon

ega40737.fon

ega40850.fon

ega40852.fon

ega40857.fon

ega40866.fon

ega40869.fon

ega80737.fon

ega80850.fon

ega80852.fon

ega80857.fon

ega80866.fon

ega80869.fon

estre.ttf

framd.ttf

framdit.ttf

gautami.ttf

georgia.ttf

georgiab.ttf

georgiai.ttf

georgiaz.ttf

impact.ttf

latha.ttf

mangal.ttf

mvboli.ttf

pala.ttf

palab.ttf

palabi.ttf

palai.ttf

raavi.ttf

script.fon

sere1257.fon

serf1257.fon

serifee.fon

serifeg.fon

serifer.fon

serifet.fon

seriff.fon

seriffe.fon

seriffg.fon

seriffr.fon

serifft.fon

shruti.ttf

smae1257.fon

smaf1257.fon

smallee.fon

smalleg.fon

smaller.fon

smallet.fon

smallf.fon

smallfe.fon

smallfg.fon

smallfr.fon

smallft.fon

ssee1257.fon

ssef1257.fon

sserifee.fon

sserifeg.fon

sserifer.fon

sserifet.fon

sseriff.fon

sseriffe.fon

sseriffg.fon

sseriffr.fon

sserifft.fon

sylfaen.ttf

symbol.ttf

trebuc.ttf

trebucbd.ttf

trebucbi.ttf

trebucit.ttf

tunga.ttf

vga737.fon

vga775.fon

vga850.fon

vga852.fon

vga855.fon

vga857.fon

vga860.fon

vga863.fon

vga865.fon

vga866.fon

vga869.fon

vgaf1257.fon

vgafixe.fon

vgafixg.fon

vgafixr.fon

vgafixt.fon

vgas1257.fon

vgasyse.fon

vgasysg.fon

vgasysr.fon

vgasyst.fon

webdings.ttf

wingding.ttf

wst_czec.fon

wst_engl.fon

wst_fren.fon

wst_germ.fon

wst_ital.fon

wst_span.fon

wst_swed.fon

frease wow, that's something, enjoy

Bold_Fortune

C:\WINDOWS\Debug << I take it "PASSWD.LOG" replaces itself anew in here?
It doesn't even get deleted, it can't be deleted.
One suggestion. Before removing PCHealth I suggest you move "msconfig" to the system32 folder first.

It's ok, i'm using different utility, others beware.

For that moving instead of just deleting change working directory ( cd /d ) to any Backup folder and action (rd /q /s) to "move /y"

It goes like this:

md C:\BACKUP\Windows

md C:\BACKUP\Windows\System32

cd /d C:\BACKUP\Windows

rem ----< MAIN >----------------------------------------------------------------------

move /y "%SystemRoot%\Connection Wizard"

move /y "%SystemRoot%\Downloaded Installations"

move /y "%SystemRoot%\Offline Web Pages"

But then for different folders put them later in their "section"...meaning below cd /d C:\BACKUP\*WANTED*

cd /d C:\BACKUP\Windows\System32

move /y %SystemRoot%\system32\restore

move /y %SystemRoot%\system32\ShellExt

move /y %SystemRoot%\system32\spool

That's the simplest way...you could create new variable %BACKUP% but then you would need to add it after every line.

Edited by nuhi

Very cool. Thanks, nuhi. Would you mind showing me that for the Fonts above? I'm really bad at understanding instructions for these types of files. I can only go by a pattern. Maybe then I can carry that over to making files for individual files on other folders I want to remove.

Bold_Fortune, i just edited last post...damn you'r fast.

About that Fonts...if some can't be removed it's because they are running, protected, can't be moved, and shouldn't be.

But, here is the code anyway:

md C:\BACKUP\Windows\Fonts

cd /d C:\BACKUP\Windows\Fonts

move /y "%SystemRoot%\Fonts\8514fix.fon"

move /y "%SystemRoot%\Fonts\8514fixe.fon"

move /y "%SystemRoot%\Fonts\8514fixg.fon"

And so on.

Bold_Fortune, i just edited last post...damn you'r fast.

About that Fonts...if some can't be removed it's because they are running, protected, can't be moved, and shouldn't be.

But, here is the code anyway:

md C:\BACKUP\Windows\Fonts

cd /d C:\BACKUP\Windows\Fonts

move /y "%SystemRoot%\Fonts\8514fix.fon"

move /y "%SystemRoot%\Fonts\8514fixe.fon"

move /y "%SystemRoot%\Fonts\8514fixg.fon"

And so on.

Darnit, I just made the complete command file. Now I have to decipher what you edited and redo it. Bummer. Oh well. Thanks, buddy.

Okay, I'm lost. I was making the WINDOWS folder command file per your instructions before you edited them. I would like to have separate cmd files for WINDOWS and WINDOWS\system32, but you have them merged here in the new instructions, and I don't know how to edit it. (lol..it's always such a drag doing this through forum posts...I always end up looking like an idiot, and the guy(s) helping always get frustrated.)

It goes like this:

md C:\BACKUP\Windows

md C:\BACKUP\Windows\System32

cd /d C:\BACKUP\Windows

rem ----< MAIN >----------------------------------------------------------------------

move /y "%SystemRoot%\Connection Wizard"

move /y "%SystemRoot%\Downloaded Installations"

move /y "%SystemRoot%\Offline Web Pages"

But then for different folders put them later in their "section"...meaning below cd /d C:\BACKUP\*WANTED*

cd /d C:\BACKUP\Windows\System32

move /y %SystemRoot%\system32\restore

move /y %SystemRoot%\system32\ShellExt

move /y %SystemRoot%\system32\spool

That's the simplest way...you could create new variable %BACKUP% but then you would need to add it after every line.

About that Fonts...if some can't be removed it's because they are running, protected, can't be moved, and shouldn't be.

If that's the case, we may as well scratch all this.

What I would really need then is a batch file like krayzone was making on the other site, that will first backup the files and then go back and delete them. This makes sense because I can "delete" all the Fonts, but not "move" them all.

I knew this would happen once we got into this. It's not your fault; it's mine. I just don't understand enough about bat and cmd files to follow simple instructions. And getting these types of instructions through a forum is just too gut wrenching for me.

I'm very sorry for taking up your time, nuhi.

I meant that if something you can't move, you can't delete it too.

So no script will help you to delete something you are using.

You can do it in safe mode, maybe, and end up with corupted letters on next normal reboot.

There is always end, you must calm down, or maybe try win98, they can go waay smaller :)

I don't get it. I made a batch file to backup and remove the Fonts, but again, it would not remove some of the Fonts. I don't get it because if I can delete them "manually" myself. Why can't a command or batch file do it, too?

I did try it in safemode, too. No go. Although it did remove a few more fonts that way, it did not get them all.

I'm going to post the batch file I made in the hopes that someone can help figure this out.

You know the shame of it? Jan's been working on Fonts lately, and I was going to surprise her with this file tonight...when I asked her to go steady. :yes:

cd C:\

md Backup\WINDOWS\Fonts\

cd c:\windows\Fonts\

copy c:\windows\Fonts\8514fix.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514fixe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514fixg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514fixr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514fixt.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514oem.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514oeme.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514oemg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514oemr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514oemt.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514sys.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514syse.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514sysg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514sysr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\8514syst.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\85775.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\85855.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\85f1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\85s1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app775.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app855.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\app866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ariblk.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga40869.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\cga80869.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\comic.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\comicbd.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\coue1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\couf1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\couree.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\coureg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courer.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\couret.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courf.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courfe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courfg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courfr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\courft.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\dos737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega40869.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ega80869.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\estre.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\framd.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\framdit.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\gautami.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\georgia.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\georgiab.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\georgiai.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\georgiaz.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\impact.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\latha.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\mangal.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\mvboli.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\pala.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\palab.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\palabi.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\palai.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\raavi.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\script.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sere1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serf1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serifee.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serifeg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serifer.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serifet.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\seriff.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\seriffe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\seriffg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\seriffr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\serifft.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\shruti.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smae1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smaf1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallee.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smalleg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smaller.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallet.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallf.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallfe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallfg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallfr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\smallft.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ssee1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\ssef1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sserifee.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sserifeg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sserifer.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sserifet.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sseriff.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sseriffe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sseriffg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sseriffr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sserifft.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\sylfaen.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\symbol.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\trebuc.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\trebucbd.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\trebucbi.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\trebucit.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\tunga.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga737.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga775.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga850.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga852.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga855.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga857.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga860.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga863.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga865.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga866.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vga869.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgaf1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgafixe.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgafixg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgafixr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgafixt.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgas1257.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgasyse.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgasysg.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgasysr.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\vgasyst.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\webdings.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wingding.ttf c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_czec.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_engl.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_fren.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_germ.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_ital.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_span.fon c:\Backup\WINDOWS\Fonts\

copy c:\windows\Fonts\wst_swed.fon c:\Backup\WINDOWS\Fonts\

Del 8514fix.fon

Del 8514fixe.fon

Del 8514fixg.fon

Del 8514fixr.fon

Del 8514fixt.fon

Del 8514oem.fon

Del 8514oeme.fon

Del 8514oemg.fon

Del 8514oemr.fon

Del 8514oemt.fon

Del 8514sys.fon

Del 8514syse.fon

Del 8514sysg.fon

Del 8514sysr.fon

Del 8514syst.fon

Del 85775.fon

Del 85855.fon

Del 85f1257.fon

Del 85s1257.fon

Del app775.fon

Del app850.fon

Del app852.fon

Del app855.fon

Del app857.fon

Del app866.fon

Del ariblk.ttf

Del cga40737.fon

Del cga40850.fon

Del cga40852.fon

Del cga40857.fon

Del cga40866.fon

Del cga40869.fon

Del cga80737.fon

Del cga80850.fon

Del cga80852.fon

Del cga80857.fon

Del cga80866.fon

Del cga80869.fon

Del comic.ttf

Del comicbd.ttf

Del coue1257.fon

Del couf1257.fon

Del couree.fon

Del coureg.fon

Del courer.fon

Del couret.fon

Del courf.fon

Del courfe.fon

Del courfg.fon

Del courfr.fon

Del courft.fon

Del dos737.fon

Del ega40737.fon

Del ega40850.fon

Del ega40852.fon

Del ega40857.fon

Del ega40866.fon

Del ega40869.fon

Del ega80737.fon

Del ega80850.fon

Del ega80852.fon

Del ega80857.fon

Del ega80866.fon

Del ega80869.fon

Del estre.ttf

Del framd.ttf

Del framdit.ttf

Del gautami.ttf

Del georgia.ttf

Del georgiab.ttf

Del georgiai.ttf

Del georgiaz.ttf

Del impact.ttf

Del latha.ttf

Del mangal.ttf

Del mvboli.ttf

Del pala.ttf

Del palab.ttf

Del palabi.ttf

Del palai.ttf

Del raavi.ttf

Del script.fon

Del sere1257.fon

Del serf1257.fon

Del serifee.fon

Del serifeg.fon

Del serifer.fon

Del serifet.fon

Del seriff.fon

Del seriffe.fon

Del seriffg.fon

Del seriffr.fon

Del serifft.fon

Del shruti.ttf

Del smae1257.fon

Del smaf1257.fon

Del smallee.fon

Del smalleg.fon

Del smaller.fon

Del smallet.fon

Del smallf.fon

Del smallfe.fon

Del smallfg.fon

Del smallfr.fon

Del smallft.fon

Del ssee1257.fon

Del ssef1257.fon

Del sserifee.fon

Del sserifeg.fon

Del sserifer.fon

Del sserifet.fon

Del sseriff.fon

Del sseriffe.fon

Del sseriffg.fon

Del sseriffr.fon

Del sserifft.fon

Del sylfaen.ttf

Del symbol.ttf

Del trebuc.ttf

Del trebucbd.ttf

Del trebucbi.ttf

Del trebucit.ttf

Del tunga.ttf

Del vga737.fon

Del vga775.fon

Del vga850.fon

Del vga852.fon

Del vga855.fon

Del vga857.fon

Del vga860.fon

Del vga863.fon

Del vga865.fon

Del vga866.fon

Del vga869.fon

Del vgaf1257.fon

Del vgafixe.fon

Del vgafixg.fon

Del vgafixr.fon

Del vgafixt.fon

Del vgas1257.fon

Del vgasyse.fon

Del vgasysg.fon

Del vgasysr.fon

Del vgasyst.fon

Del webdings.ttf

Del wingding.ttf

Del wst_czec.fon

Del wst_engl.fon

Del wst_fren.fon

Del wst_germ.fon

Del wst_ital.fon

Del wst_span.fon

Del wst_swed.fon

WOW! That command file way of doing it beats the stink off of the batch file way of doing it for speed. It completed moving the folders before I could count to one. I like it, I do.

nuhi, I have three things I'm trying to accomplish with it that I failed at. (I told you I was terrible at following instructions.)

Would you mind helping me with these?

1.) C:\WINDOWS\security\Database

I would like this to be placed in subfolders thusly:

BACKUP\Windows\security\databass

--------------------------------------------------------------

2.) C:\WINDOWS\system32\config\systemprofile

I would like this to be placed in subfolders thusly:

BACKUP\WINDOWS\system32\config\systemprofile

--------------------------------------------------------------

3.) C:\WINDOWS\system32\DirectX\Dinput

I would like this to be placed in subfolders thusly:

BACKUP\WINDOWS\system32\DirectX\Dinput

---------------------------------------------------------------

Here's what my cmd file looks like. Maybe you can see where I messed up. Thanks.

md C:\BACKUP\WINDOWS

md C:\BACKUP\WINDOWS\system32

cd /d C:\BACKUP\WINDOWS

rem ----< MAIN >----------------------------------------------------------------------

move /y "%SystemRoot%\$NtUninstall*"

move /y "%SystemRoot%\addins"

move /y "%SystemRoot%\AppPatch"

move /y "%SystemRoot%\Config"

move /y "%SystemRoot%\Connection Wizard"

move /y "%SystemRoot%\Cursors"

move /y "%SystemRoot%\Debug"

move /y "%SystemRoot%\Downloaded Installations"

move /y "%SystemRoot%\Help"

move /y "%SystemRoot%\ime"

move /y "%SystemRoot%\lastgood"

move /y "%SystemRoot%\Media"

move /y "%SystemRoot%\msagent"

move /y "%SystemRoot%\msapps"

move /y "%SystemRoot%\mui"

move /y "%SystemRoot%\nview"

move /y "%SystemRoot%\Offline Web Pages"

move /y "%SystemRoot%\PCHealth"

move /y "%SystemRoot%\PIF"

move /y "%SystemRoot%\pss"

move /y "%SystemRoot%\Profiles"

move /y "%SystemRoot%\RegisteredPackages"

move /y "%SystemRoot%\Registration"

move /y "%SystemRoot%\repair"

move /y "%SystemRoot%\ServicePackFiles"

move /y "%SystemRoot%\ShellNew"

move /y "%SystemRoot%\srchasst"

move /y "%SystemRoot%\system"

move /y "%SystemRoot%\twain_32"

cd /d C:\BACKUP\WINDOWS\security\Database

move /y %SystemRoot%\security\Database"

cd /d C:\BACKUP\WINDOWS\system32

move /y %SystemRoot%\system32\1025

move /y %SystemRoot%\system32\1028

move /y %SystemRoot%\system32\1031

move /y %SystemRoot%\system32\1037

move /y %SystemRoot%\system32\1041

move /y %SystemRoot%\system32\1042

move /y %SystemRoot%\system32\1054

move /y %SystemRoot%\system32\2052

move /y %SystemRoot%\system32\3076

move /y %SystemRoot%\system32\3com_dmi

move /y %SystemRoot%\system32\CatRoot

move /y %SystemRoot%\system32\Catroot2

move /y %SystemRoot%\system32\Com

move /y %SystemRoot%\system32\Data

move /y %SystemRoot%\system32\Defaults

move /y %SystemRoot%\system32\dhcp

move /y %SystemRoot%\system32\download

move /y %SystemRoot%\system32\export

move /y %SystemRoot%\system32\ias

move /y %SystemRoot%\system32\icsxml

move /y %SystemRoot%\system32\IME

move /y %SystemRoot%\system32\inetsrv

move /y %SystemRoot%\system32\Macromed

move /y %SystemRoot%\system32\MsDtc

move /y %SystemRoot%\system32\mui

move /y %SystemRoot%\system32\npp

move /y %SystemRoot%\system32\oobe

move /y %SystemRoot%\system32\ras

move /y %SystemRoot%\system32\ReinstallBackups

move /y %SystemRoot%\system32\restore

move /y %SystemRoot%\system32\ShellExt

move /y %SystemRoot%\system32\spool

move /y %SystemRoot%\system32\usmt

move /y %SystemRoot%\system32\wbem

move /y %SystemRoot%\system32\wins

move /y %SystemRoot%\system32\xircom

cd /d C:\BACKUP\WINDOWS\system32\config\systemprofile

move /y %SystemRoot%\system32\config\systemprofile"

cd /d C:\BACKUP\WINDOWS\system32\DirectX\Dinput

move /y %SystemRoot%\system32\DirectX\Dinput"

nuhi, one other thing, please. I don't know how complicated this would be to incorporate into the file, but I need two important files "moved" to the "actual" system32 folder here: C:\WINDOWS\system32 during the process...and NOT to the BACKUP folder on C:\

They are "msconfig.exe" from C:\WINDOWS\PCHealth\HelpCtr\Binaries, and

"framedyn.dll" from C:\WINDOWS\system32\wbem

@Jan ...Jan, you just gotta try this. It's absolutely fantastic. I'll attach the .cmd file for you. Be sure to either move those two files above I'm asking nuhi to help me with to the actual system32 folder first...or, you can get them from the BACKUP Folder created on C:\ and then put them in the actual system32 folder after you run the .cmd file.

Trust me. You're gonna like this.

(Bet she'll go steady with me now. :yes: )

cd /d C:\BACKUP\WINDOWS\security\Database

move /y %SystemRoot%\security\Database"

There is an error...you are moving Database dir in Database dir...that's double Database.

And have you made a C:\BACKUP\WINDOWS\security dir first ?

The point is to locate yourself in one directory under the needed one

cd /d C:\BACKUP\WINDOWS\security

and make that same "tree" in backup

md C:\BACKUP\WINDOWS\security, then

move C:\BACKUP\WINDOWS\security\Database\

from C:\BACKUP\WINDOWS\security

and so on with others.

This is how it goes:

md C:\BACKUP\WINDOWS\security

cd /d C:\BACKUP\WINDOWS\security

move /y %SystemRoot%\security\Database"

To backup msconfig:

move "C:\WINDOWS\PCHealth\HelpCtr\Binaries\msconfig.exe" %SystemRoot%\System32\

then delete or move PCHealth.

move "C:\WINDOWS\system32\wbem\framedyn.dll" %SystemRoot%\System32\

then delete or move wbem

And try not to paste so much text on to forums...it's kinda veird reading all those lists when you can attach files, ok ?

Is this how they should look?

----------------------------------------------------------------------------------------------------

md C:\BACKUP\WINDOWS\security

cd /d C:\BACKUP\WINDOWS\security

move /y %SystemRoot%\security\Database"

md C:\BACKUP\WINDOWS\system32\config\systemprofile

cd /d C:\BACKUP\WINDOWS\system32\config\systemprofile

move /y %SystemRoot%\system32\config\systemprofile"

md C:\BACKUP\WINDOWS\system32\system32\DirectX\Dinput

cd /d C:\BACKUP\WINDOWS\system32\system32\DirectX\Dinput

move /y %SystemRoot%\system32\DirectX\Dinput"

------------------------------------------------------------------------------------------------------

move "C:\WINDOWS\PCHealth\HelpCtr\Binaries\msconfig.exe" %SystemRoot%\System32\

move /y "%SystemRoot%\PCHealth"

move "C:\WINDOWS\system32\wbem\framedyn.dll" %SystemRoot%\System32\

move /y %SystemRoot%\system32\wbem

--------------------------------------------------------------------------------------------------------

That crash you just heard was my computer hitting the pavement outside.

I give up. I just can't place those last few commands right. Maybe if you get the time, or the inclination, nuhi, you can download my cmd file from above and put in those last commands where they need to go. If not, that's alright. I know it's a lot to ask. You've been swell about all this. So thanks.

How can't you see that in first two rows it must be one directory down

md C:\BACKUP\WINDOWS\system32\config\systemprofile <---- remove that which you are trying to move "systemprofile"

cd /d C:\BACKUP\WINDOWS\system32\config\systemprofile <----

move /y %SystemRoot%\system32\config\systemprofile"

When you move a directory it creates it self (the last one in the tree)

move /y %SystemRoot%\system32\config\systemprofile"

creates systemprofile automatically...and you are missing left ".

So finally:

md C:\BACKUP\WINDOWS\system32\config

cd /d C:\BACKUP\WINDOWS\system32\config

move /y "%SystemRoot%\system32\config\systemprofile"

Have you read my post carefully, where is the rush, calm down and try it a little longer.

Now try that on others, and stop running :)

This is what I put at the very end of the script:

move /y %SystemRoot%\system32\xircom

md C:\BACKUP\WINDOWS\system32\config

cd /d C:\BACKUP\WINDOWS\system32\config

move /y "%SystemRoot%\system32\config\systemprofile"

md C:\BACKUP\WINDOWS\system32\DirectX\Dinput

cd /d C:\BACKUP\WINDOWS\system32\DirectX\Dinput

move /y "%SystemRoot%\system32\DirectX\Dinput"

--------------------------------------------------------------------------------------------------

Assuming that is correct...(Oh, God, please say it's correct.)

Okay, but where do I place this?

md C:\BACKUP\WINDOWS\security

cd /d C:\BACKUP\WINDOWS\security

move /y %SystemRoot%\security\Database"

--------------------------------------------------------------------------------------------------

And these?

move "C:\WINDOWS\PCHealth\HelpCtr\Binaries\msconfig.exe" %SystemRoot%\System32\

move /y "%SystemRoot%\PCHealth"

move "C:\WINDOWS\system32\wbem\framedyn.dll" %SystemRoot%\System32\

move /y %SystemRoot%\system32\wbem

-------------------------------------------------------------------------------------------------------------

Well then, three out of five ain't bad.

I just need to know where to position these scripts, and if these scripts are correct for these two things, and it will be complete:

move "C:\WINDOWS\PCHealth\HelpCtr\Binaries\msconfig.exe" %SystemRoot%\System32\

move /y "%SystemRoot%\PCHealth"

move "C:\WINDOWS\system32\wbem\framedyn.dll" %SystemRoot%\System32\

move /y %SystemRoot%\system32\wbem

I'm happy to announce the cmd file is completed, and works perfectly. It gives smart placement in subfolders of the BACKUP Folder on C:\ it creates, identical to the original placement of the folders it backs up and removes.

This is what I always wanted for you guys. This way anyone will know exactly where each Folder or File came from if he or she would like to replace something.

Not only that, but it will actually move two very important files in its process to the original system32 folder for you: msconfig.exe and framedyn.dll. So you don't have to worry about them. It's hassle-free.

I hope you all enjoy this. Up until know I could only tell you which files and folders could be removed. But it would require much effort and time on your part doing so. This cmd file is like having your very own program to do the removing.

It's not going to get any better than this. It's completed.

I really have to thank nuhi. He was very very patient with me, while he instructed me how to go about making this.

nuhi, you should be happy to know that the suicide rate for script writers will immediately decline thanks to you helping me put the finishing touches on this project...because I won't need to bother them anymore with it.

I actually wrote E-mails to script writers, picking their brains. ...And you should see the thread on that site that gets listed here as spam, where I drove four dudes absolutely bonkers. But no more.

Attached is the cmd file. Enjoy people. I really did do it for you you know. I've deleted all these files so many times, I can do it in five or six minutes now, and blindfolded.

Nice work you have done so far Bold! But ive experienced some problems with one of zour system32.bat. Since then ive got a english keyboard lazout and i dont get it back via systemconfig/language settings. On the first reboot after i executed zour bacth file mz pc complained about missing files named c?850.nls or something like this. I moved it back and afterr this the problem was there. I think it has something to do with mz problem. anz ideas how to get to mz old german keyboard layout.

EvErSoR, I'm glad you solved that. Time and time again I will get pm'd by folks about that. When I have again and again issued warnings about the use of my system32 bat file.

I'm going to post these warnings here one more time, because I guess some people are proceeding to use the system32 bat file without reading, or heeding, these warnings.

Remember, too, these are the files MY system doesn't need for anything. Some YOU just may need. So keep the files it backs-up and removes for a time...a good 30 to 60 day period.

---------------------------------------------------------------------------------------------------------------

A WORD OF CAUTION about kbd*.dlls. kbd*.dlls are Keyboard Layout files. My settings are for U.S. English, so I only need and keep the "kdbdus.dll". All others I remove from system32.

I've heard about another way to go about deleting the kdb*.dlls your system doesn't need...However, this will completely remove all unnecessary kdb*.dlls, not back them up like the Batch File will.

I've never tried this command, but if you would like to try it, here it is: Go to Start > Run. Copy and paste this in and click OK: del c:\windows.alt\system32\kbd*.dll

Supposedly, this will remove all the kdb*.dlls your system doesn't need.

----------------------------------------------------------------------------------------------------------------

A WORD OF CAUTION about NLS files. Delete any one of these you're not supposed to and your system may not restart.

NLS Files = Multiple Language Resource Files. Character Translation; National Language Services driver (font or font map).

My system settings are for U.S.English. If you live outside of the U.S. using a foreign from made for the U.S. computer you will need to check within your Layout.ini file within your Prefetch folder to see exactly which NLS files your system uses.

If you find you need one or two that I remove, simple look in the backup folder the Batch File Made on C:\ and replace those to your system32 folder.

For my U.S.English settings, I remove all NLS files, except for these:

c_437.nls

c_932.nls

c_936.nls

c_949.nls

c_950.nls

c_1250.nls

c_1251.nls

c_1252.nls

c_1253.nls

c_1254.nls

c_1255.nls

c_1256.nls

c_1257.nls

c_28591.nls

c_ctype.nls

geo.nls

l_except.nls

l_intl.nls

locale.nls

sortkey.nls

sorttbls.nls

unicode.nls

---------------------------------------------------------------------------------------------------------

Now here is an updated system32 bat file. This file is going to move 700 individual files from a fresh install of XP out of system32 and place them in a backup folder it creates on C:\ ...named simply, "backup".

Within the backup folder will be a subfolder named "WINDOWS". Within that folder will be another subfolder named "system32"...where you will see the files that have been moved.

I did it this way so you would always know the exact path where they come from should you decide to return any of the files to their original location.

--------------------------------------------------------------------------------------------------------

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Signal accuses UK government of using child safety as cover for mass surveillance by David Uzondu Recently, the UK's Home Office announced a sweeping set of proposals to make Britain the "first country in the world" where children cannot share or view nude photos on their smart devices, an initiative that authorities claim will protect children from online predators and combat pornography. In response, Signal believes that while the government must keep children "safe" and "protected," it should do so through social services and education, not by "surveillance, funding cuts, and cover-ups." The company called the plan "dystopian" and warned that it violates everyone's fundamental right to privacy, arguing that scanning on the presumption of nudity will only strengthen the market dominance and data control of giant corporations like Apple and Google. The statement continues by accusing the government of hiding its true intentions under the guise of child safety. Signal argues that the Home Office is building an invisible surveillance infrastructure that remains ripe for exploitation by future administrations and authoritarian regimes. According to the company, this aggressive approach completely ignores the actual needs of young people, such as properly funded schools and mental health services. Tech companies like Apple and Google have a three-month window to implement these mandatory device-level filters across the United Kingdom. If these tech firms refuse to comply with the mandate, the government will pass emergency legislation to force them to comply, threatening massive fines and even going after the CEOs of these companies with criminal charges. The technology will work by blocking explicit images directly on the operating system of all smartphones and tablets by default. This system monitors the device camera and third-party apps to intercept nudity before anyone can upload or send the image. Adults can still view explicit content, but only after completing a strict age verification check to unlock their devices. Several bodies like the NSPCC and Barnardo's praised the Home Office's decision, arguing that device-level intervention stops the cycle of grooming before it starts. The Internet Watch Foundation (IWF) also supported the policy, claiming that tech companies can implement on-device checks "without threatening privacy or collecting any data."
    • Did you watch the keynote? It is way beyond what is described in this article. Looks interesting. Now it is time for them to deliver unlike what happened in 24.
    • It pretty much has to be compatible with MS Office or it is going nowhere. The rest of the world runs office including Europe. If it is not compatible it will not survive.
    • Incredible deal gets you free NVMe 512GB SSD with AMD AM5 B850 motherboard for only $150 by Sayan Sen Earlier this week we covered the story of an interesting PC case wherein you can build two full-size computers inside it as in it can house and run an AMD and an Intel system simultaneously. Speaking of building PCs, these are hard times to make one for sure as prices are often very high except during flash sales or discounts. If you are in the market for a 1080p gaming PC then Nvidia's 8GB RTX 5060 Ti is currently on sale for just $330 and you get the latest James Bond game too, for free. Speaking of which, right now there is another incredible sale going on as we can get a free 512 GB NVMe SSD from TeamGroup in the form of the G50 alongside the purchase of an AMD B850 socket AM5 motherboard for only $150 (purchase link under the specs table down below). Getting an AM5 motherboard now in 2026 will be a wise investment for sure, especially since AMD confirmed its commitment to support the socket till at least 2029. The MSI PRO B850M-P WIFI is a micro-ATX motherboard that is compatible with AMD Ryzen 9000 series processors. Since it is AM5, the motherboard works with DDR5 memory and includes MSI’s Memory Boost technology, along with EXPO and XMP support. Connectivity features include built-in Wi-Fi 7 paired with a 5G LAN solution. The board offers a PCIe 5.0 M.2 slot with MSI’s EZ M.2 Shield Frozr II thermal solution, that is said to help maintain SSD performance by providing ample cooling against overheating. The technical specifications of the MSI PRO B850M-P WIFI motherboard are given in the table below: Specification Value Form Factor Micro-ATX (mATX), 243.84 × 243.84 mm Chipset AMD B850 Socket AM5 Supported Processors AMD Ryzen 9000, 8000, and 7000 Series Desktop Processors Memory Slots 4 × DDR5 UDIMM Max Memory 256 GB Memory Speed DDR5 8200–5600 MT/s (OC), DDR5 5600–4800 MT/s (JEDEC) Display Outputs 1 × HDMI 2.1 (up to 4K 60Hz) 1 × DisplayPort 1.4 (up to 4K 60Hz) PCIe Slots 1 × PCIe 5.0 x16 (CPU) 3 × PCIe 3.0 x1 (Chipset) Audio Codec Realtek ALC897 Audio Channels 7.1-Channel High Definition Audio M.2 Slots 3 × M.2 slots M.2_1: PCIe 5.0 x4 (CPU) M.2_2: PCIe 4.0 x4 (CPU) M.2_3: PCIe 4.0 x2 (Chipset) M.2 Device Sizes M.2_1: 2280/2260 M.2_2: 2280/2260 M.2_3: 2280 SATA Ports 4 × SATA 6Gb/s RAID Support SATA: RAID 0, 1, 10 NVMe: RAID 0, 1, 5, 10 Rear USB Ports 4 × USB 2.0 2 × USB 5Gbps Type-A 1 × USB 10Gbps Type-A 1 × USB 10Gbps Type-C Front USB Headers 4 × USB 2.0 4 × USB 5Gbps Type-A 1 × USB 10Gbps Type-C LAN Realtek 8126VB 5Gb Ethernet Wireless Networking Wi-Fi 7 (802.11 a/b/g/n/ac/ax/be) Tri-band 2.4GHz / 5GHz / 6GHz MU-MIMO, MLO, 4KQAM Up to 2.9Gbps Bluetooth Bluetooth 5.4 Internal Power Connectors 1 × 24-pin ATX Power 1 × CPU Power 1 × PCIe Power (8-pin) Cooling Headers 1 × CPU Fan 1 × Combo Fan/Pump 3 × System Fan RGB Headers 3 × Addressable RGB Gen2 (JARGB_V2) 1 × RGB LED (JRGB) Additional Internal Headers 2 × Front Panel (JFP) 1 × Chassis Intrusion (JCI) 1 × Front Audio (JAUD) 1 × COM Port (JCOM) 1 × JDASH Tuning Controller 1 × TPM 2.0 Header The free TeamGroup T-FORCE G50 NVMe SSD is a PCIe Gen4 and as such it promises to deliver sequential read speeds of up to 5,000 MB/s, helping accelerate game loading, file transfers, and everyday computing tasks. The SSD features an InnoGrit controller and SLC caching technology to support consistent performance. An ultra-thin, patented graphene heatsink is included to aid in heat dissipation. The NAND flash is based on TLC which means it has plenty of endurance up its sleeve. The random performance may not be as amazing as other drives with DRAM though. Still it should be very good since it can access system memory via HMB to use it as its DRAM cache. The technical specifications of the TeamGroup 512GB G50 NVMe SSD are given in the table below: Specification Value Model / Part Number TM8FFE512G0C129 Form Factor M.2 2280 Interface PCIe Gen4x4 with NVMe Sequential Read Speed Up to 5,000 MB/s Sequential Write Speed Up to 2,500 MB/s Endurance (TBW) 325 TBW DRAM Cache No Cache Technology SLC Cache Controller InnoGrit Controller Solution Operating Temperature 0°C to 70°C Storage Temperature -40°C to 85°C Weight 7 g Dimensions 80.0 × 22.0 × 3.7 mm Vibration Resistance 80 Hz ~ 2,000 Hz / 20G Shock Resistance 1,500G / 0.5 ms MTBF 3,000,000 hours Get it at the link below: MSI PRO B850M-P WIFI AM5 AMD motherboard + Team Group T-FORCE G50 TM8FFE512G0C129 512GB SSD (free gift): $149.99 (Sold and Shipped by Newegg US) This Newegg deal is US-specific and not available in other regions unless specified. This is a first-party seller link (at the time of article publishing); ensure that you also purchase from a first-party seller link only. If you don't like it or want to look at more options, check out the previous deals that we have covered, OR you can also visit Amazon US deals page. Get Prime (SNAP), Prime Video, Audible Plus or Kindle / Music Unlimited. Free for 30 days. As an Amazon Associate, we earn from qualifying purchases.
    • RapidRAW 1.5.7 by Razvan Serea RapidRAW is a beautiful, non-destructive, GPU‑accelerated RAW image editor designed for speed and simplicity. It uses a lightweight (~30 MB), efficient code base built with Rust, React and Tauri. Ideal for Lightroom workflows, it offers rich editing tools—exposure, contrast, highlights, shadows, whites/blacks, tone curves, HSL mixer, dehaze, vignetting, film grain, sharpening, clarity and noise reduction—processed in real-time on the GPU. Features include intuitive masking (brush, linear, radial, AI-powered subject and foreground detection), generative edit layers (via ComfyUI), 32‑bit precision, and full RAW format support through rawler. RapidRAW also provides library management (folder navigation, ratings, metadata, EXIF viewer), batch operations, export presets (JPEG/PNG/TIFF), sidecar editing (.rrdata), undo/redo history, customizable UI themes, smooth animations, resizable panels, and preset copy/paste. A modern high-performance Lightroom alternative with polished UX and creative tools, RapidRAW brings powerful photo editing to photographers seeking speed, responsive GPU feedback, and streamlined workflows. RapidRAW v1.5.7 release notes: This update serves as a direct follow-up to the core architectural migration introduced in v1.5.6. While the transition to a more modular state management system marked a significant step forward for RapidRAW's stability and long-term maintainability, it also introduced several edge cases and regressions within the library and editing workflows. This release focuses on addressing those issues, with a particular emphasis on a complete overhaul of library performance to ensure smooth and responsive browsing following the refactoring. It also resolves inconsistencies in the copy-and-paste workflow and expands RapidRAW's accessibility by adding support for eight additional languages. [full changelog] Download: RapidRAW 1.5.7 | ARM64 | ~20.0 MB (Open Source) View: RapidRAW Home Page | Screenshot | Other operating systems Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Very Popular
      Captain_Eric earned a badge
      Very Popular
    • One Month Later
      amusc earned a badge
      One Month Later
    • One Month Later
      DJC50PLUS earned a badge
      One Month Later
    • Week One Done
      DJC50PLUS earned a badge
      Week One Done
    • Proficient
      Eric Biran went up a rank
      Proficient
  • Popular Contributors

    1. 1
      +primortal
      504
    2. 2
      PsYcHoKiLLa
      223
    3. 3
      ATLien_0
      87
    4. 4
      Steven P.
      80
    5. 5
      +Edouard
      80
  • Tell a friend

    Love Neowin? Tell a friend!