You can set filters to prevent specific type of files from being backed up. Filters can also be used to exclude certain system-related files and application files which consistently fail during the backup operation.
The following sections describe the steps to configure filters prior to a backup.
Configure Exclusions to Filter
By default, the existing filters are defined by the administrator. You can set filters in addition to the ones defined by the administrator.
-
From the navigation pane, go to Protect > Laptops.
The Laptops page appears.
-
Click SETTINGS for the computer that you require.
The files and folders included in the backup are displayed in the Backup content section.
-
In the Content section, click Edit
.
The Edit backup content dialog box appears.
-
Click the Exclude tab.
-
To exclude files or folders, click ADD and perform either of the following:
-
Click BROWSE and browse for content to exclude from backups.
-
Click CUSTOM PATH and then enter the path of the file or folder.
-
-
Click SAVE.
Remove Predefined Filters
Your computer is configured with predefined filters defined by the administrator during the Command Center setup. The administrator defines these filters using a subclient policy associated with your client. If you want to include the files being excluded by the administrator, use the following steps to override the filters:
Note
By overriding the default filters, future content and filter selection changes made by the administrator will not apply to your client.
-
From the navigation pane, go to Protect > Laptops.
The Laptops page appears.
-
Click SETTINGS for the computer that you require.
The files and folders included in the backup are displayed in the Backup content section.
-
In the Backup content section, click Edit
.
The Edit backup content dialog box appears.
-
Click the Exclude tab.
-
Delete any folders that you want to remove.
If you receive an error message concerning "Global Filters", the filter you are trying to remove is a global filter defined in the CommCell. You cannot remove a global filter using the Command Center. Contact your administrator for more information.
-
In the confirmation window, click YES.
-
Click SAVE.
Revert Back to Predefined Filters
If you have overridden the filters defined by the administrator but you would like to return to the administrator's filter selections, use the steps described below:
Note
The backup content and filters you defined for the client are deleted when you revert to the administrator's selections.
-
From the navigation pane, go to Protect > Laptops.
The Laptops page appears.
-
Click SETTINGS for the computer that you require.
The files and folders included in the backup are displayed on the Overview tab in the Backup content section.
-
In the Backup content section, , click Edit
.
The Edit backup content dialog box appears.
-
Click REST TO DEFAULT CONTENT.
The Confirmation dialog box appears.
-
Click YES.
Supported Wildcards in Regular Expressions
You can use wildcard characters to specify the pattern of filenames that you want to exclude. The following wildcard characters can be automatically detected in regular expressions when backing up or excluding the files or folders:
Wildcards |
Description |
Example |
* |
Any number of any characters. |
*.doc - any file name with the extension ".doc" (e.g., status.doc, mission.doc) a*.dll - any file name that begins with "a" and has the extension .dll (e.g., alsvc.dll, advdcc.dll) |
? |
Any one character. |
access? - any file name that begins with- "access" followed by any one character (e.g., access1, access5). |
** |
Any directory level. |
C:\**\move.cpp - the file named move.cpp located at any directory level under the c: drive. (e.g., c:\info\com\move.cpp) C:\sys*\** - all directories starting with sys will be filtered. |
[ ] |
Any range of characters. |
[ei]nsure.doc - any file name that ends with "nsure.doc" and begins either "e" or "i". (e.g., ensure.doc, insure.doc) [a-m].doc - any file name that ends with ".doc" and begins with the letters "a" through "m" inclusive. |
[! ] |
The negation of a range of characters. |
d[!ei]nsure.doc - any file name that ends with "nsure.doc", but does not begin with "e" or "i". (e.g., unsure.doc) |