How can i disable the log of Middleware at the end of Business Object 5.1.2 installation ?
When i use this Command setup.exe -key xxxx-yyyyy-zzzz -rdbmskey aaaa-bbbbb-cccc -silent -skip -NOLOGO -NOSTARTMENU to install business object a log appears and I would like to have a COMPLETE silent install. How can I disable this log ?
Answers (1)
What you could do as last resort is start a minimized HTA-script as shown below at the beginning of your installation script. This HTA monitors if the popup conse up and stops it immediately. If you are using Windows 7 as your OS you can even use this when there are no user sessions open.
<html>
<head>
<title>ATTENTION</title>
<HTA:APPLICATION
ID="objAutoRefresh"
APPLICATIONNAME="Software Deployment"
SCROLL="no"
SINGLEINSTANCE="no"
WINDOWSTATE="minimize"
BORDER=none
>
</head>
<SCRIPT LANGUAGE="VBScript">
Set wshShell = CreateObject("WScript.shell")
set filesys= CreateObject("Scripting.FileSystemObject")
on error resume next
Sub Window_OnLoad
iTimerID = window.setInterval("RefreshList", 3000)
End Sub
Sub RefreshList
on error resume next
WshShell.AppActivate ( "TITLEFROMWINDOW")
if WshShell.AppActivate ( "TITLEFROMWINDOW") = TRUE Then wshshell.sendkeys "{WHATEVERISAPPROPIATE}" if WshShell.AppActivate ( "TITLEFROMWINDOW") = TRUE Then self.close
End Sub
window.resizeTo screen.width,130
window.moveTo intTop
</SCRIPT>
<body STYLE="font:14 pt arial; color:white;
filter:progid:DXImageTransform.Microsoft.Gradient
(GradientType=1, StartColorStr='#000000', EndColorStr='#0000FF')">
<input type="image" src="exit.gif" title='' name="image" width="75" height="75" onclick=self.close()></input>
<body><span id = "ProcessList"></span>
Software installation in progress, please do not use mouse or keyboard ! <br>
<body>
</html>