Faster New Device Management
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.
- 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
- Create a duplicate of the collection "All Windows Desktop Computers Collection (excluding Package Servers)".
- Under the Altiris Agent Configuration folder create a new "Agent Settings" config called "Newly Discovered Devices".
- In the "Newly Discovered Devices" config change the setting "Request new configuration information every:" to 1 hour.
- 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.

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]
[/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
If your question has been resolved, please be sure to click "Mark as Solution"! Thank you.
Would you like to reply?
Login or Register to post your comment.