Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
-hi friends,

i am working on one backstop application after completing work i publish project and debug folder in side the bin folder is put on client machine but my problem is that every time after changes i need to put that debug folder on client machine so any way using that i deploy code from server pc and when client start his pc it take latest version from server so i not need to manually put debug folder on client machine


-so any way to do this process of any easy way to achieve this please help me or any link related to this solution reply me.

-thanks
Posted
Updated 14-May-13 21:00pm
v2

1 solution

Write yourself a little application that when the user opens it, it checks the version of the software locally with the version on the server. If the server copy is newer, have it copy the server version down to the local version, then fire off the local version of the application. If the version on the server is not newer, it simply launches the local version.
 
Share this answer
 
Comments
bhavesh002 15-May-13 3:08am    
hm if version on local machine and server is same it run that application and if version of server and local machine is different it download latest version from server and then it run application so our manual process is reduce
_Damian S_ 15-May-13 19:53pm    
Yes, that's exactly what I'm saying. You do it with a separate application. Instead of opening your application directly (the one that the users need to have updated), have them open your CheckVersion application (or something similar), which either grabs the latest version then opens it, or simply opens the existing version.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900