summaryrefslogtreecommitdiff
path: root/BUILD/Help/html/advanced/Batch Scripting.html
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:11:09 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:11:09 +0200
commit9cc790869ed3905c78c7eeeb0bb44f800b3f2af4 (patch)
tree1c085bbf2302be294866c4fc6e0d225f8abbc346 /BUILD/Help/html/advanced/Batch Scripting.html
parent3.14 (diff)
downloadFreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.tar.gz
FreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.tar.bz2
FreeFileSync-9cc790869ed3905c78c7eeeb0bb44f800b3f2af4.zip
3.15
Diffstat (limited to 'BUILD/Help/html/advanced/Batch Scripting.html')
-rw-r--r--BUILD/Help/html/advanced/Batch Scripting.html75
1 files changed, 40 insertions, 35 deletions
diff --git a/BUILD/Help/html/advanced/Batch Scripting.html b/BUILD/Help/html/advanced/Batch Scripting.html
index f7f01a05..7867597d 100644
--- a/BUILD/Help/html/advanced/Batch Scripting.html
+++ b/BUILD/Help/html/advanced/Batch Scripting.html
@@ -5,7 +5,7 @@
<TITLE></TITLE>
<META NAME="GENERATOR" CONTENT="OpenOffice.org 3.2 (Win32)">
<META NAME="CREATED" CONTENT="20091206;16574000">
- <META NAME="CHANGED" CONTENT="20110203;19261600">
+ <META NAME="CHANGED" CONTENT="20110405;14240200">
<META NAME="Info 1" CONTENT="">
<META NAME="Info 2" CONTENT="">
<META NAME="Info 3" CONTENT="">
@@ -31,7 +31,44 @@
order to facilitate using FreeFileSync and RealtimeSync in advanced
synchronization scenarios, creating batch files is a good way to
provide additional functionality. The following section will give
-some general hints for custom *.cmd and *.bat files.</FONT></P>
+some general hints and examples for custom *.cmd and *.bat files.</FONT></P>
+<P STYLE="margin-bottom: 0cm"><BR>
+</P>
+<UL>
+ <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">When
+ starting a batch file from RealtimeSync make synchronous calls to
+ FreeFileSync only. This will prevent RealtimeSync continue detecting
+ changes while synchronization is still in progress.</FONT></P>
+ <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">During
+ execution of a Batch file a black console window is shown. You can
+ hide this window by using the Visual Basic script &quot;Invisible.vbs&quot;
+ located in the FreeFileSync installation directory.</FONT></P>
+</UL>
+<OL>
+ <P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif"><B>Usage:</B></FONT></P>
+ <P STYLE="margin-right: 0.98cm"><SPAN ID="Rahmen7" DIR="LTR" STYLE="float: left; width: 80%; height: 0.14cm; border: none; padding: 0cm; background: #e6e6e6">
+ <P ALIGN=LEFT STYLE="margin-left: 0.79cm; margin-right: 0.98cm; margin-bottom: 0cm">
+ <FONT FACE="Courier New, monospace">wscript C:\Program
+ files\FreeFileSync\Invisible.vbs C:\MyBatchFile.cmd</FONT></P>
+ </SPAN><BR CLEAR=LEFT>
+ </P>
+</OL>
+<UL>
+ <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">FreeFileSync
+ returns with an Errorlevel below zero if unresolved problems remain:</FONT></P>
+</UL>
+<OL START=3>
+ <P><SPAN ID="Rahmen1" DIR="LTR" STYLE="float: left; width: 80%; height: 0.14cm; border: none; padding: 0cm; background: #e6e6e6">
+ <P ALIGN=LEFT STYLE="margin-left: 0.79cm; margin-right: 0.98cm; margin-bottom: 0cm">
+ <FONT FACE="Courier New, monospace">&quot;C:\Program
+ Files\FreeFileSync\FreeFileSync.exe&quot;
+ &quot;H:\Silent_Config.ffs_batch&quot;<BR>if not errorlevel 0
+ (<BR>&nbsp;&nbsp;</FONT><FONT COLOR="#808080"><FONT FACE="Courier New, monospace"><I><B>::if
+ something went wrong, add special treatment here<BR>&nbsp;&nbsp;</B></I></FONT></FONT><FONT COLOR="#000000"><FONT FACE="Courier New, monospace"><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">echo
+ Errors occurred during synchronization...</SPAN></SPAN></FONT></FONT><FONT COLOR="#808080"><FONT FACE="Courier New, monospace"><I><B><BR>&nbsp;&nbsp;</B></I></FONT></FONT><FONT FACE="Courier New, monospace">pause<BR>)</FONT></P>
+ </SPAN><BR CLEAR=LEFT>
+ </P>
+</OL>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif"><B>Example:</B>
@@ -53,7 +90,7 @@ Shutdown PC after synchronization</FONT></P>
A simple locking facility &ndash; (<SPAN STYLE="font-style: normal"><B>Note:</B></SPAN>
<I>FreeFileSync already has a more powerful directory locking
mechanism implemented that allows multiple writers in parallel</I>)</FONT></P>
-<OL>
+<OL START=0>
<P ALIGN=LEFT STYLE="margin-right: 0.98cm; margin-bottom: 0cm"><SPAN ID="Rahmen5" DIR="LTR" STYLE="float: left; width: 80%; height: 0.14cm; border: none; padding: 0cm; background: #e6e6e6">
<P ALIGN=LEFT STYLE="margin-left: 0.79cm; margin-right: 0.98cm; margin-bottom: 0cm">
<FONT FACE="Courier New, monospace">:tryAgain<BR>if not exist
@@ -68,38 +105,6 @@ mechanism implemented that allows multiple writers in parallel</I>)</FONT></P>
/C:AB /T:5 /D:A &gt; NUL<BR>&nbsp;&nbsp;goto tryAgain<BR>)</FONT></P>
</SPAN><BR CLEAR=LEFT><FONT COLOR="#808080">&nbsp;</FONT>
</P>
- <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">When
- starting a batch file from RealtimeSync be sure to make synchronous
- calls to FreeFileSync only. This will prevent RealtimeSync from
- detecting changes while synchronization is still in progress.</FONT></P>
- <P ALIGN=LEFT STYLE="margin-right: 0.98cm; margin-bottom: 0cm"></P>
- <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">During
- execution of a Batch file a black console window is shown. You can
- hide this window by using the Visual Basic script &quot;Invisible.vbs&quot;
- located in the FreeFileSync installation directory.</FONT></P>
- <P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif"><B>Usage:</B></FONT></P>
- <P ALIGN=LEFT STYLE="margin-right: 0.98cm; margin-bottom: 0cm"><SPAN ID="Rahmen7" DIR="LTR" STYLE="float: left; width: 80%; height: 0.14cm; border: none; padding: 0cm; background: #e6e6e6">
- <P ALIGN=LEFT STYLE="margin-left: 0.79cm; margin-right: 0.98cm; margin-bottom: 0cm">
- <FONT FACE="Courier New, monospace">wscript C:\Program
- files\FreeFileSync\Invisible.vbs C:\MyBatchFile.cmd</FONT></P>
- </SPAN><BR CLEAR=LEFT>
- </P>
-</OL>
-<OL START=3>
- <LI><P STYLE="margin-bottom: 0cm"><FONT FACE="Tahoma, sans-serif">FreeFileSync
- returns with an Errorlevel below zero if unresolved problems remain:</FONT></P>
- <P><SPAN ID="Rahmen1" DIR="LTR" STYLE="float: left; width: 80%; height: 0.14cm; border: none; padding: 0cm; background: #e6e6e6">
- <P ALIGN=LEFT STYLE="margin-left: 0.79cm; margin-right: 0.98cm; margin-bottom: 0cm">
- <FONT FACE="Courier New, monospace">&quot;C:\Program
- Files\FreeFileSync\FreeFileSync.exe&quot;
- &quot;H:\Silent_Config.ffs_batch&quot;<BR>if not errorlevel 0
- (<BR>&nbsp;&nbsp;</FONT><FONT COLOR="#808080"><FONT FACE="Courier New, monospace"><I><B>::if
- something went wrong, add special treatment here<BR>&nbsp;&nbsp;</B></I></FONT></FONT><FONT COLOR="#000000"><FONT FACE="Courier New, monospace"><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">echo
- Errors occurred during synchronization...</SPAN></SPAN></FONT></FONT><FONT COLOR="#808080"><FONT FACE="Courier New, monospace"><I><B><BR>&nbsp;&nbsp;</B></I></FONT></FONT><FONT FACE="Courier New, monospace">pause<BR>)</FONT></P>
- </SPAN><BR CLEAR=LEFT>
- </P>
</OL>
-<P STYLE="margin-bottom: 0cm"><BR>
-</P>
</BODY>
</HTML> \ No newline at end of file
bgstack15