setup

Question regarding setting up Moq behaviour using Setup().

I am trying out moq and I have a question regarding to the Setup() method. I have the following interface and class: public interface IMyInterface { void Print(string name); } public class MyClass { private IMyInterface my; public MyClass(IMyInterface my) { this.my = my; } public void Print() { ...

How to do this Visual Studio, VSS, VM setup?

Our team recently got new dev machines, but our team lead has a special case that needs to be addressed and I'm not really sure the best way to set it up. The particulars... New machines are running Server 2008 Visual Studio 2008 and sometimes 2005 We have a virtual machine of XP setup on our machines, for cases like this Sigh Yes we ...

How to check if python is installed in windows from java?

How can I check from inside a java program if python is installed in windows? Python does not add its path to the system Path and no assumption is to be made about the probable path of installation(i.e it can be installed anywhere). ...

Creating a project in Team Foundation Server without publishing to SharePoint Server

Is it possible to create a project in Team Foundation Server without having TFS wanting it to publish to a SharePoint site? We do have SharePoint Server, but due to unavailibility of our network administrator (hence cannot get rights right now), it is stopping us from exploring any further TFS features. ...

How to tell MSI not to ovewrite existing file in Setup & Deployment Project in VS2005?

Hi, I've got a Setup & Deployment Project in VS2005. One of the files that i'm installing is a SQLite data file. I'm about to release a new version for the software, but i found that if i run the update on existing installation it overwrites the data file. I've got an updated data file in the setup project so it's newer than already i...

How to use deployment variables when building WAR files in Eclipse?

I have a workspace with several projects, that may be deployed in several configurations. When exporting to WAR from within Eclipse, i would like to specify the configuration, and have several properties in some configuration files exported to change according to that configuration - the context path attribute of the context.xml, the na...

Adding Custom prerequsites to visual studio setup project

I have a setup project that I need to install a redistributable that is not available in the default prerequisite list. Is it possible to add this redistributable to the bootstrapper that the setup project creates? ...

Progress Bar in Setup Application

I have created a custom action for my setup project and have successfully implemented a form that displays a progress bar for a download step in my install (I'm using a WebClient in my custom action code). So I have two questions that relate to each other. Is there any way to show a download progress bar in the main setup window rather...

Help with setting up haXe? :-)

Can somebody please help me setup haXe? Their website is http://www.haXe.org/ I've downloaded the required files but don't understand how to set it up. ...

What is the difference between the "Checkboxes (A)" and "Checkboxes (B)" dialogs in a Visual Studio setup project?

In a Visual Studio Setup & Deployment Project, I can design the user interface for the installer. I have a welcome screen, a license acceptance dialog, and then an installation location dialog. All good. I want to include one more dialog, to confirm changing of file associations. I think the way to do this is with a dialog that has a...

In a Visual Studio Setup Project, How do I make update of the Registry conditional on a Checkbox dialog?

Currently I use Registry Settings within the Setup Project to set the file associations and the icon for the associated files for my application. In the generic VS Setup project, the update to the registry is done always. How can I make the update to the registry conditional on the state of a checkbox dialog? ...

c# setup project

c# visual studio 2008 , setup project ,file types on targed machine, &open-> Arguments http://msdn.microsoft.com/en-us/library/0ehs907t%28VS.71%29.aspx in this section i can write only characters, how can i specify file name (to open). Many Thanks ...

In a Visual Studio setup project, How do I generate an uninstall script?

I have a Visual Studio setup project. Upon installation, it creates an uninstall batch file in the application folder. IF the user wants to uninstall the product, he can go to "Add/Remove Programs", or he can just double-click the uninstall.cmd. The contents are: %windir%\system32\msiexec /x {CC3EB7BF-DD82-48B9-8EC5-1B0B62B6D285} ...

VS Setup Project; How to restore a registry value on uninstall?

I have a setup project in Visual Studio. As part of the regular installation, it creates/updates some keys and values in the Windows Registry. How can I make the updates reversible? you may say "they are reversible", but I don't think so. Here's how I think it works: USe the VS designer to specify which Registry Keys and Values you...

Custom Action defined as script - can I make this a "Binary Table Stream"?

I have sevevral custom actions as part of an MSI project, defined in vS2008. The actions are defined as short Javascripts. There are two that run on install, and one that runs on uninstall. Everything works fine. These scripts gets installed as regular files in the Application Folder. The scripts that run during installation, dele...

Qt 4.5 third-party installer programs

Are there any good setup builders for Qt 4.5 projects on Windows? I have heard there is an installer that you just point at your Qt Creator project, and it figures out the dependancies and creates an .MSI setup file. I haven't located anything like that so far. What are others using? ...

How to get big Vista icons for a shortcut created with a VS2008 Setup and Deployment project?

First I made an app and I set its application icon to a icon I made. That icon has 256x256px in it, and it works good in windows vista (256 size gets used when really large icon). I've made a setup project, that installs the app I made, and I added a shortcut to the desktop. The icon of the shortcut won't get big, it stays +- 48x48 maxi...

After installing MySQL 64 Bit on Snow Leopard is it possible to migrate the old data?

Hey, in /usr/local i now have two mysql folders: mysql-5.1.34-osx10.5-x86 mysql-5.1.37-osx10.5-x86_64 is it possible to migrate the data from my old mysql folder to the 64 bit one? Thanks for help, dont really want to setup all my databases again :) ...

Modify Web.config during/after Web Setup project

How do I modify the web.config of a web site during the setup's execution? I would like to have the user construct a connection string and then store that in the web config. ...

Is there a way to force ClickOnce updates even while my app is not running?

I would like to periodically check for updates for my ClickOnce application even if it is not currently running. I found a post about using ClickOnce to deploy a background service, which would allow me to run a service that checks for updates, but the setup is kind of tricky so I'm wondering if there is an easier or more straightforward...