RE: [OT] SUS keep logs of client installs?

  • From: Jim Harrison <jim@xxxxxxxxxxxx>
  • To: "[ISAserver.org Discussion List]" <isalist@xxxxxxxxxxxxx>
  • Date: Wed, 24 Sep 2003 21:48:39 -0700

No sweat; I'm glad I can hit these walls forst so others don't have to...

  Jim Harrison
  MCP(NT4, W2K), A+, Network+, PCG
  http://isaserver.org/Jim_Harrison/
  http://isatools.org
  Read the help / books / articles!


On Wed, 24 Sep 2003 12:29:53 -0700
 "cismic" <cismic@xxxxxxx> wrote:
http://www.ISAserver.org


Hi Jim,

That is true.  Lots of times for what ever reason this call does return
incorrect information. But, still I'm 
Glad that we have some of these features to at least be on top of things
faster!

Thanks dude,

Joseph

-----Original Message-----
From: Jim Harrison [mailto:jim@xxxxxxxxxxxx] 
Sent: Wednesday, September 24, 2003 6:08 AM
To: [ISAserver.org Discussion List]
Subject: [isalist] RE: [OT] SUS keep logs of client installs?


http://www.ISAserver.org


That's very true (ISAInfo uses this type of call to enumerate the OS
hotfixes). Unfortunately, what's also true is that you'll very often get
incomplete data from the "Win32_QuickFixEngineering" class calls.  It's
intermittent and it's frustrating.

I'll be changing this function to use direct registry reads (the same
thing the "Win32_QuickFixEngineering" class does).

  Jim Harrison
  MCP(NT4, W2K), A+, Network+, PCG
  http://isaserver.org/Jim_Harrison/
  http://isatools.org
  Read the help / books / articles!


On Tue, 23 Sep 2003 20:35:42 -0700
 "cismic" <cismic@xxxxxxx> wrote:
http://www.ISAserver.org


Hi All,

If using WMI, you can read the work stations daily and store that
information in a database. 
WMI can be used via this type of call:
Function ComputerNameB()
   
Set getComputer = CreateObject("WScript.Shell")
ComputerName = getComputer.ExpandEnvironmentStrings("%COMPUTERNAME%") 
set getComputer = Nothing


winmgmt2 = "winmgmts:{impersonationLevel=impersonate}!//"& ComputerName
&"" Set QFESet = GetObject( winmgmt2 ).InstancesOf
("Win32_QuickFixEngineering")

End Function
 
