Skip to main content

Problem while installing Visual Studio 2010 Express editions using Web Platform Installer

I would like to share a problem that I faced while installing Visual Studio 2010 Express editions using Web Platform Installer 2.0 version.

Web Platform Installer 2.0 from Microsoft is a very good tool for keeping track of what is installed and what is not and to install softwares in the background without expecting any user action but I did not like one thing in the Installer i.e. no status of Installation Progress is shown on the installation window. We won't even know if it is actually installing or has died. As the download and the installation take a long time, sometimes I feel that it is not working and try to kill the Platform Installer application. Later on, I realize that to find whether it is really doing anything or not, the best way to check the progress would be to check the installation log files.

The installation log files are created in the system Temp folder. To browse the Temp folder, please browse the C:\Users\\AppData\Local\Temp folder directly (in Windows Vista, similar folder in XP too) or type %Temp% in Start menu. In the Temp folder, open the log file "dd_install_vns_xcor_100.txt" (it is the master log file) to track the progress of the installation. There are many other log files created here but this is the master log file.

Hopefully, Microsoft will bring this change in the future release of Web Platform Installer (like Eclipse background installer).

Comments

Popular posts from this blog

Office 2013 Installation Error : Code 1603

Wanted to share one error that I got while installing Microsoft Office Professional 2013 for which I had to spend almost 3 days to find the root cause. I also googled and found that many people have also faced the same issue but did not get if anyone had the solution. Sharing the solution that worked for me. Thanks to Dhaval Metrani, my colleague, who also helped me with this. If you get the following error in the log file (in the %temp% folder) while installing Office 2013 Failed to install product OSMMUI.msi ErrorCode: 1603  and the detail log shows ERROR: The network address is invalid then the same is because of Task Scheduler service is not enabled on the machine. 1603 is a generic error and some people have mentioned that the same could be related to deleting/renaming  %programdata% /Microsoft Help but the solution seemed to be related to Task Scheduler when the exact error was related to 'Network address invalid'. By default in Windows 7 and Windows Vista ...

SBOM, a key building block in supply chain risk management

In my previous blog, I talked about what software supply chain attack is all about. It occurs when a threat actor infiltrates a network and employs malicious code in the software before the publisher sends it to their customers and then it compromises the customer’s systems. Such attacks affect all users of the compromised software and can have widespread consequences for organizations and their infrastructure and data. Traditionally, organizations developed applications in-house and this enabled developers to gain control over the entire codebase. However, this model cannot meet today’s time-to-market demands. As the expectations and pace increase, it’s impossible to meet the demand with home grown software. So, there is a need for open source software contributed by software professionals around the world. Open source software facilitates rapid development and release cycles. It enables developers to incorporate ready-made components into their application so they can quickly release...

jQuery Intellisense support in Eclipse 3.4.2

To have jQuery Intellisense feature in Eclipse, I tried to find out the way in Google and everyone suggested to use modified version of Eclipse WTP. After doing some research I found out another way of having jQuery Intellisense in Eclipse i.e. integrating Spket IDE with Eclipse. I am using Eclipse 3.4.2 Ganymede version. Download Download and Install Spket IDE and jQuery Download Spket plugin for Eclipse using Eclipse Update Manager, from Spket update site - http://www.spket.com/update/ Once the Spket IDE is installed then download jQuery from http://jquery.com/ and save in your local disk. Configure The steps to configure jQuery Intellisense are: Open Eclipse IDE Select the menu item Window > Preferences... to open the workbench preferences. Select the Spket > JavaScript Profile preference page to display the installed JavaScript Profiles. Click the New.. button. In the Name field, type jQuery (you can type anything) as the name for the new profile. Then click OK . Click th...