Principales respuestas
Como instalar office 2007 mediante gpo en windows server 2008

Pregunta
-
Hola a todos por favor necesito su ayuda soy nuevo en esto, necesito instalar micrsoft office 2007 a todos los usuarios de active directory he estado intentando pero ningún resultado alguno. Me sale con otros programas como x ejemplo: firefox. Por favor necesito su ayuda. como instalo??
Muchas gracias de antemano
- Cambiado Guillermo Delprato []Moderator lunes, 5 de septiembre de 2011 11:12 (De:Directorio activo)
Respuestas
-
Hola, te recomiendo leas este link: http://blogs.technet.com/b/office_resource_kit/archive/2008/06/06/how-to-deploy-office-2007-by-using-group-policy-to-assign-startup-scripts.aspx
Más info sobre el script http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Q_24223249.html
http://technet.microsoft.com/en-us/library/cc179134(office.12).aspx
Salu2!, Dani Gracia - Madrid España MCSA/MCSE 2003 Security
MCITP: Enterprise Administrator (Windows Server 2008)
MCTS: System Center Operations Manager 2005
MAP: Microsoft Active Professional (2010/2011)
MCC Microsoft Community Contributor 2011
- Propuesto como respuesta Ismael Borche viernes, 2 de septiembre de 2011 15:02
- Marcado como respuesta Ismael Borche lunes, 5 de septiembre de 2011 19:25
Todas las respuestas
-
Hola, te recomiendo leas este link: http://blogs.technet.com/b/office_resource_kit/archive/2008/06/06/how-to-deploy-office-2007-by-using-group-policy-to-assign-startup-scripts.aspx
Más info sobre el script http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Q_24223249.html
http://technet.microsoft.com/en-us/library/cc179134(office.12).aspx
Salu2!, Dani Gracia - Madrid España MCSA/MCSE 2003 Security
MCITP: Enterprise Administrator (Windows Server 2008)
MCTS: System Center Operations Manager 2005
MAP: Microsoft Active Professional (2010/2011)
MCC Microsoft Community Contributor 2011
- Propuesto como respuesta Ismael Borche viernes, 2 de septiembre de 2011 15:02
- Marcado como respuesta Ismael Borche lunes, 5 de septiembre de 2011 19:25
-
-
Sobre la buena sugerencia anterior te adjunto este articulo visual.
http://www.aprendeinformaticaconmigo.com/windows-server-2008-crear-un-punto-de-distribucion-de-software-sdp
Si tu red , incluye una WAN , es muy importante que consideres en tema , puesto que es recomendable la utilización
de repositorios , por cada uno de los sitios que conforman la WAN , es mas administración , pero no castigaras los
vínculos. saludos
Saludos Jorge Colobora con el foro: Si la respuesta es de utilidad para resolver tu duda/problema, usa la opción "Marcar como repuesta". Otros usuarios con dudas similares -en un futuro- lo agradecerán. -
-
-
Buenas, Ivándaniel.
Mira a ver si te sirve este: http://www.youtube.com/user/Heinekenarg?blend=1&ob=5#p/u/0/ax-WERzxzgs
Saludos.
Oscar Abad -- MCITP Enterprise Administrator // MCITP Server Administrator http;//www.aprendeinformaticaconmigo.com http://www.serverswin.com -
Amigos muchas gracias por toda su ayuda brindada, como les dije al inicio soy nuevo en esto. Por favor me podrían indicar que parte del script modifico con los datos de mi server por fa:
setlocal
REM *********************************************************************
REM Environment customization begins here. Modify variables below.
REM *********************************************************************REM Get ProductName from the Office product's core Setup.xml file, and then add "office14." as a prefix.
set ProductName=Office14.PROPLUSREM Set DeployServer to a network-accessible location containing the Office source files.
set DeployServer=\\FS\Office2010SourceFilesREM Set ConfigFile to the configuration file to be used for deployment (required)
set ConfigFile=\\FS\Office2010SourceFiles\ProPlus.WW\config.xmlREM Set LogLocation to a central directory to collect log files.
set LogLocation=\\FS\Office2010LogFilesREM *********************************************************************
REM Deployment code begins here. Do not modify anything below this line.
REM *********************************************************************IF NOT "%ProgramFiles(x86)%"=="" (goto ARP64) else (goto ARP86)
REM Operating system is X64. Check for 32 bit Office in emulated Wow6432 uninstall key
:ARP64
reg query HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432NODE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%
if NOT %errorlevel%==1 (goto End)REM Check for 32 and 64 bit versions of Office 2010 in regular uninstall key.(Office 64bit would also appear here on a 64bit OS)
:ARP86
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%
if %errorlevel%==1 (goto DeployOffice) else (goto End)REM If 1 returned, the product was not found. Run setup here.
:DeployOffice
start /wait %DeployServer%\setup.exe /config %ConfigFile%
echo %date% %time% Setup ended with error code %errorlevel%. >> %LogLocation%\%computername%.txtREM If 0 or other was returned, the product was found or another error occurred. Do nothing.
:EndEndlocal
Iván Daniel -