Office 2010 Deployment
Hello,
I precede this by saying I am very new at Kace so please bear with me. I am attempting a package deployment of Office 2010. I have:
1. Run the Setup /Admin, made my config changes and saved the MSP file to both the root of the executables and in the Updates folder (as some posts suggested that).
2. Zipped it all up not from the folder level, but the root files level.
3. Verified the Zip opens on several computers
4. Created the distribution with several different command lines:
setup.exe /adminfile custom.msp
"setup.exe" /adminfile "custom.msp"
"setup.exe /adminfile custom.msp"
"setup.exe" /adminfile "Updates\custom.msp"
5. I have applied the distribution to a single test computer with the latest agent.
When I monitor the event log of the target computer, upon attempt to do the deployment, I get an Error Event for KBOX Client with this message:
Exception Type: System Exception
Message: Package download failure, or missing 'full command' if MI is a .zip file
TargetSite: NULL
HelpLink: NULL
Source: NULL
Any help would be welcome and appreciated.
Thanks
Kev
I precede this by saying I am very new at Kace so please bear with me. I am attempting a package deployment of Office 2010. I have:
1. Run the Setup /Admin, made my config changes and saved the MSP file to both the root of the executables and in the Updates folder (as some posts suggested that).
2. Zipped it all up not from the folder level, but the root files level.
3. Verified the Zip opens on several computers
4. Created the distribution with several different command lines:
setup.exe /adminfile custom.msp
"setup.exe" /adminfile "custom.msp"
"setup.exe /adminfile custom.msp"
"setup.exe" /adminfile "Updates\custom.msp"
5. I have applied the distribution to a single test computer with the latest agent.
When I monitor the event log of the target computer, upon attempt to do the deployment, I get an Error Event for KBOX Client with this message:
Exception Type: System Exception
Message: Package download failure, or missing 'full command' if MI is a .zip file
TargetSite: NULL
HelpLink: NULL
Source: NULL
Any help would be welcome and appreciated.
Thanks
Kev
0 Comments
[ + ] Show comments
Answers (8)
Please log in to answer
Posted by:
craig.thatcher
13 years ago
for what it's worth this is how we got it to run. The config.xml file was placed in the root of the zip file along with the setup.exe to to get it to run.
Comments:
-
Thanks, Craig. Those 2 config.xml tips helped my to get Office 2010 deployed - rockhead44 11 years ago
Posted by:
nshah
13 years ago
Posted by:
KBUNE
13 years ago
Posted by:
lgeier
13 years ago
I have a deployment for Office 2007 the same way you have your 2010.
My command line reads:
"setup.exe" /adminfile "silent.msp"
Two things to look at. Try putting the .msp file in the same directory as setup.exe and make sure the "Don't Prepend msiexec.exe:" is checked. This will cause an invalid command to be issued
My command line reads:
"setup.exe" /adminfile "silent.msp"
Two things to look at. Try putting the .msp file in the same directory as setup.exe and make sure the "Don't Prepend msiexec.exe:" is checked. This will cause an invalid command to be issued
Posted by:
mlathrop
13 years ago
Posted by:
KevinG
13 years ago
Posted by:
snissen
13 years ago
Two notes:
1. .MSP files, whether created by the Office Customization Wizard or something else (like a service pack), do not have to be on the command line, as long as you put them in the Updates subdirectory of the main Office directory. Any .msp in that Updates folder is run automatically, in alphabetical order. So, if you have two .MSP files in the Updates subdirectory, you might rename them 1Custom.msp and 2ServicePack.msp, then just run setup.exe from the parent directory. By leaving these off the command line, you may solve the referencing problem.
2. When Windows installers use auxiliary files, I often find I have to use a full path name, especially with KBOX-based installs. Sometimes it can be a relative path name like ..\1file.txt, and sometimes it needs to be an absolute path name like "$(KACE_DEPENDENCY_DIR)\1file.txt". With Office 2010, I use the /config parameter from a batch file, and if I'm remembering correctly, I used a relative path name, something like this:
setup.exe /config ProPlus.WW\config.xml
If you need to use the KACE variables inside a batch file, you can pass them in like this:
MI command configured manually: batch.bat "$(KACE_DEPENDENCY_DIR)"
In the batch.bat file: %1\setup.exe /config %1\ProPlus.WW\config.xml
(Though the quotation marks in the fully resolved path name are in the wrong place, this still seems to work.) Sande
1. .MSP files, whether created by the Office Customization Wizard or something else (like a service pack), do not have to be on the command line, as long as you put them in the Updates subdirectory of the main Office directory. Any .msp in that Updates folder is run automatically, in alphabetical order. So, if you have two .MSP files in the Updates subdirectory, you might rename them 1Custom.msp and 2ServicePack.msp, then just run setup.exe from the parent directory. By leaving these off the command line, you may solve the referencing problem.
2. When Windows installers use auxiliary files, I often find I have to use a full path name, especially with KBOX-based installs. Sometimes it can be a relative path name like ..\1file.txt, and sometimes it needs to be an absolute path name like "$(KACE_DEPENDENCY_DIR)\1file.txt". With Office 2010, I use the /config parameter from a batch file, and if I'm remembering correctly, I used a relative path name, something like this:
setup.exe /config ProPlus.WW\config.xml
If you need to use the KACE variables inside a batch file, you can pass them in like this:
MI command configured manually: batch.bat "$(KACE_DEPENDENCY_DIR)"
In the batch.bat file: %1\setup.exe /config %1\ProPlus.WW\config.xml
(Though the quotation marks in the fully resolved path name are in the wrong place, this still seems to work.) Sande
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.