Problem with bug
-
He has used Visual Studio 2005. So where will I find the installer project.
Well, hopefully it has been checked in to whatever source control system you are using and is a project in the Visual Studio solution. Look for a project with a .vdproj extension.
Scott. —In just two days, tomorrow will be yesterday. —Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines] [Articles] [Blog]
-
Well, hopefully it has been checked in to whatever source control system you are using and is a project in the Visual Studio solution. Look for a project with a .vdproj extension.
Scott. —In just two days, tomorrow will be yesterday. —Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines] [Articles] [Blog]
No Scott, There is no .vdproj extensioned file. We have used VisualC# express 2005 to make the project. If that helps.
-
No Scott, There is no .vdproj extensioned file. We have used VisualC# express 2005 to make the project. If that helps.
It sounds like we are talking about different projects. What you need to find is the application and project file that was used to create the setup application, not the program that is being installed. This is typically a "Visual Studio Deployment Project", an InstallShield .ism project, etc. That is what needs to be changed. The only other possibility is that you have a completely custom written setup application. In that case, you would have a regular Visual Studio project file and would then need to change the source code for that application.
Scott. —In just two days, tomorrow will be yesterday. —Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines] [Articles] [Blog]
-
No Scott, There is no .vdproj extensioned file. We have used VisualC# express 2005 to make the project. If that helps.
As I remember - I don't think you can make set up projects in the express editions [apart from your own custom ones] (I could be wrong!). If so, the previous guy must have used some other software as previously suggested. On a side note - check the EULA for the express edition. Again, I'm fairly certain that it is not licenced for use in a commercial environment apart from for evaluation. This also prohibits 'Go Live' scenarios where the application is only to be used in house. It's unlikely to be discovered - but your boss should be made aware if he's breaking the EULA. Check it out first before scaring him!
Dave
modified on Tuesday, June 3, 2008 10:46 AM
-
It sounds like we are talking about different projects. What you need to find is the application and project file that was used to create the setup application, not the program that is being installed. This is typically a "Visual Studio Deployment Project", an InstallShield .ism project, etc. That is what needs to be changed. The only other possibility is that you have a completely custom written setup application. In that case, you would have a regular Visual Studio project file and would then need to change the source code for that application.
Scott. —In just two days, tomorrow will be yesterday. —Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines] [Articles] [Blog]
I think this .nsi file has got something to do with the installation it has these scripts which I have never seen in mylife.
InstallDotNet:
ExecWait 'dotnetfx.exe' Delete "dotnetfx.exe" Call IsDotNETInstalled Pop $R3 StrCmp $R3 0 DotNetFailed Goto CompleteInstallation DotNetFailed: MessageBox MB\_OK "The Microsoft.NET Framework setup has failed. Please restart the PiPe setup, or install the latest .NET Framework directly from Microsoft's website." Quit
Can you tell me what the file does and what language is it.
-
I think this .nsi file has got something to do with the installation it has these scripts which I have never seen in mylife.
InstallDotNet:
ExecWait 'dotnetfx.exe' Delete "dotnetfx.exe" Call IsDotNETInstalled Pop $R3 StrCmp $R3 0 DotNetFailed Goto CompleteInstallation DotNetFailed: MessageBox MB\_OK "The Microsoft.NET Framework setup has failed. Please restart the PiPe setup, or install the latest .NET Framework directly from Microsoft's website." Quit
Can you tell me what the file does and what language is it.
humayunlalzad wrote:
I think this .nsi file has got something to do with the installation it has these scripts which I have never seen in mylife.
Yes, a .nsi is the script file created by the NullSoft Scriptable Install System (NSIS) (http://nsis.sourceforge.net/Main_Page[^]). You will need to download and install NSIS, make the necessary changes and then rebuild the installer.
Scott. —In just two days, tomorrow will be yesterday. —Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines] [Articles] [Blog]
-
No Scott, There is no .vdproj extensioned file. We have used VisualC# express 2005 to make the project. If that helps.
-
Ignore my previous post re licencing "there are no licensing restrictions for applications built using Visual Studio Express Editions" http://www.microsoft.com/express/support/faq/default.aspx[^] Q7. :-D
Dave
Thanx I thought my Boss is crook, but I guess he is not
-
Thanx I thought my Boss is crook, but I guess he is not
-
LOL that was funny. And True