myITforum.com Community Forum myITforum.com Community Forum

Home  Forums  Blogs  Live Support chat  Search Articles  Wiki  FAQ  Email Lists  Register  Login  My Profile  Inbox  Address Book  My Subscription  My Forums 

Photo Gallery  Member List  Search  Calendars  FAQ  Ticket List  Log Out

All Forums RSS Feed Subscription:


  


Deploying Office 2007

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
  Printable Version
All Forums >> [Management Products] >> Microsoft Systems Management Server >> SMS 2003 >> Deploying Office 2007 Page: [1]
Login
Message << Older Topic   Newer Topic >>
Deploying Office 2007 - 1/9/2008 12:22:31 PM   
vle367

 

Posts: 59
Score: 0
Joined: 1/25/2005
Status: offline
Hello all,

I am trying to run a silent install of Office 2007 via SMS to a collection of computers that I have. I ran the Office Customization Tool and created the .msp file and put that in the updates folder. I then created a package from SMS and pointed it to the setup.exe file in the Office 2007 folder...from there I created an advertisement from the package and nothing happens...from the client machine I see setup.exe being run in the task manager but does nothing. I tried going to the folder share from the client machine and running setup.exe manually and that installs office just fine...what am I doing wrong?

thanks in advance for your help.

Viet
Post #: 1
RE: Deploying Office 2007 - 1/9/2008 12:33:57 PM   
rtruss


Posts: 254
Score: 11
Joined: 11/4/2004
Status: offline
you also need to modify the config.xml file for the product you are installing.  What is currently happening (educated guess from previous installs here) is the sms installer account is being prompted for an install selection.  The config.xml file will eliminate that.  Here is an example of our proplus install and the file is located in the proplus.WW folder:


- <Configuration Product="ProPlus">

  <Display Level="basic" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
  <MinOSRequirement VersionNT="501" WindowsBuild="2600" ServicePackLevel="2" />
  <Logging Type="standard" Path="%programfiles%\Installwrapper\Microsoft\Office Enterprise 2007 Setup\Office ProPlus\" Template="Microsoft Office Professional Plus Setup(*).txt" />
  <PIDKEY Value="productkey" />
  <COMPANYNAME Value="Brunswick Corporation" />
  <ProductName Value="Microsoft Office Professional Plus 2007 for Brunswick Corporation" />
  <SOURCELIST Value="\\capsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\fdlsms4\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\jrzsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\miasar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\pansar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\sipsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\stcsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\stwsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\torsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\tulsar\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise;\\whqsms1\SMSPkgShare\SMSPKG\BIC00110\Installs\Office2007\enterprise" /> - <!-- the following section controls features and if they get installed or not   -->
f(clean);
  //this one is for Access - <!-- <OptionState Id="CalendarControl" State="absent" Children="force" />   -->
f(clean);
  //scanning,ocr,indexing
  <OptionState Id="DocumentImagingUtils" State="Local" Children="force" />
  <OptionState Id="ExcelAddinFiles" State="Local" Children="force" />
  <OptionState Id="InternationalSupportFiles_JPN" State="Local" Children="force" />
  <OptionState Id="MSOfficeDocumentImaging" State="local" Children="force" />
  <OptionState Id="ProofingTools" State="local" Children="force" />
  <OptionState Id="ONENOTEFiles" State="absent" Children="force" />   //Organization Chart Add-in for Microsoft Office programs
  <OptionState Id="OrgChartFiles" State="Local" Children="force" />   //this one is for open and new in start menu
  <OptionState Id="OsaNonBoot" State="Local" Children="force" />
  <OptionState Id="OUTLOOKFiles" State="absent" Children="force" />   //this one is for publisher
  <OptionState Id="PubPrimary" State="absent" Children="force" />   // disables the research explorer bar
  <OptionState Id="RefIEBarFiles" State="absent" Children="force" /> - <!-- <OptionState Id="VisualStudio_PreviewServer_SPD" State="absent" Children="force" />   -->
