Bug #2178
Mis à jour par Matthieu Decorde il y a plus de 8 ans
The script fails to create the TXMHOME directory at command line:
<pre>
(
echo "get install date from %installdir%\STAMP and %DOTTXM%\STAMP files"
Fc "%installdir%\STAMP" "%DOTTXM%\STAMP"
) >"%TXMHOME%\TXMLogs.txt" 2>"%TXMHOME%\TXMErrorLogs.txt"
</pre>
The "%TXMHOME%\TXMLogs.txt" and "%TXMHOME%\TXMErrorLogs.txt" files could not be created because TXMHOME directory was not created
h3. Solution (workaround)
Go to user home directory and create TXM home directory manually with the "mkdir TXM" command, or create the directory from the File Manager.
h3. Solution
Move the directories creation instructions at the beginning of the scripts.
<pre>
(
echo "get install date from %installdir%\STAMP and %DOTTXM%\STAMP files"
Fc "%installdir%\STAMP" "%DOTTXM%\STAMP"
) >"%TXMHOME%\TXMLogs.txt" 2>"%TXMHOME%\TXMErrorLogs.txt"
</pre>
The "%TXMHOME%\TXMLogs.txt" and "%TXMHOME%\TXMErrorLogs.txt" files could not be created because TXMHOME directory was not created
h3. Solution (workaround)
Go to user home directory and create TXM home directory manually with the "mkdir TXM" command, or create the directory from the File Manager.
h3. Solution
Move the directories creation instructions at the beginning of the scripts.