Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > Visual Studio.Net > Installation


Search:
What's New - What's Hot
HOW TO: Remove Visual Studio .NET Beta and Release Candidate Versions      
Total Hits: 626  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Visual Studio .NET Beta and Release Candidate versions may not be completely removed because of problems in the removal programs. This article describes how to manually remove all traces of these versions. You must also use the Add/Remove Programs tool in Control Panel to remove all managed programs that are installed on the computer, no matter which version was used to develop the managed programs....

Monitoring Unreliable Scheduled Tasks     
Total Hits: 79  |  Today: 0Author: Clift Norris, John D. Cook      Rating:  
Read Reviews | Write Review |  Your Rating: 

How do you monitor and troubleshoot a legacy system that fails silently? We run nightly batch processes to extract data from a legacy system. These processes fail fairly often without giving any indication that there was a problem. The legacy system is outside our control and is scheduled to be replaced. We have no way of making the system more reliable, but we came up with a simple way to detect failures. There are many commercial software packages for monitoring processes, but we wrote our own...

A web based application configuration wizard     
Total Hits: 79  |  Today: 0Author: defwebserver      Rating:  
Read Reviews | Write Review |  Your Rating: 

The DotNetNuke project contains a time tested set-up wizard that works in a lot of situations. You can use a Web Deployment Project, but it requires you to run an installer on the server. This may not work for a lot of situations where you are using a shared hosting server. This wizard allows you to FTP the application to a remote server and then launch the configuration wizard from the web browser....

Using managed code to detect what .NET Framework versions and service packs are installed     
Total Hits: 28  |  Today: 0Author: Scott Dorman      Rating:  
Read Reviews | Write Review |  Your Rating: 

Developers are increasingly faced with the possibility of multiple .NET Framework versions being installed on the same machine. The .NET architecture was designed to allow multiple versions of a component to be installed and run at the same time on a single system and this side-by-side deployment extends to the .NET Framework itself. By allowing multiple versions of the .NET Framework to be installed on the same computer, applications built with version 1.0 of the .NET Framework can run using th...

Uninstall a Previously Installed Application when Upgrading an Application with Setups created in VS.NET- Part 1     
Total Hits: 99  |  Today: 0Author: rwestgraham.      Rating:  
Read Reviews | Write Review |  Your Rating: 

First of all, thanks for the interest and valuable comments on my initial submission. This article has been revised, twice now, and hopefully for the last time. I have corrected some errors and omissions and added a few additional comments. The original version was much "simpler", but rarely are things simple when you are dealing with installations. I have corrected some errors pointed out by others and those found by me. The article has now become more complex. This is also part 1 of the overal...

HOWTO: Troubleshoot the Windows Component Update for Visual Studio .NET     
Total Hits: 6611  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This describes the steps required and the specific process for troubleshooting the installation of the Windows Component Update (WCU). The WCU is used to update systems for the installation of several products including but not restricted to Visual Studio. NET, Microsoft Office XP Developer, and Visual FoxPro 7.0....

Creating a localized Windows Installer & bootstrapper: Part 1  Version: 0.00     Price: $0.00  
Total Hits: 6  |  Today: 0Author: TheCodeKing      Rating:  
Read Reviews | Write Review |  Your Rating: 

It's been a while still my last article so I thought I'd write about my recent experiences with Wix for creating Windows Installer packages. I last used Wix 1.0 about 4 years ago with great results and had forgotten how satisfying it is to use. Unfortunately at the time of writing Wix 3.5 isn't out, but it sounds like there are some great additions in the pipeline including the much anticipated Burn utility (a bootstrap compiler), as well as Votive support for Visual Studio 2010....

Redirecting an Application to Target a Different XML Web Service During Installation  Version: 0.00     Price: $0.00  
Total Hits: 14  |  Today: 0Author: Steve Hoag      Rating:  
Read Reviews | Write Review |  Your Rating: 

When developing applications that target XML Web services, you will most often target XML Web services that are already installed on a Web server. Although this is the norm, there will also be cases where you want to target a different XML Web service when the production version of your application is deployed. For example, you may have targeted a test version of an XML Web service on your development server, but the finished application needs to target an installed version of the XML Web servic...

Walkthrough: Using a Custom Action to Create a Database at Installation  Version: 0.00     Price: $0.00  
Total Hits: 18  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The following walkthrough demonstrates the use of a custom action and the CustomActionData property to create a database and database table during installation....

Windows Registry     
Total Hits: 54  |  Today: 0Author: interface Mirror      Rating:  
Read Reviews | Write Review |  Your Rating: 

Registry is a directory that acts as a central database of settings and options used in MS-Windows different versions. It is used to store information about hardware, Operating system, installed software's, users and their profile. Registry contains information about operating system and software's referencing during their operation. It has replaced use of .ini files which was being used widely before but from software development perspective in .NET it shares its importance with configuration f...

