Showing posts with label Visual Studio 2012. Show all posts
Showing posts with label Visual Studio 2012. Show all posts

Wednesday, June 03, 2015

How do i create an InstallShield LE project to install a windows service?

The main solution exist  here
But real help is hiding in the comment:
This option does not start the service after installation. To install service and start it, in solution explorer, select 3. Configure Target System > Services 
Regards to Rajeev

Thursday, November 06, 2014

Visual Studio 2012 Crashes at Startup

The solution for famous problem exists here. But my Registry not included all required keys from the article. In the 3rd page of Google  search was found very small but very effective advice:
You would get above error if ieproxy.dll is not registered properly. Re register Ieproxy.dll.
C:\Program Files\Internet Explorer>regsvr32 /u ieproxy.dll
C:\Program Files\Internet Explorer>regsvr32 ieproxy.dll
C:\Program Files (x86)\Internet Explorer>regsvr32 /u ieproxy.dll
C:\Program Files (x86)\Internet Explorer>regsvr32 ieproxy.dll
Full post exists here.
Thank you, Derek Smith!