cancel
Showing results for 
Search instead for 
Did you mean: 

saplogon.ini services files NOT copying over durring PACKAGE INSTALL

Former Member
0 Kudos

I have an server sdmin install that ive put together and created a package. its fully patched server. In the scripts area ive placed the script that was in the chm file to copy over a private logon.ini and services file in the "ON END INSTALL" section of the package..

The issue is that it does not copy over the files that are listed in the customerfiles folder that I have.

the user on the machines have admin rights to the machine so I dont think its a rights issue. any idea out there for me ?

this is SAG gui 7.10 patch 2.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

This is the script I use when deploying a package.

ON END INSTALL

NwEngine.Context.Log.Write "Event: Copying customized saplogon.ini"

If NwEngine.Shell.FileExist("%SAPSrcDir%\ConfigurationFiles\saplogon.ini") Then

NwEngine.Shell.CopyFile "%SAPSrcDir%\ConfigurationFiles\saplogon.ini", "%WinDir%\saplogon.ini"

End If

Basically I have installed my SAP installation server to a share SAPINST$ the \ConfigurationFiles\ folder is within the SAPSrcDir (SAPINST$\ConfigurationFiles\).

Hope this helps?

Stu

Former Member
0 Kudos

Jared,

Check the security permissions and attributes on the folder. We had to change them to copy the file into the WINDIR due to our security baselines. We saw more problems with updating the services file. We put the TCP/IP ports in the INI file so we didn't have to mess with the services file.

John