Click here to Skip to main content
15,917,174 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can I install a vb.net program on a server and add shortcuts to the client machine.
It doesn't want to start.

[EDIT]
Upper case is considered to be shouting on the internet and rude.
[/EDIT]
Posted
Updated 21-Apr-10 2:13am
v2

You might have fewer security problems if you publish your application using ClickOnce. This does not actually install your app on the server; rather, it places a downloadable copy in a central location. Users use a shortcut to an installer app that verifies they have the most recent version and, if not, downloads and installs the most recent version onto their machine.

Setting an application up for ClickOnce publishing is pretty straightforward, but there are a number of ways it can be configured and a few caveats. You should easily be able to find instructions here at CP and on the web.


[kschuler added link]
Here is MSDN on ClickOnce[^]
 
Share this answer
 
v2
Yes, it should work (depending on permissions, registry entries, etc.) provided the client machine has the appropriate .NET framework and patches installed.

Try it. If it works, fine. If it doesn't, then any error message should tell you why it didn't!
 
Share this answer
 
The server location is probably untrusted (from the client's point of view)
Use mscorcfg.msc to do this on the client. If you can't find it on the client, you can find a copy in .net 2.0 sdk.
Otherwise use caspol.exe to do your editing, but it's not as user friendly...

Oh, you HAVE installed the .net framework on the client, have you?
 
Share this answer
 

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