f(clean);
  //disAllows the use of Web Folders on Office-compatible Internet service providers
  <OptionState Id="WebDriveFiles" State="absent" Children="force" />
  <OptionState Id="XDOCSFiles" State="absent" Children="force" /> - <!-- <AddLanguage Id="de-de" />   -->
f(clean);
- <!-- <AddLanguage Id="en-us" ShellTransform="yes"/>   -->
f(clean);
- <!-- <AddLanguage Id="es-es" />   -->
f(clean);
- <!-- <AddLanguage Id="fr-fr" />   -->
f(clean);
- <!-- <AddLanguage Id="ja-jp" />   -->
f(clean);
- <!-- <AddLanguage Id="zh-cn" />   -->
f(clean);
- <!-- <AddLanguage Id="zh-tw" />   -->
f(clean);
- <!-- <AddLanguage Id="match" />   -->
f(clean);

  <Setting Id="SETUP_REBOOT" Value="NEVER" />   </Configuration>

(in reply to vle367)
Post #: 2
RE: Deploying Office 2007 - 1/9/2008 12:34:52 PM   
mlindsey

 

Posts: 401
Score: 2
Joined: 7/27/2004
Status: offline
What does your command line look like? This is what mine looks like and its worked great.

setup.exe /adminfile Office2007.MSP   <-- Office2007.msp of course will be whatever you named your msp file.




(in reply to vle367)
Post #: 3
RE: Deploying Office 2007 - 1/10/2008 4:02:49 AM   
danielbleyer

 

Posts: 25
Score: 0
Joined: 12/6/2007
Status: offline
Hi people,
I did exactly the same like Vle367 and the office deploy works a treat. no failures etc. I did not have to modify the config.xml file.
I am not quiet sure what the benefit of configuring that file is....if someone could clear that up for me that would be great.
Vle367 I would check the installation permissions you have set for this package. 

(in reply to mlindsey)
Post #: 4
RE: Deploying Office 2007 - 1/10/2008 8:40:16 AM   
mhudson

 

Posts: 560
Score: 12
Joined: 4/1/2007
From: College Station, TX
Status: offline
The Config.xml modifications is only necessary if you want to modify the install beyond what the OCT will allow you to change.  Like more languages or other customizations.  Most people will not have to modify it.  I deployed it with only the MSP file changes.

_____________________________

Matthew Hudson MCTS,MVP-ConfigMgr
http://sms-hints-tricks.blogspot.com/
http://www.sccm-tools.com

(in reply to danielbleyer)
Post #: 5
RE: Deploying Office 2007 - 1/10/2008 8:45:08 AM   
vle367

 

Posts: 59
Score: 0
Joined: 1/25/2005
Status: offline
danielbleyer,

where do i go to check the installation permissions?

thanks

Viet

(in reply to mhudson)
Post #: 6
RE: Deploying Office 2007 - 1/10/2008 8:45:25 AM   
rtruss


Posts: 254
Score: 11
Joined: 11/4/2004
Status: offline
we use the office 2007 enterprise version as the source and need the config.xml file to bypass the "version" selection window.  Without the xml file the install stops while it waits for user input. We also have a volume license version but if you use the specific version of office such a proplus or visio only you may not need the xml file or get the menu.

< Message edited by rtruss -- 1/10/2008 8:49:34 AM >

(in reply to mhudson)
Post #: 7
RE: Deploying Office 2007 - 1/10/2008 8:47:31 AM   
mhudson

 

Posts: 560
Score: 12
Joined: 4/1/2007
From: College Station, TX
Status: offline
You must have an OEM version of Office.  We have a Volume license so we never see that "version" selection window.

_____________________________

Matthew Hudson MCTS,MVP-ConfigMgr
http://sms-hints-tricks.blogspot.com/
http://www.sccm-tools.com

(in reply to rtruss)
Post #: 8
RE: Deploying Office 2007 - 1/16/2008 4:05:12 PM   
jm.pouliot

 

Posts: 1
Score: 0
Joined: 1/16/2008
Status: offline
how could i do the silent install of office 2007 enterprise.

