WinCatalog 2017 Online User Manual Home | Download | Buy Now | Technical Support  
×
Menu
Index

Examples of Command Files

Example of a command file (add-drive.cmd):

 
@echo Adding Disk E:\ to the Catalog
@set wcat="C:\Program Files (x86)\WinCatalog\WinCatalog.exe"
@call %wcat% -Open "D:\My Collection.w3cat" -Add -FileSystemPath "E:" -CatalogPath "Collection\Backups"
 
Explanation
 

Another example of a command file (update-folder.cmd):

 
@echo Updating folder T:\Documents to the Catalog
@set wcat="C:\Program Files (x86)\WinCatalog\WinCatalog.exe"
@call %wcat% -Open "D:\My Collection.w3cat" -Update -CatalogPath "Collection\2015\Documents" -ExitWhenDone
 
Explanation