473,805 Members | 2,028 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Visual Studio 2005 on USB Stick

I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks

Oct 16 '07 #1
12 1979
Hufaunder:

I don't think you can accomplish that with a USB drive, for Visual Studio is
very integrated into the OS [i.e. the registry]. And I don't think you can
remote connect -- or tunnel -- into another computer, for the program is
LOCAL only to the computer you're running it on. Again, I don't think it's
possible, but I may be wrong.
Trecius

"hu*******@yaho o.com" wrote:
I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks

Oct 16 '07 #2
<hu*******@yaho o.comwrote:
>I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.
Not very likley...

In that scenario your realistic options are:
- Create a VM-Ware or Virtual PC image with an O/S and your dev tools.
- Bring a Laptop.

You can, of course, copy the .Net compilers to a USB stick, along with your
favorite text editor. You can debug using WinDbg & Son of Strike (which can
also be on the USB stick), and then edit your code & compile. This option
though would really suck compared to using VS.Net.

--
Chris Mullins
Oct 16 '07 #3
Hi,

As other people mentioned it's not possible.

Another possible option is that if your client has internet connection you
could remote to your dev machine @ your office and do the changes.

Personally I do not like to have my source codes around so I would not use a
client machine for any debugging/compilation.

Of course you can always bring your own notebook :)

--
Ignacio Machin
www.laceupsolutions.com
Mobile & warehouse Solutions.
<hu*******@yaho o.comwrote in message
news:11******** **************@ v23g2000prn.goo glegroups.com.. .
>I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks

Oct 16 '07 #4
On Oct 16, 1:39 pm, "Ignacio Machin \( .NET/ C# MVP \)" <machin TA
laceupsolutions .comwrote:
Hi,

As other people mentioned it's not possible.

Another possible option is that if your client has internet connection you
could remote to your dev machine @ your office and do the changes.

Personally I do not like to have my source codes around so I would not use a
client machine for any debugging/compilation.

Of course you can always bring your own notebook :)

--
Ignacio Machinwww.laceu psolutions.com
Mobile & warehouse Solutions.<hufa un...@yahoo.com wrote in message

news:11******** **************@ v23g2000prn.goo glegroups.com.. .
I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.
Thanks- Hide quoted text -

- Show quoted text -
Thanks for all the input. Currently I am bringing my laptop to do
changes and then copy to program over to the clients machine. Of
course that makes it impossible to do any real debugging. Therefore, I
was looking for a solution where I can have both VS2005 and my source
on a memory stick. That way none of the two is ever touching their
computer.

Is there any other way this could be achieved?

Thanks

Oct 16 '07 #5
hu*******@yahoo .com wrote:
Thanks for all the input. Currently I am bringing my laptop to do
changes and then copy to program over to the clients machine. Of
course that makes it impossible to do any real debugging. Therefore, I
was looking for a solution where I can have both VS2005 and my source
on a memory stick. That way none of the two is ever touching their
computer.

Is there any other way this could be achieved?
Well, other than having your client use the program on your own laptop
for the purpose of reproducing bugs, another option is to install the
remote debugging component on your client's computer and then debug from
your laptop using the installed Visual Studio there.

It does mean installing at least that one part of Visual Studio on the
client's computer, but at least the source code would not need to be
there. Given your apparent need to debug based on the software
installed on the client's computer, this may in fact be the most
appropriate solution.

By the way, I'm a little confused by the "none of the two is ever
touching their computer" statement. If you have VS and your source code
on a memory stick, and you then plug that memory stick into your
client's computer, all of the contents on the memory stick are not
"touching" your client's computer. It's not clear to me whether your
concern is one of security, or just of practicality, but if the former
then using a memory stick isn't a good solution anyway.

Pete
Oct 16 '07 #6

