How can i do that?
Rgs,
Adao
Check this:
http://blog.augustoalvarez.com.ar/2008/12/12/wsus-30-adding-drivers-for-wsus/
Cheers
--
augusto alvarez | it professional
MCP - MCTS - MCITP DBA
http://blog.augustoalvarez.com.ar/
"adao" <ad...@discussions.microsoft.com> wrote in message
news:100833D4-ECDD-442C...@microsoft.com...
Adao
> I searched KB945674 and he does not appear in catalog.
Then its not possible to deploy the Hotfix in WSUS. You have to use a
computerstartupscript in your Active Directory.
Winfried
--
http://www.microsoft.com/germany/windowsserver2003/technologien/updateservices/default.mspx
http://www.wsuswiki.com/Home
Adao
> Thanks , can you send provide me a script example so i can adapt it and
> deploy this hotfix?
First you have to look for the Options of the Hotfix: Start > Run >
Hotfix.exe /? [ENTER]
Hotfix.bat
------------------------------------------------------
@echo off
If exist \\Server\Share\%Computername%.txt goto FINISH
\\Server\Share\Hotfix.exe /Option1 /Option2
set date=%date%
echo %date%
set time=%time%
echo %time%
echo %computername% %date% %time% > \\Server\Share\%COMPUTERNAME%.TXT
goto FINISH
:FINISH
EXIT
------------------------------------------------------
One of the Options is "Full Path to Extract", and if the path altready
exists with a file with the same name, we will prompt to confirm.
I this case i can't execute this script automatically (ex. GPO). How can i
solve this?
Adao
> One of the Options is "Full Path to Extract", and if the path altready
> exists with a file with the same name, we will prompt to confirm.
One of the options must be /silent or /unattended. Isn't it?
Adao
Is it a public Hotfix?
The syntax for the Package Installer (update.exe) is standardized, and well
documented.
Perhaps this KB article will be of some help.
http://support.microsoft.com/default.aspx/kb/810232
--
Lawrence Garvin, M.S., MCITP(x2), MCTS(x5), MCP(x7), MCBMSP
Principal/CTO, Onsite Technology Solutions, Houston, Texas
Microsoft MVP - Software Distribution (2005-2009)
MS WSUS Website: http://www.microsoft.com/wsus
My Websites: http://www.onsitechsolutions.com;
http://wsusinfo.onsitechsolutions.com
My MVP Profile: http://mvp.support.microsoft.com/profile/Lawrence.Garvin
> The syntax for the Package Installer (update.exe) is standardized, and
> well documented.
>
> Perhaps this KB article will be of some help.
Argghhh... that was not the link I intended to be posted.
Here's the correct link: http://support.microsoft.com/kb/262841
The command i used is "office2003-kb945674-glb.exe /q /t:C:\Windows\Temp"
Adao
Use only /Q for quiet.