Setup and Deployment Issue!
-
Hello Everyone, I have created a desktop application in VisualStudio2008 using C#. Now I am creating setup project for this application. I am really very new for the setup and deployment project so I googled few documents and got some idea about it, but still I am unable to fix my issue. Basically I want this application should install on users profile on stratup programs, so whenever users logs in application should start automatically. I really appreciate if you guys can provide me solution for my small problem. I am creating setup in VS2008. Thanks.
-
Hello Everyone, I have created a desktop application in VisualStudio2008 using C#. Now I am creating setup project for this application. I am really very new for the setup and deployment project so I googled few documents and got some idea about it, but still I am unable to fix my issue. Basically I want this application should install on users profile on stratup programs, so whenever users logs in application should start automatically. I really appreciate if you guys can provide me solution for my small problem. I am creating setup in VS2008. Thanks.
- Right click the installer project in Solution View, select View --> File System
- Right Click "File System on Target Machine" --> Add Special Folder --> User's Startup Folder
- Select the Application Folder, Right click the Primary output & Create Shortcut.
- Move the shortcut to the Startup folder created in Step 2.
CCC solved so far: 2 (including a Hard One!) 37!?!! - Randall, Clerks
-
Hello Everyone, I have created a desktop application in VisualStudio2008 using C#. Now I am creating setup project for this application. I am really very new for the setup and deployment project so I googled few documents and got some idea about it, but still I am unable to fix my issue. Basically I want this application should install on users profile on stratup programs, so whenever users logs in application should start automatically. I really appreciate if you guys can provide me solution for my small problem. I am creating setup in VS2008. Thanks.
maybe instead of installer feature make it an application setting.. using registry for example: RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true); key.SetValue("%app_name%", Application.ExecutablePath); key.Close();
life is study!!!
-
maybe instead of installer feature make it an application setting.. using registry for example: RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true); key.SetValue("%app_name%", Application.ExecutablePath); key.Close();
life is study!!!
-
In what sense is it not solved yet? You are going to have to give us all a clue!
CCC solved so far: 2 (including a Hard One!) 37!?!! - Randall, Clerks
-
In what sense is it not solved yet? You are going to have to give us all a clue!
CCC solved so far: 2 (including a Hard One!) 37!?!! - Randall, Clerks
-
My setup should create a copy of "exe" here.. "Users\Guest\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\startup\My.exe" so when users logon to his system then it will run automatically... If there are anyother way to do that please let me know.
-
in the directory you pointed should be only a shortcut.. and it's done in a way keefb described
life is study!!!