actually i have the same command line as mlindsey ( setup.exe /adminfile Office2007.MSP ) but i am not able to make it silent or logging

(in reply to mhudson)
Post #: 9
RE: Deploying Office 2007 - 1/16/2008 4:07:15 PM   
rtruss


Posts: 254
Score: 11
Joined: 11/4/2004
Status: offline
see one of my previous posts with teh config.xml file data (RE: Deploying Office 2007 - 1/9/2008 11:33:57 AM   )

(in reply to jm.pouliot)
Post #: 10
RE: Deploying Office 2007 - 1/16/2008 5:04:54 PM   
mhudson

 

Posts: 560
Score: 12
Joined: 4/1/2007
From: College Station, TX
Status: offline
If you go to : "Licensing and user interface"
display level:None
Suppress modal

This will give you a silent deploy

_____________________________

Matthew Hudson MCTS,MVP-ConfigMgr
http://sms-hints-tricks.blogspot.com/
http://www.sccm-tools.com

(in reply to rtruss)
Post #: 11
RE: Deploying Office 2007 - 1/16/2008 5:17:19 PM   
rtruss


Posts: 254
Score: 11
Joined: 11/4/2004
Status: offline
I believe that only works if you are deploying a single piece of office like std or the stand alone visio or project.  Enterprise contains the entire office suite of products and I could never get it to go silent unitl I modified my specific xml file for say proplus

(in reply to mhudson)
Post #: 12
RE: Deploying Office 2007 - 1/16/2008 5:21:10 PM   
mhudson

 

Posts: 560
Score: 12
Joined: 4/1/2007
From: College Station, TX
Status: offline
Correct, I am deploying Office Enterprise, I even put SP1 in the updates folder so now I pushes the entire Office enterprise as well as the SP silently to the machine.  I never touched the XML file.

< Message edited by mhudson -- 1/17/2008 8:41:47 AM >


_____________________________

Matthew Hudson MCTS,MVP-ConfigMgr
http://sms-hints-tricks.blogspot.com/
http://www.sccm-tools.com

(in reply to rtruss)
Post #: 13
RE: Deploying Office 2007 - 1/17/2008 8:02:34 AM   
roks

 

Posts: 103
Score: 0
Joined: 9/11/2007
Status: offline
hello guys ,
                i give you a better soluation
1. just create .msp (with user setup.exe /admin command) and put in office 2007 forder as custom.msp
2. modify custom.xml file(<Display Level="None" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> -->)  and save as custom-Au.xml and put in main office 2007 folder
3.create package and user command is (setup.exe /config  custom-Au.xml /adminfile custom.msp)
i'm sure it is work. if it is not work please delete your office 2007 folder and again past and after that create msp and configure .xml file. Coz some time some office file has currapt when u r doing R&D
  
roks

(in reply to mhudson)
Post #: 14
RE: Deploying Office 2007 - 1/17/2008 8:33:32 AM   
gerthc

 

Posts: 11
Score: 0
Joined: 12/3/2007
Status: offline
In my testing for this deployment I've seen some of the issues others in here have.

1.) Make sure all of your updates or SP1 are already in the extracted MSI form in the updates folder.  If it's in the .exe format it will hang the installation (and will error out if you have a max.  run time setup).  I do not have anything extra in my command line except setup.exe.  The setup will automatically install anything in the updates folder.

2.) Make sure the run: option is set to hidden if you want a silent install and for it to install automatically.

If you are updating from office 2003 -> 2007 it will require a reboot at the end (with no notification).

(in reply to roks)
Post #: 15
RE: Deploying Office 2007 - 1/18/2008 12:27:12 AM   
roks

 

Posts: 103
Score: 0
Joined: 9/11/2007
Status: offline
one more thing u will care
1. Windows installaer 3.0 has install before run office 2007 silently

(in reply to gerthc)
Post #: 16
Page:   [1]
All Forums >> [Management Products] >> Microsoft Systems Management Server >> SMS 2003 >> Deploying Office 2007 Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts



  
Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

0.875