Help Me - Install Office KB by script LogOn
Hello people,
I need to install an Office KB (New Orthographic Agreement) on all computers in your organization.
Someone help me build the install script?
1) Validate that the KB has been installed.
2) Installation of KB with administrator permissions.
Tnhks
I need to install an Office KB (New Orthographic Agreement) on all computers in your organization.
Someone help me build the install script?
1) Validate that the KB has been installed.
2) Installation of KB with administrator permissions.
Tnhks
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
Arminius
13 years ago
I'll save the senior members on this forum some time and post what they normally would:
People here are happy to help, but you need to help yourself first. Do some research, get some results, and come back with what you find. Very few of the subscribers here want to do your work for you, but they're very willing to help when you run into trouble.
People here are happy to help, but you need to help yourself first. Do some research, get some results, and come back with what you find. Very few of the subscribers here want to do your work for you, but they're very willing to help when you run into trouble.
Posted by:
pestevens
13 years ago
Ok, my fault. I apologize.
Do not put all the information already collected.
Work already done:
Step 1 - Converting exe file to msp.
Step 2 - I created a small scirpt to identify whether the registry key already exists on the machine is made ​​if there is the installation process.
(not sure if the method is more accurate)
Missing - here is what I ask for help
Step 3 - Change the script so that the installation is done with administrator privileges.
Step 4 - Cofigure KB GPO to deploy (this task is simple for me)
Thank you.
Do not put all the information already collected.
Work already done:
Step 1 - Converting exe file to msp.
Step 2 - I created a small scirpt to identify whether the registry key already exists on the machine is made ​​if there is the installation process.
(not sure if the method is more accurate)
setlocal
reg query HKEY_CLASSES_ROOT\Installer\Patches\FB1ACD618B4BD4E569AFBE52534AA394
if %errorlevel%==1 (goto Patches) else (goto End)
REM If 1 returned, the patch is not installed. Install the patch here.
:Patches
"%windir%\system32\msiexec.exe" /p \\srv-001-011\software\Acordo_Ortografico_office2007\proof-pt-pt.msp /qn
REM If 0 or other was returned, the patch is already installed. Do nothing.
:End
Endlocal
Missing - here is what I ask for help
Step 3 - Change the script so that the installation is done with administrator privileges.
Step 4 - Cofigure KB GPO to deploy (this task is simple for me)
Thank you.
Posted by:
anonymous_9363
13 years ago
If you're using GP, I'd create an AIP with the original product, patch the AIP then deploy as a new GP object with a new group as its scope so that you can pilot-test it first to a restricted audience.
If you're daft enough to want to walk the domain patching individual PCs, you'd probably want to use PSExec in a loop, looping through a list of machines. That, though, is a route for serious masochists only.
If you're daft enough to want to walk the domain patching individual PCs, you'd probably want to use PSExec in a loop, looping through a list of machines. That, though, is a route for serious masochists only.
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.