Jump to content


  • 0
peggyp

add computer to collection log

Question

quick question,

 

I am logged in as 'admin' to sccm console. I have an approved client 'a' in sccm. it shows in the all systems collection. Then i add it to collection 'b' by right-clicking and clicking on add to collection.

 

is there any entry in any of the logs that 'admin' has added 'a' into collection 'b'?

 

TIA,

peggy

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Hi Peggy,

 

I'm not sure that, that level of detail is logged anywhere in ConfigMgr. You can subscribe for change events using the ConfigMgr WMI provider, but you still probably won't be able to know exactly who made the change.

 

Here is a PowerShell module that will help you subscribe for and respond to WMI events, such as ConfigMgr collection change events.

 

http://powerevents.codeplex.com

 

Cheers,

Trevor Sullivan

http://trevorsullivan.net

http://twitter.com/pcgeek86

Share this post


Link to post
Share on other sites

  • 0

Maybe this will help you. I'm using this query to see who made changes on collections. You can see the collection name, user name and the time of the change, but not exactly which action was performed. This level of logging would burst your database.

Here is the query.

 

select stat.*, ins.*, att1.*, stat.Time from SMS_StatusMessage as stat left join SMS_StatMsgInsStrings as ins on stat.RecordID = ins.RecordID left join SMS_StatMsgAttributes as att1 on stat.RecordID = att1.RecordID where stat.MessageType = 768 and stat.MessageID >= 30015 and stat.MessageID <= 30017 and stat.Time >= ##PRM:SMS_StatusMessage.Time## order by stat.Time desc

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.