Video Screencast Help
Search Video Help Close Back
to help
Not able to make it to Vision this year? Get a sampling in the Best of Vision on Demand group.

How to force install agents during build time

Created: 08 Feb 2011 | 4 comments
Kent0's picture
0 0 Votes
Login to vote

Hello,

When I build a system I install the Altiris Agent.  Then I run a VBscript to force it to check in.  The problem I'm having is that it takes a while for it to install the other agents such as:

Altiris Software Update Agent

Inventory Agent Package

Invertory Rule Agent

Software Delivery Solution Agent

 

How do I force the install of these sub-agents/packages without having to wait and keep checking back to see if they have installed?

Comments

Mistral's picture
08
Feb
2011
0 Votes 0
Login to vote

Install manually

What are the command lines to manually install subagents in Altiris 7?

http://www.symantec.com/business/support/index?pag...

KSchroeder's picture
08
Feb
2011
0 Votes 0
Login to vote

You can manually install the

You can manually install the sub-agents too, you just need to gather up the MSIs and/or .exes and include them in your build process (VBS, bat, whatever).  The "silent" install command lines are also available from within the console, on the Programs tab of the Agent package.  Typically the Agent packages will be displayed on the Configuration tab under the corresponding solutions in a "xxxx Solution Agent Rollout" folder, and the local path on the NS will be there where you can grab the file from.

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.

jharings's picture
09
Feb
2011
0 Votes 0
Login to vote

Another option

which may or may not be useful to you is to create an agent configuration policy\targeted agent setting (v6\v7) based on the creation date of the machine record. You would create a collection\filter based on a query and then could have the agent check in sooner.

Someone did a REAL nice writeup on this option, and if I can find it, I'll edit this post.

Jim Harings
HP Enterprise Services
1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect club.

KSchroeder's picture
13
Feb
2011
0 Votes 0
Login to vote

Query

The basic query for the "new resources" filter/collection is something like:

 SELECT vr.GUID FROM vResource vr
JOIN Inv_AeX_AC_Identification acid ON vr.Guid = acid._resourceGuid
WHERE DATEDIFF(dd, vr.CreatedDate, GETDATE()) < 5 -- substitute "5" for the # of days you consider "new" 

Hope that helps.  I remember that article too Jim; might have been on Altirigos?

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.