Glenn Posadas
Glenn Posadas

Reputation: 13300

application run on windows startup after installation

I have publish my current project. I got the publish folder in my Project's folder. I installed my program and it works perfectly, but I need to know if it is possible that after installation (installer is from the Visual Studio 2012 when you publish the project) the program will start automatically upon windows start up.

Upvotes: 1

Views: 2006

Answers (1)

Bad Wolf
Bad Wolf

Reputation: 184

You could have the installer create a link to your application in the Windows Registry, under the Run or RunOnce registry keys for Windows.

Here is more information about the Run and RunOnce registry keys: https://msdn.microsoft.com/en-us/library/windows/desktop/aa376977(v=vs.85).aspx

Upvotes: 1

Related Questions