This content has been marked as final.
Show 1 reply
-
1. Re: Tabcmd Status
Jeffrey Line Oct 18, 2017 5:31 AM (in response to Madhusudhan Khambham)Madhu,
Within a batch file you can use this code to determine if the command has been executed successfully.
if not {%ERRORLEVEL%} == {0} (
goto CMDERROR
)
This will basically let you know if the previous command was submitted successfully. it does not tell if you the extract has finished refreshing. This would be some more code to accomplish that.
I've attached a script that I use this code for so you can see how I've used it. Hope this helps.
Jeffrey
-
TGet_sample.bat 1.2 KB
-