The .NET 2.0 SDK includes "Microsoft CLR Debugger" which is a stripped
down version of visual studio and works very well for debugging (in
many ways better than VS since it's stripped down and runs faster).

It needs to be installed but it's much smaller than full VS.

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.


On Tue, 16 Oct 2007 10:58:07 -0700, "hu*******@yaho o.com"
<hu*******@yaho o.comwrote:
>I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks
Oct 16 '07 #7
On Tue, 16 Oct 2007 10:58:07 -0700, "hu*******@yaho o.com"
<hu*******@yaho o.comwrote:
>I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks
I don't believe you can do that, because VS has dependencies in the
file system and registry after installation.

If it is for quick and dirty coding, you can use Jeff Key's Snippet
Compiler.

Alternatively you can carry around on your flash disk SharpDevelop,
which is pretty functional. You can install it on a client PC, make
your changes and uninstall it when you're done in a few minutes

--
http://bytes.thinkersroom.com
Oct 16 '07 #8
On Oct 16, 12:58 pm, "hufaun...@yaho o.com" <hufaun...@yaho o.com>
wrote:
I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks
An interesting challenge. Here is what you might try:
use a clean box that has the same machine name and network info as the
one you want to work on and
1. Make a backup of your Registry
2. Run filemon some other filewatching program
3. Attach your USB drive to the box
4. Install VS on the USB drive
5. Do a textual Dif on the old registry vs the new registry
6. Copy all of the different registry keys to a reg file
7. Look at the filemon output and copy all of the new files on the C
directory over to the USB drive in a specific location
8. When you are on the other machine
- backup their registry
- apply your reg file
- copy the C drive over

I don't really know if that works. If someone wants to test that out
and let us know that would be cool.

Oct 17 '07 #9
see if your USB can hold a virtual PC image that has win2k+VS2005... maybe xp

--
Sheng Jiang
Microsoft MVP in VC++
<hu*******@yaho o.comwrote in message
news:11******** **************@ v23g2000prn.goo glegroups.com.. .
I often find myself in the situation where at a customers site I have
to do some quick debugging or program changes. Obvioiusly, I do not
want to install VS2005 on their system. Is there a ways to install
VS2005 on a big and fast USB stick, plug it into a computer without
VS2005 and start using it there? If not are there any alternatives.

Thanks

Oct 17 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1315
by: Tetris | last post by:
I am preparing the MCAD Certification. I use the Visual Studio 2005. But I can't create Web application. There is only ASP.NET Web service project. Is it possible to develope ASP.NET web application project in Visual Studio 2005? If possible how? In the .aspx file how can I change the document property " Page layout" into " Flow layour" In the VS 2005 I cannot make .cs file clicking " View code" of the .aspx file.
6
3381
by: JonSteng | last post by:
..Net Visual Studio Professional 2003 Version 7.1.3088 ..Net Framework 1.1 SP1 Version 1.1.4322 IIS 5.1 Windows XP Professional SP2 Micron T3000 Laptop (1.5 GHz; 1GB RAM; 40GB HD with 17GB Free) I installed FrontPage server extensions to IIS on my computer while following instructions in a Microsoft ASP.Net MCSD training book. After installing the FrontPage Server Extensions I cannot create a new
0
3358
by: fiona | last post by:
Innovasys Ltd., a leader in help authoring and documentation tools, today announced the inclusion of a tailored version of the Innovasys HelpStudio help authoring product, HelpStudio Lite, in the Microsoft Visual Studio 2005 Software Development Kit. By providing a full help authoring environment within the Visual Studio 2005 SDK, Innovasys is providing developers building components and products that integrate with Visual Studio 2005 a...
8
6279
by: WT | last post by:
Is it normal that Visual Studio sets the PreInit handler for a Page from the OnInit code ? No chance to fire it as OnPreInit is run befor OnInit. ??? CS
3
6070
by: Edwin Smith | last post by:
I have a 2 form project in VS2005 that now hangs whenever I try to do anything with the second form. This seems to have started when I added some SQL tables from a Pervasive v.9 database using the Pervasive ODBC driver. The devenv.exe process hangs and will not respond with about 50% cpu usage and about 100 megs of memory used. I am running it on an Athlon 64 bit dual core with 32 bit Windows XP pro. I have 2 megs of memory so I don't...
1
3604
by: johnlim20088 | last post by:
Hi, Currently I have 6 web projects located in Visual Source Safe 6.0, as usual, everytime I will open solution file located in my local computer, connected to source safe, then check out/check in some files and work on it. Let say, I want add new page to web project named websiteOrder.sln, i will open websiteOrder.sln in my local computer, connected to websiteOrder.sln located in Visual Source Safe 6.0(source safe located in another...
5
10098
by: Michael Reichenbach | last post by:
After working with script languages, notepad(++) and co. and several other ide`s I found something which really improved my productivity (Visual Studio 2005). It`s imho better then dev-cpp... I worked with C# and VB.net a bit and it was really easy because of the debugger, the interactive debugger, intellisense, command completer and so on. I would like to stick to this ide. But I thought about to invest in C++ instant of C# / VB.net...
4
1931
by: =?Utf-8?B?ZGF2aWQ=?= | last post by:
We have to upgrade our Visual Studio .NET 2003 enterprise edition to .NET 2005. However, there is no enterprise edition for Visual Studio .NET 2005. There are 4 versions available for visual studio team edition 2005, Software Architect, Software Developer, Software Tester, and Team Suite which includes all three architect, developer, and tester. There are also professional and standard. Which is one is equivalent to Visual Studio .NET...
12
2246
by: hufaunder | last post by:
I often find myself in the situation where at a customers site I have to do some quick debugging or program changes. Obvioiusly, I do not want to install VS2005 on their system. Is there a ways to install VS2005 on a big and fast USB stick, plug it into a computer without VS2005 and start using it there? If not are there any alternatives. Thanks
0
9718
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9596
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10363
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10107
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7649
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6876
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5678
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4327
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3846
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.