Author |
Message |
MKGZZ
Joined: 29 Oct 2009 Posts: 1
|
Posted: Thu Oct 29, 2009 8:48 am Post subject: Hellp with autoclose |
|
|
First off - This is a great program! Has far exceeded my expectations and does a great job of handling FAT32 & NTFS discrepancies.
Have been running profiles manually for the most part and want to get a little more automated but do not want scheduled operation or have a program always running in background.
I am a novice when it comes to scripts and am having trouble running them.
1. First thing I am wanting to do is have it autoclose after manual execution but only if there are no errors (exit code = 0).
2. For some profiles, after the above autoclose I want to load another profile to be executed manually.
Could this be done with a batch file as follows?
IF %VV_EXIT_CODE% NEQ 0 GOTO ENDX
ViceVersa.exe /autoclose
ViceVersa.exe PROFILE2.fsf /autocompare
ENDX
Any comments or other methods to accomplish what I am trying to do? |
|
Back to top |
|
|
TGRMN Software Site Admin
Joined: 10 Jan 2005 Posts: 8759
|
Posted: Fri Oct 30, 2009 2:57 am Post subject: |
|
|
Hello
I'd use Visual Basic Scripts (vsb) with the Shell.Exec command or PowerShell Scripts instead of batch files, they are a lot more powerful.
thanks _________________ --
TGRMN Software Support
http://www.tgrmn.com
http://www.compareandmerge.com |
|
Back to top |
|
|
|