Unsolved
This post is more than 5 years old
3 Posts
0
1114
February 6th, 2015 11:00
Time Finder Clone Session state change information
Can I find the time stamp for the Time Finder Clone Copy state changes (Particularly from Copy-In-Progress to Copied) in SYMAPI log? If not where can I find that info? I tried Symaudit but all it has is the time for user issued state changes (like Create and Activate, but not the Copy State). I went through my SYMAPI log but didn't find anything related to symclone.
No Events found!
PedalHarder
3 Apprentice
•
465 Posts
1
February 8th, 2015 13:00
The only way to keep track of when a clone went from copy-in-progress to copied is to run a symclone verify Iteratively in a batch file / script and log when the state changed. There is no automatic logging of this state change.
symclone -g dg_name verify -copied
The above command will generate a return code zero when the clone is in the copied state. So it is a matter of checking the return code of above command within your script.
We-Max
3 Posts
0
February 20th, 2015 12:00
Thanks Jason!!