/build/static/layout/Breadcrumb_cap_w.png

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 ? 


0 Comments   [ + ] Show comments

Answers (1)

Posted by: Rvlieburg 11 years ago
Third Degree Blue Belt
0

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>

 

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Post

Related Posts

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