VBS to install Security Patches

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to write a Visual Basic script to automate the task of installing
security updates. I've placed the security upates that I've downloaded into
a folder called updates. The problem i see is when you launch an update you
come to the welcome screen that asks you to click next. There is then a
license screen that you put select the aggree button. And finally at the end
is the finish button with a check box to select do not restart. Is there any
way to automate updates using a script.
 
Hi George,

Thanks for posting!

It appears that this is a Development related request and would best be
addressed in the Developer newsgroups. I have provided the link below:

http://msdn.microsoft.com/newsgroups/default.asp

Or you may ask for developer support:
http://support.microsoft.com/directory/directory/phonepro.asp?sd=msdn

Thanks & Regards,

Jason Tan

Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security

=====================================================

When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.

=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| Thread-Topic: VBS to install Security Patches
| thread-index: AcVMLAoGuqXwzh39RmmPF6ORMB9hPA==
| X-WBNR-Posting-Host: 209.244.152.162
| From: "=?Utf-8?B?R2VvcmdlIFNjaG5laWRlcg==?="
<[email protected]>
| Subject: VBS to install Security Patches
| Date: Thu, 28 Apr 2005 12:54:08 -0700
| Lines: 9
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.win2000.general
| NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.win2000.general:53395
| X-Tomcat-NG: microsoft.public.win2000.general
|
| I'm trying to write a Visual Basic script to automate the task of
installing
| security updates. I've placed the security upates that I've downloaded
into
| a folder called updates. The problem i see is when you launch an update
you
| come to the welcome screen that asks you to click next. There is then a
| license screen that you put select the aggree button. And finally at the
end
| is the finish button with a check box to select do not restart. Is there
any
| way to automate updates using a script.
|
|
|
 
Hi

I am a developer & yes there is a way, but you have to remember that most
systems these days stop the use of things like VBS scripts/files from
running because of the amount of viruses etc. & what else are normally
blocked, but hotfixed because they may come up as dangerous sometimes too.

I know that my systems etc. wouldn't run any script like what you want nor
install any hotfix without my assistance because its the safest way to
nail-down the computers for safety reasons. I would think again about this.

Crouchie1998
BA (HONS) MCP MCSE
 
I would be runnign it so the security under my admin account would not
prevent such a thing.
 
Hi,

Is there a reason why you want to use VBScript? It's easy to automate hotfix
deployment with something as simple as a .cmd file, using the relevant
switches to prevent dialogues and a reboot.

e.g. Windows2000-KB873339-x86-ENU.EXE /quiet /norestart

The security bulletins for the hotfixes give details of all available
switches, or the /help switch will.

Alice
 
what I'm really trying to is have the ability to run all files in a given
folder. I download all updates to a specified folder.
 
Back
Top