Deploy IIS settings along with your Web Project     
Total Hits: 78  |  Today: 0Author: rmortega77      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the issues that you need to consider as you plan for how to deploy your ASP.NET applications is how to deploy IIS settings along with your solution. This is a brief example of how to set the Virtual Directory Authentication Settings....

How to create customized InstallShield for a VC++ Application     
Total Hits: 89  |  Today: 0Author: Jimmy M Joy      Rating:  
Read Reviews | Write Review |  Your Rating: 

Before creating the Install Shield for our Release version of the application, we should be aware about the list of DLLs and OCXs that our application is dependent on. That is, we should know about the dependent files our application needs to run in another machine. You can easily find the dependent files by debugging the application after setting the project to Debug mode. While you're running the application, the dependencies will be listed in the debug output window. Don't forget to do "Rebui...

Remove .NET dependency from .MSI file     
Total Hits: 145  |  Today: 0Author: Mark Harmon      Rating:  
Read Reviews | Write Review |  Your Rating: 

I created an application that needs to be deployed to many different machines running many versions of Windows. My app is pretty basic and does not require the .NET framework. I created a setup project in Visual Studio .NET 2003 and tested it on a new install of Windows 98. The installer popped up a message notifying the me that I HAD to install the .NET framework before continuing with the installation. I looked for an option to turn off that install condition, but could find none....

Installing .NET Windows Services (the easiest way)     
Total Hits: 124  |  Today: 0Author: Sudheer Reddy Battula      Rating:  
Read Reviews | Write Review |  Your Rating: 

I will demonstrate the easiest way of installing a Windows service. Using the InstallUtil.exe had been my primary mechanism of installing a Windows service until I came across Windows Services Can Install Themselves by W. Kevin Hazzard. That article has demonstrated that a service can be installed/uninstalled/launched from the command line alone. I, on the other hand, have come up with a way to install/uninstall the Windows service by double clicking the service executable....

Writing A Good Setup For Your Applications     
Total Hits: 72  |  Today: 0Author: Cyril Gupta      Rating:  
Read Reviews | Write Review |  Your Rating: 

So you've finally managed to complete your latest application after putting in a lot of last minute effort, spending sleepless nights and consuming a million cups of Coffee. Pleased with yourself you're ready to lean back and relax. The grunt work's all done. Right? Wrong! A veteran programmer won't consider an application complete until he has shipped it to the client and waited for 15 days. The successful deployment of an application is just as tough if not any harder than the actual coding of...

An Uninstaller To Uninstall Any .NET Application     
Total Hits: 88  |  Today: 0Author: Hungry Mind      Rating:  
Read Reviews | Write Review |  Your Rating: 

I have named this utility as uninstaller because this utility can be used to uninstall any
.NET application which is deployed using .NET deployment wizard [Windos Installer]....

R2build 1.0 RC1 Published for Beta Test (Continuous Integration/Daily Build Tool)     
Total Hits: 54  |  Today: 0Author: r2build      Rating:  
Read Reviews | Write Review |  Your Rating: 

R2build system is a tool/Framework to establish your daily build (or nightly build, or build automation, or continuous integration system) in a very easy manner. It includes, but is not limited to, plug-ins for email notification, FTP, various Installer packaging tools, Ant/Nant/.NET/Delphi/C++ Builder, and various source control tools. R2Build is licensed under the terms of the GNU General Public License. It adheres to the open source model and therefore makes the source code freely available....

Deploy .NET thick client application assemblies to a remote server     
Total Hits: 64  |  Today: 0Author: Indrajeet Valera      Rating:  
Read Reviews | Write Review |  Your Rating: 

This demo shows a new way of deploying .NET thick client application assemblies, like Windows Forms and Console applications, to a remote server, which makes deployment and maintenance a bit easier. This demo also concentrates on code security of .NET applications....

Multiple Setup Selection Screen     
Total Hits: 89  |  Today: 0Author: Julien Hoffmann      Rating:  
Read Reviews | Write Review |  Your Rating: 

Most of the software we all buy and receive, on either media (CD-ROM, download, etc...) provides the end-user with a wizard-like setup application. In some cases though, multiple products are available on the same support and when one inserts the CD-ROM in the CD tray, a nice splash screen appears, letting him/her select the application to install. Never wondered how this was made? Here is a (very) simple implementation of this kind of first-setup-screen....

Setting up and running Subversion and Tortoise SVN     
Total Hits: 109  |  Today: 0Author: Rick Strahl      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is a quick step by step for setting up Subversion with Tortoise SVN. This walkthrough is general with a slight side focus on operation with .NET and Visual Studio projects. It covers repository creation, creating new source control branches for projects, creating a local copy and the basics of common operations. Focus is on getting up and running quickly with the essential steps....


1  2  3  4  5  6  7  8  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net