Link to home
Start Free TrialLog in
Avatar of Noel Arriola
Noel ArriolaFlag for United States of America

asked on

scripting

i am looking for a software deployment tool, substitute for gpo, etc.   we are currently using desktop authority,  does anyone have a recommendation .
Avatar of yo_bee
yo_bee
Flag of United States of America image

Are you looking to deploy while the users are on the computer or at logon/logoff?

If you have MSI you can easily use Task Scheduler to run the MSI with the /QN switch (the quite no interaction).

command line that you would need to run is msiexec /I "path\file.msi" /qn.  This is the most basic of rollouts.  If there are properties that need to be applied with the install most applications supply the list of them for a network rollout.  

Do you have an example of a application you want to push?  I can help you construct the command line.
ASKER CERTIFIED SOLUTION
Avatar of NVIT
NVIT
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
What are you trying to do?  I've used Desktop Authority under several different versions, and it is a great product..

There are numerous ways to do these things.. depending on what you are trying to do specifically, there are any number of options.  I don't think any one tool will do what you are asking about (replacing GPO's, software deployments, etc.) as easily as DA without going to a much more expensive product..

But, from the scripting point of view --
Kix is a great login scripting language - it was designed expressly for this purpose.
AutoIT is an excellent scripting language that can be used for a login script, and it is designed specifically for automating installations.  
VBScript is a good login scripting language, and it has a number of features that are completely appropriate for this purpose.
Plain old batch files can do quite a bit for login scripting..
Again, this really is based on exactly what you are trying to accomplish from the login script.

Coralon
Avatar of Noel Arriola

ASKER

After seeing the responses.  I am really looking for a deployment tool to install printers, add software to desktops to state with, without having to manually touch the computers myself.   Like  I said, we have Desktop Authority Lite and is looking to upgrade to the full product if necessary.

However, I was wondering if there is anything out there that's more reasonably priced and easy to use.

Thanks
I SCCM (System Center Configuration Manager). It does come with a price tag, but it does a great job.
The printers can be done with Kix very easily.  
There are a number of free products that can create MSI's or transforms for MSI's and then you can use Kix to deploy those.  

I haven't used any of these, so I can't speak to them.. but it should be a start..
http://emcosoftware.com/msi-package-builder
http://installforge.net/
http://www.softpedia.com/get/Authoring-tools/Setup-creators/MAKEMSI.shtml

That should get you started :-)

Coralon