Skip to Main Content
IBM Sterling


This portal is to open public enhancement requests for IBM Sterling products and services. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Not under consideration
Created by Guest
Created on Jan 27, 2022

Status to be returned when performing an automatic silent install

When performing an automated silent install/upgrade from the Windows command prompt, instead of the command dropping straight back to the command prompt, certain messages would be returned and at the end of the install/upgrade a return code/status would be displayed before the command ends.


This would benefit the administrators who are tasked to install/upgrade CD. Currently they have to wait and check the CD install log, when I tested this install it took approx 5 minutes to install/uninstall. I had to keep on opening the log manually and checking, when messages could be displayed and a return code/status at the end.

What is your industry? Financial Markets
How will this idea be used?

We need to upgrade all our Windows estate this year and any of them run CD. We are looking to automate the installation and if the status should be returned to the command prompt it would save time and effort in manually having to the check each CD install log. When you multiple this by 100 odd installs it adds up to a lot of extra time

  • Admin
    Chris Sanders
    Reply
    |
    Mar 25, 2022

    Thank you for opening this enhancement request with IBM. I reviewed with my team and they confirmed that it is possible to capture success/failure information for silent installs currently. You should see another note with some specifics on how to do this included as an additional comment to this RFE. Because this is already available I'll need to go ahead and decline this request, but please don't hesitate to use the RFE tool if you think of other enhancements we should consider moving forward.


    Thanks,

    Chris Sanders

    Connect:Direct Product Manager

  • Guest
    Reply
    |
    Feb 21, 2022

    This feature is already available. Append "/w /clone_wait" to the installer command line, which will tell the installer to wait for completion. A return code of 0 indicates success and no reboot is required. A return code of 3010 indicates success, but a reboot is required.

    When calling the installer from a batch file, you also need to prepend a "call", for example:

    call 6.2.0.2-IBMConnectDirectforMicrosoftWindows-x64-fp0002-if011.exe /v"REBOOT=ReallySuppress CD_SRVR_INI_FILE=C:\cd_srvr.ini /l*v CDWinInst.log /qn" /s /w /clone_wait
    if %ERRORLEVEL% equ 3010 (
    echo The installation requires a reboot. Please reboot the system as soon as poosible.
    ) else if %ERRORLEVEL% equ 0 (
    echo The installation completed successfully. No reboot required.
    ) else (
    echo The installation has failed with RC=%ERRORLEVEL%
    )