R
robin
Hi,
Background:
a) Win2K Server, SP4 running Active Directory(domain
controller)
b) 100 Clients machines running on Win2KProf,SP4 joined
Domain.
I've written a script using WMI to extract security-logs
from each individual machines.
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate,(Security)}!
\\" & strComputer & "\root\cimv2")
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where (Logfile
= 'Security')
Question:
a) How can I implement this script to be used on all the
100 Clients without installing the script on all clients?
b) This script is to be run only once a month. Is there
anyway, thru GPO, that I can schedule a group of
computers to exec a
script only on certain days of the month?
I am thinking whther there is any scheduler that I can use
on the Server instead of configuring the Windows Schedule
Task on every clients.
Thanx
Rgds,
Robin
Background:
a) Win2K Server, SP4 running Active Directory(domain
controller)
b) 100 Clients machines running on Win2KProf,SP4 joined
Domain.
I've written a script using WMI to extract security-logs
from each individual machines.
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate,(Security)}!
\\" & strComputer & "\root\cimv2")
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where (Logfile
= 'Security')
Question:
a) How can I implement this script to be used on all the
100 Clients without installing the script on all clients?
b) This script is to be run only once a month. Is there
anyway, thru GPO, that I can schedule a group of
computers to exec a
script only on certain days of the month?
I am thinking whther there is any scheduler that I can use
on the Server instead of configuring the Windows Schedule
Task on every clients.
Thanx
Rgds,
Robin