Finding DOT NET Framework Installed Path

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Actually I have a 'windows service' as a part of the whole Visual Studio
solution (VS.NET 2003). I want to install this 'windows service' as a part of
the installation for the actual web-application. I used to do,

InstallUtil < service-exe-filename-with-path >

from the command prompt for Visual Studio 2003.

I wanted to include this in the installer itself.

Where to get the path for .NET framework
How to call the 'installutil < filename >'
 
Bhuvana said:
Actually I have a 'windows service' as a part of the whole Visual Studio
solution (VS.NET 2003). I want to install this 'windows service' as a part of
the installation for the actual web-application. I used to do,

InstallUtil < service-exe-filename-with-path >

from the command prompt for Visual Studio 2003.

I wanted to include this in the installer itself.

Where to get the path for .NET framework
How to call the 'installutil < filename >'

%windir%\Microsoft.Net\Framework\v1.1.4322\Installutil.exe

Alternatively, what packaging program are you using? (InstallShield,
Wise, Installer Project within VS, something else)? There may be better
methods available than running a command line.

Damien
 
Back
Top