Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Vista ready for developers?

Vista ready for developers?

Scheduled Pinned Locked Moved The Lounge
csharpquestionasp-netvisual-studio
42 Posts 27 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Member 96

    This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

    C Offline
    C Offline
    Chris Losinger
    wrote on last edited by
    #2

    doing it right now. there's a bit of setup you need to do (install all the SPs, for one), then make VS run as admin (which breaks things like being able to drag/drop files from Explorer onto the IDE). then you have to fight with IIS, install some extensions. then reset all your folder permissions (if you did an upgrade from XP), because that stuff gets whacked and IIS can't get to your web files any more. but... eventually, after a bunch of tweaking, you can get it working fine.

    image processing toolkits | batch image processing | blogging

    M D D 3 Replies Last reply
    0
    • M Member 96

      This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

      R Offline
      R Offline
      Raj Lal
      wrote on last edited by
      #3

      yes i am doing it , its perfectly fine just run VS 2005 with admin privileges

      Omit Needless Words - Strunk, William, Jr.


      Dilbert ? Vista ? DailyDilbert Gadget here

      1 Reply Last reply
      0
      • M Member 96

        This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

        M Offline
        M Offline
        Marc Clifton
        wrote on last edited by
        #4

        John Cardinal wrote:

        Anyone doing this? Any limitations?

        I installed VS2005 and successfully compiled my WinForm apps. Don't have any ASP.NET stuff to try. But other than that, I haven't done much else with Vista. Wasn't there some problem with debugging and Vista? Some problem requiring admin rights (even though you're not supposed to do development as an admin, even according to MS)? Who knows. The real reason I don't use the Vista machine is because it's a machine my client sent me for testing, and it is NOISY. CPU fan, video card fan, PS fan, 8 hard drives. Good grief. And the tests failed. Can't play DVD's over the network, problems with MPG2 and AVI codecs, etc. What a mess. And besides VS2005, I'd also need to install SQL 2005 Express on the machine. That's not supposed to work quite right either, is it? What were they thinking? Marc

        Thyme In The Country

        People are just notoriously impossible. --DavidCrow
        There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
        People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

        R D 2 Replies Last reply
        0
        • C Chris Losinger

          doing it right now. there's a bit of setup you need to do (install all the SPs, for one), then make VS run as admin (which breaks things like being able to drag/drop files from Explorer onto the IDE). then you have to fight with IIS, install some extensions. then reset all your folder permissions (if you did an upgrade from XP), because that stuff gets whacked and IIS can't get to your web files any more. but... eventually, after a bunch of tweaking, you can get it working fine.

          image processing toolkits | batch image processing | blogging

          M Offline
          M Offline
          Marc Clifton
          wrote on last edited by
          #5

          Chris Losinger wrote:

          which breaks things like being able to drag/drop files from Explorer onto the IDE

          OK, I don't get this. Why, if I'm the friggin' admin, does it break that feature? Marc

          Thyme In The Country

          People are just notoriously impossible. --DavidCrow
          There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
          People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

          M C 2 Replies Last reply
          0
          • C Chris Losinger

            doing it right now. there's a bit of setup you need to do (install all the SPs, for one), then make VS run as admin (which breaks things like being able to drag/drop files from Explorer onto the IDE). then you have to fight with IIS, install some extensions. then reset all your folder permissions (if you did an upgrade from XP), because that stuff gets whacked and IIS can't get to your web files any more. but... eventually, after a bunch of tweaking, you can get it working fine.

            image processing toolkits | batch image processing | blogging

            D Offline
            D Offline
            Douglas Troy
            wrote on last edited by
            #6

            Hey Chris! How's that new car? I'm driving it right now. After I replaced the water pump, installed an oil filter and oil, fought with the wiring to the engine, added that fourth tire, tweaked the steering so it will turn left AND right, it's been fine. ... Would YOU buy and use a car that like? No? Then why the heck would you use software that way? I'm just sayin ... doesn't seem right folks. Maybe that's just me. :rolleyes:


            :..::. Douglas H. Troy ::..
            Bad Astronomy |VCF|wxWidgets|WTL

            C D C T P 6 Replies Last reply
            0
            • M Marc Clifton

              Chris Losinger wrote:

              which breaks things like being able to drag/drop files from Explorer onto the IDE

              OK, I don't get this. Why, if I'm the friggin' admin, does it break that feature? Marc

              Thyme In The Country

              People are just notoriously impossible. --DavidCrow
              There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
              People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

              M Offline
              M Offline
              Michael Dunn
              wrote on last edited by
              #7

              It has nothing to do with being admin, it's process integrity levels. A process can't communicate with another process that is running at a higher integrity level. So when Explorer is running medium and the IDE is running high, Explorer can't communicate (via drag and drop) with the IDE. It's the same system that protected mode IE uses. IE runs at low integrity, so code inside that process can't touch your other apps which run at medium.

              --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ Ford, what's this fish doing in my ear?

              S 1 Reply Last reply
              0
              • D Douglas Troy

                Hey Chris! How's that new car? I'm driving it right now. After I replaced the water pump, installed an oil filter and oil, fought with the wiring to the engine, added that fourth tire, tweaked the steering so it will turn left AND right, it's been fine. ... Would YOU buy and use a car that like? No? Then why the heck would you use software that way? I'm just sayin ... doesn't seem right folks. Maybe that's just me. :rolleyes:


                :..::. Douglas H. Troy ::..
                Bad Astronomy |VCF|wxWidgets|WTL

                C Offline
                C Offline
                Chris Losinger
                wrote on last edited by
                #8

                Douglas Troy wrote:

                Then why the heck would you use software that way?

                i'll resist getting Vista as long as i can, at home. at work, though, there were reasons for doing it.

                image processing toolkits | batch image processing | blogging

                E D D C 4 Replies Last reply
                0
                • C Chris Losinger

                  Douglas Troy wrote:

                  Then why the heck would you use software that way?

                  i'll resist getting Vista as long as i can, at home. at work, though, there were reasons for doing it.

                  image processing toolkits | batch image processing | blogging

                  E Offline
                  E Offline
                  Ed Poore
                  wrote on last edited by
                  #9

                  Chris Losinger wrote:

                  there were reasons for doing it.

                  Early retirement?

                  1 Reply Last reply
                  0
                  • C Chris Losinger

                    Douglas Troy wrote:

                    Then why the heck would you use software that way?

                    i'll resist getting Vista as long as i can, at home. at work, though, there were reasons for doing it.

                    image processing toolkits | batch image processing | blogging

                    D Offline
                    D Offline
                    Douglas Troy
                    wrote on last edited by
                    #10

                    That wasn't really directed at you, by any means ... just funny how "we'll" have to hack this, bash that, beat the system into submission, just to get things working ... and we're "fine" with it ... ... well, at least, we've been "programmed" that way ... :~


                    :..::. Douglas H. Troy ::..
                    Bad Astronomy |VCF|wxWidgets|WTL

                    E 1 Reply Last reply
                    0
                    • M Member 96

                      This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

                      M Offline
                      M Offline
                      MrBic
                      wrote on last edited by
                      #11

                      John Cardinal wrote:

                      This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

                      I've been running Vista since December 2006. (We're MS Partners so we got it early). As such I have only had 2 main issues with vista. 1) UAC is a pain in the a$$ at times. 2) The last batch of updates messed up my administration settings. --this happened to a few people after Patch tuesday. It forced me to re-install vista (clean wipe). Other than that it works like a charm. Better memory management, WAY better IIS, faster, and it allows me to stick our 5GB USB keys in it to use as virtual RAM for increased mindsweeper action!

                      T 1 Reply Last reply
                      0
                      • M Marc Clifton

                        Chris Losinger wrote:

                        which breaks things like being able to drag/drop files from Explorer onto the IDE

                        OK, I don't get this. Why, if I'm the friggin' admin, does it break that feature? Marc

                        Thyme In The Country

                        People are just notoriously impossible. --DavidCrow
                        There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                        People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                        C Offline
                        C Offline
                        Chris Losinger
                        wrote on last edited by
                        #12

                        Marc Clifton wrote:

                        Why, if I'm the friggin' admin, does it break that feature?

                        don't argue. it's for your own good. Vista knows best.

                        image processing toolkits | batch image processing | blogging

                        M 1 Reply Last reply
                        0
                        • C Chris Losinger

                          Marc Clifton wrote:

                          Why, if I'm the friggin' admin, does it break that feature?

                          don't argue. it's for your own good. Vista knows best.

                          image processing toolkits | batch image processing | blogging

                          M Offline
                          M Offline
                          Marc Clifton
                          wrote on last edited by
                          #13

                          Chris Losinger wrote:

                          don't argue. it's for your own good. Vista knows best.

                          Where's my abacus? The beads didn't have any security issues! ;P Marc

                          Thyme In The Country

                          People are just notoriously impossible. --DavidCrow
                          There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                          People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                          B M 2 Replies Last reply
                          0
                          • M Marc Clifton

                            Chris Losinger wrote:

                            don't argue. it's for your own good. Vista knows best.

                            Where's my abacus? The beads didn't have any security issues! ;P Marc

                            Thyme In The Country

                            People are just notoriously impossible. --DavidCrow
                            There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                            People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                            B Offline
                            B Offline
                            Blake Miller
                            wrote on last edited by
                            #14

                            If someone tried to hack your abacus, all we would have to do is dust for fingerprints...

                            1 Reply Last reply
                            0
                            • M MrBic

                              John Cardinal wrote:

                              This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

                              I've been running Vista since December 2006. (We're MS Partners so we got it early). As such I have only had 2 main issues with vista. 1) UAC is a pain in the a$$ at times. 2) The last batch of updates messed up my administration settings. --this happened to a few people after Patch tuesday. It forced me to re-install vista (clean wipe). Other than that it works like a charm. Better memory management, WAY better IIS, faster, and it allows me to stick our 5GB USB keys in it to use as virtual RAM for increased mindsweeper action!

                              T Offline
                              T Offline
                              tgrt
                              wrote on last edited by
                              #15

                              MrBic wrote:

                              1. UAC is a pain in the a$$ at times. 2) The last batch of updates messed up my administration settings. --this happened to a few people after Patch tuesday. It forced me to re-install vista (clean wipe).

                              So, other than a poor user experience, corrupted settings, and a complete re-install it's good!? :wtf:

                              M E 2 Replies Last reply
                              0
                              • D Douglas Troy

                                Hey Chris! How's that new car? I'm driving it right now. After I replaced the water pump, installed an oil filter and oil, fought with the wiring to the engine, added that fourth tire, tweaked the steering so it will turn left AND right, it's been fine. ... Would YOU buy and use a car that like? No? Then why the heck would you use software that way? I'm just sayin ... doesn't seem right folks. Maybe that's just me. :rolleyes:


                                :..::. Douglas H. Troy ::..
                                Bad Astronomy |VCF|wxWidgets|WTL

                                D Offline
                                D Offline
                                Duncan Edwards Jones
                                wrote on last edited by
                                #16

                                Would YOU buy and use a car that like? I've bought several - and thoroughly enjoyed learning more about cars than the average traffic-jam-fodder as a result.;)

                                '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd

                                1 Reply Last reply
                                0
                                • M Member 96

                                  This may be a dumb question, but somewhere in all the talk of vista etc I've completely missed whether you can actually install visual studio 2005 on it and do asp.net and winform development. Anyone doing this? Any limitations?

                                  R Offline
                                  R Offline
                                  Ryan Roberts
                                  wrote on last edited by
                                  #17

                                  Doing it. I have encountered some issues with managed directx (XNA studio doesn't work either). UAC screws up quite a few installers too (postsharp for one) and you will have to mess around with msiexec quite a bit. I really wouldn't recommend it for serious work (I use it for hobby game dev).

                                  Ryan

                                  "Michael Moore and Mel Gibson are the same person, except for a few sit-ups. Moore thought his cheesy political blooper reel was going to tell people how to vote. Mel thought that his little gay SM movie about his imaginary friend was going to help him get to heaven." - Penn Jillette

                                  1 Reply Last reply
                                  0
                                  • T tgrt

                                    MrBic wrote:

                                    1. UAC is a pain in the a$$ at times. 2) The last batch of updates messed up my administration settings. --this happened to a few people after Patch tuesday. It forced me to re-install vista (clean wipe).

                                    So, other than a poor user experience, corrupted settings, and a complete re-install it's good!? :wtf:

                                    M Offline
                                    M Offline
                                    MrBic
                                    wrote on last edited by
                                    #18

                                    noT really poor user experience, there's a few things about UAC i don't like: -Currently when installing a .msi file you need to write a batch file that calls MSIEXEC.exe -i [fullpathof msi fil] , and then "Run as administrator". Sure it's secure, but it's a pain. Whenever you run any program in Administrator Mode - it asks for confirmation. ---I wish there was an option "Yes and don't ask me anymore". or "YEs, and if you ask me again I'll format your computerhood". Other than that, and the weird issue with my Administrator priviledges...(actually the entire Administrator roll on the computer was hosed...) i'm happy with it. It only takes 27 minutes to install Vista Ultimate with a complete format. yes, it's very quick. (on my development work computer). Took me 3 hours to get the entire computer Up and Running with a complete format -> ALl development tools installed, and I was able to watch stargate on my 2nd monitor while it was installing :D

                                    A 1 Reply Last reply
                                    0
                                    • M Marc Clifton

                                      Chris Losinger wrote:

                                      don't argue. it's for your own good. Vista knows best.

                                      Where's my abacus? The beads didn't have any security issues! ;P Marc

                                      Thyme In The Country

                                      People are just notoriously impossible. --DavidCrow
                                      There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                                      People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                                      M Offline
                                      M Offline
                                      MrBic
                                      wrote on last edited by
                                      #19

                                      The abacus would have security if it was made out of aero glass :laugh: UAC is nice... but at times... i want to turn it into johny depp and punch it!

                                      A 1 Reply Last reply
                                      0
                                      • C Chris Losinger

                                        doing it right now. there's a bit of setup you need to do (install all the SPs, for one), then make VS run as admin (which breaks things like being able to drag/drop files from Explorer onto the IDE). then you have to fight with IIS, install some extensions. then reset all your folder permissions (if you did an upgrade from XP), because that stuff gets whacked and IIS can't get to your web files any more. but... eventually, after a bunch of tweaking, you can get it working fine.

                                        image processing toolkits | batch image processing | blogging

                                        D Offline
                                        D Offline
                                        Duncan Edwards Jones
                                        wrote on last edited by
                                        #20

                                        Any links or hinst on what struggling you need to do with IIS? I've an ASP.NET app (VS 2005) that I'd like to move onto the vista machine...

                                        '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd

                                        C 1 Reply Last reply
                                        0
                                        • D Douglas Troy

                                          That wasn't really directed at you, by any means ... just funny how "we'll" have to hack this, bash that, beat the system into submission, just to get things working ... and we're "fine" with it ... ... well, at least, we've been "programmed" that way ... :~


                                          :..::. Douglas H. Troy ::..
                                          Bad Astronomy |VCF|wxWidgets|WTL

                                          E Offline
                                          E Offline
                                          ed welch
                                          wrote on last edited by
                                          #21

                                          Douglas Troy wrote:

                                          "we'll" have to hack this, bash that, beat the system into submission, just to get things working ... and we're "fine" with it ...

                                          At least now you Windows guys have something in common with the Linux hippies

                                          B 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups