KBOX agent install via GPO
Has anyone had any sucess rolling out the KBOX agent via GPO Software Installation? I'm using "KInstallerSetupSilent.msi" and have written a custom transform file which specifies my server name, SSL use, AMP over SSL. I've tested that the transform works by applying it manually.
When trying to rollout the MSI (with MST) via GPO, it just will not work correctly. It's throwing an error 1603 in the log, which is a generic "installer encountered a fatal error" message. I've doublecheck that the permissions on my distribution point are correct, checked that I'm using the ALLUSERS property correctly, but to no avail.
I've turned up MSI logging, but all I get is the message "DoAdvertiseScript is returning: 1603" and that doesn't shed any light on what's going wrong. Anyone able to do this successfully?
When trying to rollout the MSI (with MST) via GPO, it just will not work correctly. It's throwing an error 1603 in the log, which is a generic "installer encountered a fatal error" message. I've doublecheck that the permissions on my distribution point are correct, checked that I'm using the ALLUSERS property correctly, but to no avail.
I've turned up MSI logging, but all I get is the message "DoAdvertiseScript is returning: 1603" and that doesn't shed any light on what's going wrong. Anyone able to do this successfully?
0 Comments
[ + ] Show comments
Answers (4)
Please log in to answer
Posted by:
RichB
14 years ago
Here's what we use. There's a GPO applied to all Computer OU's to ensure KBOX is installed:
This works well for us to ensure all PC's have the client installed using an AD GPO.
- The GPO tells the computer to run a script at startup (Computer Configuration/Policies/Window Settings/Scripts/Startup) with a UNC path to the script. My UNC path will be different for you: \\sam\autoinstall$\KBOX\provision.cmd
- The "provision.cmd" script checks for normal pieces of KBOX and if not found installs KBOX. The script contents are included below:
@echo off
cls
echo Please wait while KBOX is installed...
if not exist "%ProgramFiles%\KACE\KBOX\KBOXClient.exe" (
goto KBOXinstall
)
if not exist "%ProgramFiles%\KACE\KBOX\KBOXManagementService.exe" (
goto KBOXinstall
)
if not exist "%ProgramFiles%\KACE\KBOX\KBOXSMMPService.exe" (
goto KBOXinstall
)
exit
:KBOXinstall
ping -n 90 -l 0 localhost 1>nul 2>nul
\\kbox\client\!install_kbox.cmd
- Our KBOX has the default name of kbox and the Samba share is turned on so the contents of the "!install_kbox.cmd" calls the standard \\kbox\client\agent_provisioning\windows\<silent kbox installer> (our KBOX is down right now or I'd include the actual script name and contents).
This works well for us to ensure all PC's have the client installed using an AD GPO.
Posted by:
KevinG
14 years ago
Posted by:
jkatkace
14 years ago
Posted by:
airwolf
14 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.