Our IT Support Dept. releases an internal software product that I write via group policy.
Is it possible to force an update of a particular group policy software install without asking the users to log off and log back on to their machines?
Our IT Support Dept. releases an internal software product that I write via group policy.
Is it possible to force an update of a particular group policy software install without asking the users to log off and log back on to their machines?
The software cannot install/upgrade unless the user reboots his computer (Computer objects in GPO gets applied before the user can log on). Maybe Vista can do this, I'm not sure - but with XP you really do have to reboot.
In a command shell you can run
gpupdate /force
which will (as the command implies) force a group policy update. It can also be tailored to update the user or computer policy with the switch
/target:computer
or
/target:user
For Win 2003:
For Win 2000:
Not sure about XP but you could try both
It's a cheat compared to your question, but you could use psexec to remotely install the package on computers while not having to break users activity. Psexec is from Sysinternals (Microsoft now) for free
Maybe creating a schedule task for the users, and this task run the vbscript or something else for update the App. The script must verify the version of executable previous replace or run update task.