cancel
Showing results for 
Search instead for 
Did you mean: 

Getting Number of Terminals Installed From GUI Installation Server

Former Member
0 Kudos

Hi,

I'm deploying SAPGUI 7.30 to user through Installation Server.

May I know is it possible to get the total number of terminals that have been installed with SAPGUI 7.30 from the installation server?

Thank you.


Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

I would like to get a listing of all the computers that have been installed with SAPGUI 7.30.

For eg, computer A, computer B -> SAPGUI 7.30

computer C, computer D -> SAPGUI 7.10


Sriram2009
Active Contributor
0 Kudos

Hi

Its not require to know the computer names.

1. Create the installation package with shared folder ( For eg: you going to select the drive letter s: then the package create has to start in the same drive letter)

2. Create the BAT or CMD file what i am mention.

3. Just a execute the BAT or CMD file any one of the test system, Once every thing are ok then you can start delpoy all the computers by using the SCCM or ADS startup scripts

Regards

Sriram

Sriram2009
Active Contributor
0 Kudos
Former Member
0 Kudos

Hi Sriram,

My question is not "How to Deploy SAPGUI 7.30 through Installation Server".

My question is "how to find out how many computers that have been installed with SAPGUI 7.30 from the Installation Server".

Thank you.

Sriram2009
Active Contributor
0 Kudos

Hi

Kindly create a BAT or CMD file as mention below scripts

______________________________________________________________________________

cd\

c:

# kill the all SAPGUI active logon on client desktop

taskkill /IM saplogon.exe /F

taskkill /IM saplgpad.exe /F

# Uninstallation command existing one

cd Program Files\sap\SapSetup\setup

nwsapsetup /uninstall /all /nodlg

cd\

# Rename the old installation folder

cd program files\sap

move FrontEnd old_FrontEnd

# Map the network drive where you are created the share in that you might have created the #SAPGUI installation package as already mention in my communication

net use s: /delete

net use s: \\(Server host where you are created the installation package)\( Share name eg: sapgui720)

# Start the new installation

S:\SAPGUI720\NW_7.0_Presentation\PRES1\GUI\WINDOWS\WIN32\Setup\NwSapSetup.exe /Silent /Product="SAPGUI710"

# once the installation are completed disconnect the map the Drive

net use s: /delete

_____________________________________________________________________________

Regards

Sriram