Word :    Username :           
 

Archived from groups: microsoft.public.win2000.general (More info?)

 

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.

Sponsored Links
Register or log in to remove.

Archived from groups: microsoft.public.win2000.general (More info?)

 

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/direc [...] sp?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==?="
<georgedschneider@news.postalias>
| Subject: VBS to install Security Patches
| Date: Thu, 28 Apr 2005 12:54:08 -0700
| Lines: 9
| Message-ID: <E36C541A-055A-4F46-83AE-7A5C827268AD@microsoft.com>
| 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.
|
|
|

Reply to Anonymous

Archived from groups: microsoft.public.win2000.general (More info?)

 

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

Reply to Anonymous

Archived from groups: microsoft.public.win2000.general (More info?)

 

I would be runnign it so the security under my admin account would not
prevent such a thing.

"Crouchie1998" wrote:

> 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
>
>
>

Reply to Anonymous
- 0 +

Archived from groups: microsoft.public.win2000.general (More info?)

 

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

"George Schneider" wrote:

> I would be runnign it so the security under my admin account would not
> prevent such a thing.
>
> "Crouchie1998" wrote:
>
> > 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
> >
> >
> >

Reply to alice

Archived from groups: microsoft.public.win2000.general (More info?)

 

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.

"Alice" wrote:

> 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
>
> "George Schneider" wrote:
>
> > I would be runnign it so the security under my admin account would not
> > prevent such a thing.
> >
> > "Crouchie1998" wrote:
> >
> > > 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
> > >
> > >
> > >

Reply to Anonymous
Tom's Hardware > Forum > Windows 2000/NT > Windows 2000/NT General Discussion > VBS to install Security Patches
Go to:

There are 1357 identified and unidentified users. To see the list of identified users, Click here.

Please mind

You are about to answer a thread that has been inactive for more than 6 months.
If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.

Add a reply Cancel
Sponsored links
  • Ask the community now
  • Publish
Ad
They won a badge
Join us in greeting them