Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

Faster New Device Management

Updated: 06 Aug 2007 | 1 comment
robertser's picture
+1 1 Vote
Login to vote

When new computers are placed into Altiris it may take up to 24 hours for the system to get all of its patches and inventories completed. This is usally due to collection update times and long configuration update times (6+ hours).

There is an easy way to speed this whole process up and not effect the overall performance of your NS.

  1. Create a collection called "Computers Discovered 48 hours". Using the SQL code below it will contain PCs that are discovered in the last 48 hours.

    SQL Code:

    SELECT vr.guid    
    FROM vresource vr     
    join vComputer vc on vr.guid=vc.guid   
    join item i on vr.guid=i.guid    
    WHERE DATEDIFF(day, i.CreatedDate, getdate()) <= 2
    
    
  2. Create a duplicate of the collection "All Windows Desktop Computers Collection (excluding Package Servers)".
  3. Under the Altiris Agent Configuration folder create a new "Agent Settings" config called "Newly Discovered Devices".
  4. In the "Newly Discovered Devices" config change the setting "Request new configuration information every:" to 1 hour.
  5. Open the Agent Settings item "All Desktop computers (excluding 'Package Servers')" and change its collection to "Copy of All Windows Desktop Computers Collection (excluding Package Servers)".

Now your new agents will update config settings every hour so they can get all of their updates much faster. They will automatically switch over to the normal agent settings after 48 hours.

Comments

KSchroeder's picture
07
Aug
2007
3 Votes +3
Login to vote

Collection optimization

Hi Eric,
I think your computer collection can be optimized a bit, as the vComputer view has the CreatedDate in it already, so no need to JOIN the (huge) Item table, or vResource for that matter:
[quote]

SELECT vc.guid    
FROM vComputer vc 
WHERE DATEDIFF(day, vc.CreatedDate, getdate()) <= 2

[/quote]Also, for step 5 do you want to change the collection to the "Computers Discovered 48 Hours" collection from step 1?

Thanks,
Kyle
Symantec Trusted Advisor

For Forum threads, please click "Mark as Solution" if answered.
For all content, please give a thumbs up if you agree with or support the post.