Package install error (Toshiba NetPhone)
I am create a package on sccm 2007 and try to deploy using switch
Toshiba_NetPhone_V6.4.4.0_Setup.exe /s /v /qn /L %SystemRoot%\Toshiba_NetPhone_V6.4.4.0_Setup.exe.log
this switch i creat as bat file or if i run as switch in program same result
it does copy on cash but when is try to install give error is failed and al so does not create log file
and when i run manuel same command on client pc it work
please help
thank you
Answers (4)
some how it never create log file and is no DP only one center server and on execmgr.log it just get error is failed. but it copy the package in cash and i run same command it works but not when i deploy from SCCM.. and i am not very good on script.
the guy ust to work he use AD to inst all NetPhone and he write this script
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.4.0
Author: D.Pirl
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
$SourceDir = "Servername\folder\NetPhone\6.4.4.0\Source""
$InstallKey = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TOSHIBA Net Phone"
$DisplayName = RegRead($InstallKey, "DisplayName")
If $DisplayName = "TOSHIBA Net Phone" Then Exit
SplashTextOn("Install", "Installing NetPhone 6.4.4.0...", 250, 50, -1, -1, 33, "", 10, 500)
Run($SourceDir & "\Toshiba_NetPhone_V6.4.4.0_Setup.exe /s", @SystemDir, @SW_HIDE)
WinWait("Net Server TSP Configuration", "Use Remote Access Port")
WinActivate("Net Server TSP Configuration", "Use Remote Access Port")
Send("{TAB 7}{ENTER}")
WinWait("Install", "This system must be restarted")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\computer telephony solutions\eServer\Client", "Server", "REG_SZ", "marinipa-netphone-1")
Do
Sleep(1000)
Until FileExists(@StartMenuCommonDir & "\Programs\Toshiba\Net Phone\Net Phone.lnk")
FileCopy(@StartMenuCommonDir & "\Programs\Toshiba\Net Phone\Net Phone.lnk", @StartMenuCommonDir & "\Department Applications\Net Phone.lnk")
Send("{ENTER}")
if some one can help me on this scrpt that will be good my path is
\\Server Name\Folder Name\NetPhone\NetPhone_SCCM
This is almost certainly a function of being run under the local System account. Or not! How is your package set up in SCCM? To install as admin or user?
Comments:
-
What do the SCCM logs say? Noob question, you did disto the package to the DP's didnt you? - rileyz 11 years ago