We are running MS Small Business Server 2008, and there are a few programs that we would like to have installed on all client computers. Is there a way to install this software on all machines without manually going to each computer? Obviously this can be done with windows updates and such, but we're hoping for more :)
Asked
Active
Viewed 213 times
4 Answers
1
You can deploy software centrally through:
- GPO
- Login script (depends if users are admin / using runas)
- Use a true software deployment, like Microsoft SCCM (replace MS SMS)
- housemade script that copy the exe/msi to remote targets and launch them remotely in silent mode. PowerShell v2 enable some good points to that
Example: deploy office 2007 through GPO: http://technet.microsoft.com/en-us/library/cc179214.aspx
The more industrial way is SCCM but it cost money (but save you time, tradeoff)

Mathieu Chateau
- 3,185
- 16
- 10
0
With SBS I assume that you're a reasonably small environment, so look into Group Policy based software deployment as a first step. If your needs exceed the capabilities of that method, and you're not able to structure things within it's limitations, then it's time to go further to something like SCCM.
Clickies:

Maximus Minimus
- 8,987
- 2
- 23
- 36
0
For your application distribution or update you can build .msi packets using special programs (For example Advanced Installer, MSIFactory and etc) and then create appropriate group policy to deploy them.

user35115
- 71
- 1
- 6