wscript.echo("----------------------------------------------------------
----------------------")
        WScript.Echo "The following HotFixes have been applied:"
 
wscript.echo("----------------------------------------------------------
----------------------")

For each QFE in QFESet
        WScript.Echo QFE.HotFixID & " " & QFE.Description
        WScript.Echo "
http://support.microsoft.com/default.aspx?scid=kb;EN-US;"; & QFE.HotFixID
next
 
wscript.echo("----------------------------------------------------------
----------------------")

What the link does is give you a quick way to track back to the Kb and
read what has been listed.

I'm building an sql table and will populate the information via sql
calls.  If done right this will Enhance any 3rd party computer asset
management system.

Thank you,

Joseph

-----Original Message-----
From: Amy Babinchak [mailto:Amy@xxxxxxxxxxxxxxxxxxxxxxxxxx] 
Sent: Tuesday, September 23, 2003 5:36 AM
To: [ISAserver.org Discussion List]
Subject: [isalist] RE: [OT] SUS keep logs of client installs?


http://www.ISAserver.org



IIS also keeps tracks of it but the log isn?t as easy to read as the log
on the workstations. I recently asked the same question on the Microsoft
Partner Newsgroup for Windows 2000 and was told that it would be a good
idea to submit the idea for a product enhancement. I?m going to do so,
you may want to also. I?m sure that more than one request for the same
thing gets more attention. Here is the information:

 

?This is a great idea for a future product enhancement. I'd recommend
that you forward the recommendation to the 
Microsoft Wish Program:
 
Microsoft offers several ways for you to send comments or suggestions
about Microsoft products. If you have suggestions for product
enhancements that you would like to see in future versions of Microsoft
products, please contact us using one of the methods listed later in
this article. 
 
Let us know how we can improve our products. 
 
Product Enhancement suggestions can include: 
 
¡¤Improvements on existing products. 
 
¡¤Suggestions for additional features. 
 
¡¤Ways to make products easier to use. 
 
All product enhancement suggestions received become the sole property of
Microsoft. Should a suggestion be implemented, Microsoft is under no
obligation to provide compensation. 
 
World Wide Web - To send a comment or suggestion via the Web, use one of

the following methods: 
 
¡¤In Internet Explorer 6, click Send Feedback on the Help menu and then 
click the link in the Product Suggestion section of the page that
appears. 
 
¡¤In Windows XP, click Help and Support on the Start menu. Click Send
your 
feedback to Microsoft, and then fill out the Product Suggestion page
that 
appears. 
 
¡¤Visit the following Microsoft Web site: 
 
http://www.microsoft.com/ms.htm 
 
¡¤Click Microsoft.com Guide in the upper-right corner of the page and
then 
click Contact Us . Click the link in the Product Suggestion section of
the 
page that appears. 
 
¡¤Visit the following Microsoft Product Feedback Web site 
 
http://register.microsoft.com/mswish/suggestion.asp 
 
and then complete and submit the form. 
 
E-mail - To send comments or suggestions via e-mail, use the following 
Microsoft Wish Program e-mail address, mswish@xxxxxxxxxxxxxx
 
FAX - To send comments or suggestions via FAX, use the following
Microsoft 
FAX number, (425) 936-7329.
 
NOTE Address the FAX to the attention of the Microsoft Wish Program. 
 
US Mail - To send comments or suggestions via US Mail, use the following

Microsoft mailing address: 
 
Microsoft Corporation 
 
Attn. Microsoft Wish Program 
 
One Microsoft Way 
 
Redmond, WA 98052-6399 
 
MORE INFORMATION
 
Each product suggestion is read by a member of our product feedback
team, 
classified for easy access, and routed to the product or service team to

drive Microsoft product and/or service improvements. Because we receive
an 
abundance of suggestions (over 69,000 suggestions a year!) we can't 
guarantee that each request makes it into a final product or service.
But 
we can tell you that each suggestion has been received and is being 
reviewed by the team that is most capable of addressing it. 
 
All product or service suggestions received become the sole property of 
Microsoft. Should a suggestion be implemented, Microsoft is under no 
obligation to provide compensation. 

 

 

Amy 

 

-----Original Message-----
From: William Robertson [mailto:robertson.william@xxxxxxxxxxxxxx] 
Sent: Tuesday, September 23, 2003 3:46 AM
To: [ISAserver.org Discussion List]
Subject: [isalist] [OT] SUS keep logs of client installs?

 

http://www.ISAserver.org

Hi there

 

Slightly off topic, I know, but everyone here seems to be quite well
versed with SUS SP1 so I would appreciate some info:

 

-          Can SUS be configured to keep record of which
patches/hotfixes etc have been delivered to which workstations at which
time?

 

It would be nice to have such a logfile so that one can keep track of
what your clients are doing. BTW, I know that the %systemroot%\windows
update.log keeps track of each client?s respective installation history,
but this file is generated on each individual workstation and not
centralised on the server (as far as I can tell).

 

Cheers

William R.

 

 

 
---------------------------------------------------------------------
Everything in this e-mail and attachments relating to the official 
business of Columbus Stainless is proprietary to the company. It is 
confidential, legally privileged and protected by law. Columbus 
Stainless does not own and endorse any other content. Views and 
opinions are those of the sender unless clearly stated as being that 
of Columbus Stainless. The person addressed in the e-mail is the sole 
authorised recipient.  Please notify the sender immediately if it has 
unintentionally reached you and do not read, disclose or use the 
content in any way. Whilst all reasonable steps are taken to ensure 
the accuracy and integrity of information and data transmitted 
electronically and to preserve the confidentiality thereof, no 
liability or responsibility whatsoever is accepted if information or 
data is,for whatever reason, corrupted or does not reach its intended
destination.
---------------------------------------------------------------------


------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
Leading Network Software Directory: http://www.serverfiles.com No.1
Exchange Server Resource Site: http://www.msexchange.org Windows
Security Resource Site: http://www.windowsecurity.com/ Network Security
Library: http://www.secinf.net/ Windows 2000/NT Fax Solutions:
http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
amy@xxxxxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send a blank email to
$subst('Email.Unsub') 

------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
Leading Network Software Directory: http://www.serverfiles.com No.1
Exchange Server Resource Site: http://www.msexchange.org Windows
Security Resource Site: http://www.windowsecurity.com/ Network Security
Library: http://www.secinf.net/ Windows 2000/NT Fax Solutions:
http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
cismic@xxxxxxx To unsubscribe send a blank email to
$subst('Email.Unsub') 


------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
Leading Network Software Directory: http://www.serverfiles.com No.1
Exchange Server Resource Site: http://www.msexchange.org Windows
Security Resource Site: http://www.windowsecurity.com/ Network Security
Library: http://www.secinf.net/ Windows 2000/NT Fax Solutions:
http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
jim@xxxxxxxxxxxx To unsubscribe send a blank email to
$subst('Email.Unsub')

^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*

All mail from this domain is virus-scanned with RAV.
www.ravantivirus.com

^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*


------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
Leading Network Software Directory: http://www.serverfiles.com No.1
Exchange Server Resource Site: http://www.msexchange.org Windows
Security Resource Site: http://www.windowsecurity.com/ Network Security
Library: http://www.secinf.net/ Windows 2000/NT Fax Solutions:
http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
cismic@xxxxxxx To unsubscribe send a blank email to
$subst('Email.Unsub')


------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
Leading Network Software Directory: http://www.serverfiles.com
No.1 Exchange Server Resource Site: http://www.msexchange.org
Windows Security Resource Site: http://www.windowsecurity.com/
Network Security Library: http://www.secinf.net/
Windows 2000/NT Fax Solutions: http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as: 
jim@xxxxxxxxxxxx
To unsubscribe send a blank email to $subst('Email.Unsub')

^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*

All mail from this domain is virus-scanned with RAV.
www.ravantivirus.com

^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*^*



Other related posts: