Delete Subfolder From FSA Archive
Hello,
We are archiving Windows File Server from Volume level. Like D$, H$ and subfolders.
Archive Points created on VAC like D$, H$..
We want to delete one subfolder under this volumes. For example "H$\User\Vaultlearner\Documents\Excel". We want to delete only "Excel" folder and items in it from FSA archive completely
We restored example path already original place and give exclude not archive it anymore.
Should we use PowerShell cmdlet;
Remove-EVFSAFolder
Or we first convert "Excel" folder Archive Point and then use this command:
To delete the archive points:
ArchivePoints delete archive_point_path_share_name
One other way; export that folder from Export Wizard to PST with Export wizard we can use option remove after export.
When we try export wizard we neary tried every possible way to export from spesific path it didn't work. Result of export report seems succesfull but PST file never created.
We tried this paths:
\\fileserver.domain.com\H$\User\Vaultlearner\Documents\Excel
\fileserver.domain.com\H$\User\Vaultlearner\Documents\Excel
\H$\User\Vaultlearner\Documents\Excel
\User\Vaultlearner\Documents\Excel
\Excel
Thanks
VaultLearner.
Hi Can,
What I meant to say is that it is not the most effective way to export FSA archives...especially large ones.
You should be able to add the path in the following format \\fileserver.domain.com\H$\User\Vaultlearner\Documents\Excel and that should work. This is if that path is correct from the ArchiveFolderView.
You can find the FolderPath listed in the database using the following query. The Archive ID is found on the Advanced tab of the archive properties in the vault console.
USE ENTERPRISEVAULTDIRECTORY
SELECT * from ArchiveFolderView
WHERE ArchiveVEID = 'Archive ID from GUI'
AND FolderName = 'Excel'I confirmed this in lab. The following shows the path I added to export as \\fileserver.ev.local\Data\Reports\DBUpgrade
Regards,
Patrick