Faster New Device Management
Filed under:
Patch Management Solution, Notification Server
Optimization, Best Practices
Submitted by robertser on 6 August, 2007 - 13:46.
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.
(26 votes)
- Login or register to post comments
- 2804 reads
- Printer-friendly version
















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: