views:

834

answers:

5

We really want to start pushing-out products using the 3.5 framework but it is a pain having to install the framework on every PC.

We can get the app to do and automatic update on first run but that takes forever.

Is there any way to force all the PC's to update overnight? e.g. via Windows Update...

Our PCs are a mix of XP and Vista

+2  A: 

Place the MSI in a Group policy.

AnthonyWJones
+2  A: 

You can push the MSI through a policy. See some ideas here.

Otávio Décio
A: 

Have you looked at using Microsoft's Systems Management Server (SMS) and Software Update Services Feature Pack?

Mitch Wheat
+1  A: 

Publish your installation by group policy, to do so, you only need an MSI version of the program, and you have to have access to group policy management console, when you do so, you only have to add new entry under the software installation menu (i forgot the exact name of the option), you can also uninstall it later the same way you installed it

Maen
A: 

Here is another way:

Download pstools and run psexec for remote install

example:-

psexec \workstation64 -c “c:\folder\dotnetfx35.exe” /q /norestart

Sam Mackrill