Suggestion for updating WindowsForm application

2

I'm developing a Windows Form application in C #, this is a rather large application, I'd like to know what technology I use to update this application on the client computer. I tried to implement ClickOnce, plus I saw that it installs the system in the users folder and not in program files. Does anyone know of any platform that I can implement in my project? My idea is to leave the files updated on some ftp or virtual directory (IIS) by having the application installed on the client machine check if it has updates in this "Virtual or FTP directory" if it has downloaded those files. If any one knows in any way other than ClickOnce please help me. Thanks

    
asked by anonymous 10.04.2015 / 15:26

1 answer

1

Use the WiX Toolset to generate an MSI installer for your application .

After that, configure a GPO in the Windows domain to silently install the application on the user's machine when the user logs in. Here's how to do it here .

    
10.04.2015 / 18:32