How to run multipale wyupdate exe one after other

How to run multipale wyupdate exe one after other.

ThanksRijwan

There are lots of ways you can do this. Who's invoking the first copy of wyUpdate (is it within your program, or is a user doing it, or can it be either)? If it's always your program that's launching the first copy of wyUpdate, then you can just write it to wait for the first one to finish sucessfully then launch the next one.

Another option is to create a simple *.bat file, include it in the "Temporary files" folder in wyBuild, and have it execute wyUpdate. (see: Executing files in your update).

It all really depends on what you want to do and how you want to go about it.

Re: How to get the version information of Update from wyupdate tool on client side

You can't. You can only use wyUpdate (in it's standalone form) to get where there are new updates or not. See: How to Silently Check for Updates.

Of course you can always use the AutomaticUpdater if you're making a .NET app.

hi,where to find automatic updator dll file version 2.0

Thanks

Start here, then click through to the correct article (AutomaticUpdater tutorial for Windows Forms, AutomaticUpdater tutorial for WPF apps, or AutomaticUpdater tutorial for Windows Services and Console Apps).

Each article explains where to find the AutomaticUpdater and which version to use.

How to use the auto updater control with the click event of button.is auto updator only works on the load event

We recommend adding a menu to your app so they can check for updates. See the tutorials, it explains how to do it.

Hi sam, i have tried to add the autoupdater dynamically on the form it will adds on the form but not working .when i simply drag and drop control from toolbox it works properly what's the problem please tell me

You can only dynamically add the control within your form's constructor. But it's easier to just add it directly to the form at design time.

Respected sir, I have already tried the solution you have suggested, the control gets added successfully on my form but I am not be able to see that control on my form sir what is issue I am sending My code for your reference please solve my problem

automaticUpdater = new wyDay.Controls.AutomaticUpdater(); automaticUpdater.ContainerForm = this; automaticUpdater.Location = new System.Drawing.Point(100, 100); automaticUpdater.Name = "objAutomaticUpdater10"; automaticUpdater.Size = new System.Drawing.Size(16, 16); automaticUpdater.UpdateType = wyDay.Controls.UpdateType.Automatic; automaticUpdater.Visible = true; automaticUpdater.TabIndex = 0; automaticUpdater.wyUpdateLocation = wyUpdateLocation; automaticUpdater.ClosingAborted += new EventHandler(automaticUpdater_ClosingAborted); this.Controls.Add(automaticUpdater); Control[] ctr = this.Controls.Find("objAutomaticUpdater10", true); foreach (Control ct in ctr) {

wyDay.Controls.AutomaticUpdater au = (wyDay.Controls.AutomaticUpdater)ct; au.wyUpdateLocation = wyUpdateLocation; label1.Text = au.Version;

}

Please tell me how to generate the autometic updater at run time