In article <#>,
Rick <> wrote:
>Thanks -- I don't see this setting anywhere. I looked in all tabs of my
Disc Cleanup, More Options tab, System Restore and Shadow Copies,
click Cleanup. That will *also* delete all but your most recent restore
point, though, so you might want to use vssadmin from the command line:
This is a pain. VSS reserves 15% of the disc for shadow copies.
If you have a 300GB disc that's 45GB. You can make that lower by opening
a DOS window and typing vssadmin resize shadowstorage /on=c: for=c: /maxsize=30GB
or you can delete the oldest shadow copy with
vssadmin delete shadows /for=c: /oldest, or /all will delete all of them
if you really want to.
I was sure this was available through a properties page somewhere
but can't seem to find it in vista. Here's a pretty good explanation of
vssadmin + a stupid hack to get around it not being in the properties page on
Vista.
http://www.mydigitallife.info/2007/0...with-vssadmin/
Oh, BTW, you can put the shadow copies for C: on some other drive
if you need more space on c:
vssadmin resize shadowstorage /for=c: /on=d: maxsize=50GB
for instance. vssadmin list shadowstorage will get you oriented.
Remember to run as administrator...