For a command such as this:
C:\>stsadm -o upgradeSolution -name zzz.wsp -filename zzz.wsp -allowGacDeployment -local
I receive two outputs of the success statement rather than just one:
Operation completed successfully.
Operation completed successfully.
It seems to be related to the -local flag, so my guess would be that it successfully creates the Timer Job then runs execadmsvcjobs under the hood.
stsadm -o execadmsvcjobs
Thoughts on this?
upgradesolutionwith-localdoes not use the timer service and the job is run synchronously: technet.microsoft.com/en-us/library/cc262014.aspx – Alex Angas Oct 6 '09 at 14:33