Document Type | Troubleshooting
Category | Installation
Applicable Product Version | Tibero 6 and above
Document Number | TINTS020
Issue
When running system.vbs during the installation of Tibero for Windows version, the following error occurs, and execution of system.vbs is not possible.
D:\tibero6\scripts\system.vbs(355, 5) Microsoft vb-script runtime error: File not found
Cause
This occurs when the tmp_DTB.log file required for Tibero installation is missing.
If Tibero was previously installed on the D drive and then the C drive is formatted (Windows reinstalled), followed by reinstalling Tibero on the D drive, the tmp_DTB.log file may be deleted.
Solutions
%TB_HOME%/scripts/system.vbs file should be opened and the following part added.
WScript.Echo " tmpLog = " & tmpLog // Add this part
If objFSO.FileExists(logDest) Then
objFSO.DeleteFile tmpLog, True
objFSO.MoveFile logDest, tmpLog
End If
(... omitted ...) After adding, rerun system.vbs.
The same error will appear along with the path of tmpLog, and you should manually create the file at that path.
Running system.vbs again will confirm normal operation.
Version Differences
Up to Tibero version 7.2.2, system.vbs is used; from Tibero 7.2.3 and later versions, modification of the system_install.vbs file is required.