cancel
Showing results for 
Search instead for 
Did you mean: 

What is the best way to update client's GUI from SAP Gui Server ?

Former Member
0 Kudos

Hello to ALL !

What is the best way to update client's GUI from SAP Gui Server ? I installed gui server and make the package.

I am looking for the best way to mass update GUI on client machines.

I am trying to use group policy logon script (to run my \Setup\NWSAPSETUP.exe /silent /package: "PACKAGENAME"),

but I have some problems, such as:

- I can't run the logon script only once. Otherwise users will update their GUI every time when they are login.

- if I call cmd file there are cmd windows appearing on the screen. If user close it - update will not complete.

If I use two cmd file (one calls the second like start /min GUI_UPDATE.CMD) it didn't work like logon script,

it works only if I start it manually in Windows, maybe due of UNC Path.

So I though there can be another way to update the client's GUI. How do you do this operation ? Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

Sriram2009
Active Contributor
0 Kudos

Hi

Kindly follow the steps

Create the windows share folder  & copy the all SAPGUI installation media on the Share.

before starting the package creation map the network share driver letter S:

1. From the S: create the package based on your requirement 

2  Create a .CMD or .Bat file,

3. Uninstall the exiting version by using the command "nwsapsetup /uninstall /all /nodlg"

4. If it is require rename the folder under the program file\SAP

5. Install the new by package creation

Kindly follow the script .CMD file which we deployed more then 2000 clients by SCCM & ADS

_________________________

cd\

c:

# Kill the SAPGUI active in end user system

taskkill /IM saplogon.exe /F

taskkill /IM saplgpad.exe /F


# Uninstall the exiting version SAPGUI 7.20 or 7.10

cd Program Files (x86)\SAP\SapSetup\setup

nwsapsetup /uninstall /all /nodlg

# Rename the exiting folder & map the network drive

cd\

cd Program Files (x86)\SAP

move FrontEnd old1_FrontEnd3

net use s: /delete

net use s: \\server name\share name


# Install the new version slient mode

S:\sapgui\NW_7.0_Presentation_\PRES1\GUI\WINDOWS\WIN32\Setup\NwSapSetup.exe /Silent /Package="SAPGUI730"

______________________________________________________________________

Regards

Sriram

Answers (0)