BackupPC-users

Re: [BackupPC-users] How to BackupFilesExclude to exclude locked files on Windows XP

2008-05-20 10:25:07
Subject: Re: [BackupPC-users] How to BackupFilesExclude to exclude locked files on Windows XP
From: Bowie Bailey <Bowie_Bailey AT BUC DOT com>
To: backuppc-users AT lists.sourceforge DOT net
Date: Tue, 20 May 2008 10:24:43 -0400
Kurt jasper wrote:
> ok, to exclude the follwing files that can be found in any
> user-directory C:\Documents and Settings\USERNAME), I followed your
> suggestion and put intomy CLIENT.PL:
> [...]
> $Conf{RsyncShareName} = '/';
> $Conf{BackupFilesOnly} = ['/home','/etc','/cygdrive/c/Dokumente und
> Einstellungen/'];
> $Conf{BackupFilesExclude} = {
> 'c' => ['/Dokumente und Einstellungen/*/NTUSER.DAT','/Dokumente und
> Einstellungen/*/ntuser.dat.LOG','/Dokumente und Einstellungen/*/Lokale
> Einstellungen/Anwendungsdaten/Microsoft/Windows/UsrClass.dat','/Dokumente
> und Einstellungen/*/Lokale
>
Einstellungen/Anwendungsdaten/Microsoft/Windows/UsrClass.dat','/UsrClass.dat
.LOG'],
> };

Your RsyncShareName is '/', but your are specifying exclusions for the
'c' share.  Try this instead:

    $Conf{BackupFilesExclude} = {
        '/' => ['/Dokumente und Einstellungen/*/NTUSER.DAT', ....
    };

or (to apply to any share):
    
    $Conf{BackupFilesExclude} = {
        '*' => ['/Dokumente und Einstellungen/*/NTUSER.DAT', ....
    };

-- 
Bowie

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
BackupPC-users mailing list
BackupPC-users AT lists.sourceforge DOT net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/