Slashdot Mirror


Windows RT vs. Windows 8 Could Burn Consumers

Nerval's Lobster writes "The Surface currently available for pre-order runs Windows RT, a version of the operating system designed to run on ARM architecture. Windows RT looks virtually identical to Windows 8, which, like previous versions of Windows, runs on the x86 architecture that dominates the laptop and desktop market. Microsoft's early marketing materials aren't exactly highlighting that differences between Windows RT and Windows 8 — and as a result, there's a high potential for unsuspecting consumers to end up burned when they buy a Windows RT tablet expecting the complete Windows experience. But Windows RT won't support legacy Windows applications — instead, users will need to hope and pray that developers port those applications to the Windows Store, the only venue for RT-supported apps. Over at The Verge, the intrepid Sean Hollister asked eight Microsoft Store representatives about the differences between Windows 8 and Windows RT, and received several confusing responses. 'To their credit, half of the representatives admitted that Windows RT wasn't as capable as Windows 8,' he wrote. 'The other half not so much. Moreover, those reps who did admit issues seemed dismissive of Windows RT as a whole.'"

297 comments

  1. I never expected my iPad to run OSX applications.. by Assmasher · · Score: 4, Insightful

    ...and I didn't have to read a disclaimer from Apple stating "Will not run OSX applications"...

    --
    Loading...
  2. A terrible mistake. by man_ls · · Score: 5, Informative

    Microsoft is making a terrible mistake by not trying their absolute hardest to optimize the heck out of the Common Language Runtime for ARM. I don't think anyone would expect a tablet to be an acceptable desktop replacement machine - nobody thinks that of an iPad - but the fact they're not leveraging an existing architecture to bring application compatibility to the RT is going to cause major consumer headaches. No "native" apps would be a fine limitation, but they really should have the .NET CLR available for developers.

    I occasionally chat with a few Microsoft SDEs who are directly involved in the development of native RT apps, and it usually goes something like this: "ARM is fucking terrible, it's weak and powerless!" "How come other platforms, including Linux, can run on ARM successfully?" "ARM isn't powerful enough to run Windows applications, that's what we mean. That's why we have to rewrite everything to be more highly optimized for these few Windows RT apps." "So, the reason Windows RT can't run Windows apps is because most Windows software is so bad, it wouldn't perform acceptably on something being run at its limits?" "Pretty much."

    1. Re:A terrible mistake. by parlancex · · Score: 2

      I think the logic here is that it would be pointless to port the CLR when the majority of .NET applications have bindings to x86 native DLLs / modules anyway.

    2. Re:A terrible mistake. by allaunjsilverfox2 · · Score: 2

      I think the logic here is that it would be pointless to port the CLR when the majority of .NET applications have bindings to x86 native DLLs / modules anyway.

      I'm not familiar with .net, But I thought the purpose of it was to be cross-platform?

      --
      Restore the madness of youth's lechery
    3. Re:A terrible mistake. by Anonymous Coward · · Score: 1

      Plenty of .NET apps use P/Invoke to access Win32 APIs or native code libraries, though, or require on libraries that do the same. This is before you get into the fact that .NET itself has strong ties to Win32 and making applications even source compatible would be a huge effort. And the whole point of WinRT is to break that tie so you'd only get a gimped version of .NET and so any major app would probably have to rewrite huge chunks anyway.

    4. Re:A terrible mistake. by HaZardman27 · · Score: 1

      I don't get it; I believe the Zune HD and Windows Phone had somewhat limited versions of the .NET CLR, and they were both ARM based. What is MS's problem here?

      --
      Apparently wizard is not a legitimate career path, so I chose programmer instead.
    5. Re:A terrible mistake. by Lunix+Nutcase · · Score: 1

      And? You can still use native code and Win32 through P/Invoke which many apps do. It's no different than Java apps I've seen that have ties to Windows through tying their app to some Windows library they call through JNI.

    6. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      Do you have a reference for "the majority of .NET applications have bindings to x86 native DLLs"? You may be right, but I would like to see the numbers.

    7. Re:A terrible mistake. by man_ls · · Score: 1

      Not being an SDE myself, I wasn't aware of that fact - I assumed the point of the CLR and the entire managed code paradigm of .NET precluded such native dependencies.

    8. Re:A terrible mistake. by Billly+Gates · · Score: 1

      So was java. How many corporate apps in the office that require Java only work on Windows or IE 6/7? 90% of them.

      As long as developers have a target audience they will always insert quirks and proprietary code that only works on platform x, hence same reason intranet software and portals still only work in IE 6.

    9. Re:A terrible mistake. by Anonymous Coward · · Score: 0, Interesting

      I never understood the appeal of these interpreted languages. I've always been a fan of native code....if you use cross-platform libraries like Qt or GTK you can build your app for any OS.

    10. Re:A terrible mistake. by Lunix+Nutcase · · Score: 3, Insightful

      Nope. Native code is extremely easy to call through P/Invoke. It's the .NET equivalent of Java's JNI.

    11. Re:A terrible mistake. by Lunix+Nutcase · · Score: 1

      Nothing. You can use .NET on WinRT.

    12. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      The purpose was to be able to run it on the cloud, back before "the cloud" was something. That's why they called it .net, it was supposed to be one piece of the whole system that was integrating your computer with the network.

      Eventually that all got scaled back, and Azure is a mere shadow of what was envisioned, as everyone builds web apps now.

    13. Re:A terrible mistake. by parlancex · · Score: 1

      It does, kind of.

      Assuming you can write your application with references to libraries only included in the vanilla .NET framework, the only native libraries your code requires are platform libraries which Microsoft could have an implementation for in the target architecture. You can however (and many application developers do) choose to link your .NET application with as many native unmanaged modules as you'd like, for performance or some functionality not found in framework.

    14. Re:A terrible mistake. by Anonymous Coward · · Score: 1

      If you look at something as simple and ubiquitous as zlib for .zip compresion, there's no .NET version so if you want to use it you have to call native code. I'd imagine that pretty much any non-trivial .NET program has some kind of dependency on a third-party library like that which would have to be ported to ARM. It's not like there's been any need to worry about it since Microsoft dumped the non-Intel versions of NT, and the history of Windows apps should have told us by now that few Windows developers worry about things they don't have to worry about.

    15. Re:A terrible mistake. by Lunix+Nutcase · · Score: 4, Informative

      1. .NET languages are JIT compiled not interpreted.
      2. GTK and Qt don't work for all OSes.

    16. Re:A terrible mistake. by roc97007 · · Score: 1

      I occasionally chat with a few Microsoft SDEs who are directly involved in the development of native RT apps, and it usually goes something like this: "ARM is fucking terrible, it's weak and powerless!" "How come other platforms, including Linux, can run on ARM successfully?" "ARM isn't powerful enough to run Windows applications, that's what we mean. That's why we have to rewrite everything to be more highly optimized for these few Windows RT apps." "So, the reason Windows RT can't run Windows apps is because most Windows software is so bad, it wouldn't perform acceptably on something being run at its limits?" "Pretty much."

      Well, yeah, but haven't we known this for, like, decades? The only thing that hasn't absolutely crushed the Windows experience is that the hardware has somehow managed to keep up with the requirements of the OS. When the netbook phenomena started, Microsoft had a very difficult time playing in that space until the netbook was re-imagined as a low-ish end laptop. Even though the early netbooks ran Linux just fine.

      --
      Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
    17. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      It is cross platform - it works on any platform that runs Windows on x86...

    18. Re:A terrible mistake. by Billly+Gates · · Score: 1

      But Joe SixPack will not. He will see this and think "Uh cool it is Windows and I can run my stuff" and then look at the Windows 8 machine next to it that costs twices as much.

      Which one will Joe Six Pack at Walmart buy? If you answered the cheap one correct! Then he will wonder why his software wont run.

      I mean there is no documentation anywhere. Windows is Windows to consumers and they do not understand how assembly and binary code differ between machines. All they know is software made for a mac will run on and mac and software for a pc will run on a pc.

    19. Re:A terrible mistake. by symbolset · · Score: 0

      When you can't write efficient code you need every platform to have insane battery killing performance and huge storage to overcome your proficiency shortfall. That is why Windows tablets have always sucked. With a 12GB default load on Surface RT it is clear they still don't get it. It is beginning to seem that the issue is they just aren't capable of solving this problem, ever.

      --
      Help stamp out iliturcy.
    20. Re:A terrible mistake. by Lunix+Nutcase · · Score: 1

      And on x86_64 and ARM devices when using the Micro Framework.

    21. Re:A terrible mistake. by jader3rd · · Score: 1

      I'm not familiar with .net, But I thought the purpose of it was to be cross-platform?

      I always felt the purpose of .Net was to give MS devs a managed language. Either way, the purpose of C++ was to be cross platform. But a lot of C++ code has some x86/x64 specific parts, making many C++ programs difficult to port.
      The main reason why I think .Net programs aren't allowed to run is because they expect "normal" computer resources and thread scheduler. But WinRT isn't designed like that at all. There is a very unfair thread scheduler that really is trying to conserve energy. While I imagine there are builds of .Net that run on ARM, Microsoft only wants apps written with the intentional limitations of WinRT running on Windows RT. I think it's less of an ARM vs. x86 issue, and more of a expectations of a general computer vs. expectations of a power conscientious appliance.

    22. Re:A terrible mistake. by Anonymous Coward · · Score: 0, Insightful

      GTK and Qt run on Windows, OS X , and Linux. That covers practically everyone. If you have to develop on some obsure architecture you could always roll your own Qt or GTK environment since the source is available.

      As far as JIT compilation, I prefer doing a simple ./configure + make + make install. That gives me a nice clean executable I can package and distribute. It's just so easy. If my install package includes all library dependencies, I can be certain that my app will just work on the system it was built for... no need to worry about a user getting errors because they don't have some clunky runtime installed. (I really hated that about Java and .NET)

    23. Re:A terrible mistake. by gl4ss · · Score: 1

      I don't get it; I believe the Zune HD and Windows Phone had somewhat limited versions of the .NET CLR, and they were both ARM based. What is MS's problem here?

      gp is not right. it's the lack of native(and filesystem access.. and lack of other types of access) that was hampering zunehd/winpho7 apps the most, not any "no .net" nonsense. it's the no native part (and gimped multitasking) which was forcing the gimped apps on wp7(leaving game devs to come up with solutions to cheat or gimp their games or just not porting them at all, there's a reason why android and ios have GTA III..).

      --
      world was created 5 seconds before this post as it is.
    24. Re:A terrible mistake. by nzac · · Score: 4, Interesting

      I suspect the main reason is even though you may have to get a stopwatch out to tell the difference on a desktop, CLR/.NET does not have native performance which will show when you try to run them on thin (as in mm) devices. Most significantly you probably need to fit twice as much RAM in the case, i would guess memory bandwidth and cache sizes also are not friendly to performance and it would cost users battery time as no one would use the low power APIs.

      The other things i can think of is that they don't want rushed ports to Metro and maybe it was easier to start from scratch.

    25. Re:A terrible mistake. by man_ls · · Score: 1

      I'll have to ask about that next time we're arguing about ARM vs X86. Although I know these guys well enough to extract tiny bits of proprietary information on occasion (such as the conversations I cited originally), I suspect the details of the thread scheduler may be more severely verboten to outsiders such as myself.

    26. Re:A terrible mistake. by Lunix+Nutcase · · Score: 1

      GTK and Qt run on Windows, OS X , and Linux. That covers practically everyone.

      Well except for the billion smartphones and tablets. GTK has no official port for iOS, Android, or Windows Phone 7/8. Qt only has unofficial, incomplete ports to Android and iOS and no Windows Phone 7/8 or WinRT support. Thosenare hardly "obscure platforms" and why would I bother with them if I have to roll my own? Porting either is nomtrivial matter.

      Your comment about JIT compilation is also silly. You still build an application that you distribute and any smart installer checks dependencies and will install any redistributables it needs. You sound like an amateur if you can't handle something so basic.

    27. Re:A terrible mistake. by RocketRabbit · · Score: 2

      Yes, but when Microsoft says something's cross platform they mean it will work on various flavors of Windows x86.

      Normally you hear "cross platform" and think "gee, it'll run on my ARM Linux box, my x86 FreeBSD box, my Solaris enterprise-grade server, and Windows" but you're thinking in the wrong way when it comes to MS's special definition of cross-platform.

    28. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      So ARM is inferior to x86 as far as Windows in concerned, so avoid Windows RT.

      What's so hard about that?

    29. Re:A terrible mistake. by fast+turtle · · Score: 1

      Well I'm one of those who's looking at an Acer W500 Tablet as a desktop replacement. Yes it'll handle my desktop needs with the exception of storage but with a NAS at home, why do I need more then enough capacity to handle a limited set of local files anyway? The nice thing is the AMD APU is powerful enough to actually run my primary game (Guildwars), thus it is quite capable of functioning as a desktop replacement for me. Hell I rarely use word anymore since I've got OneNote installed and it offers the functionality that I really need from word.

      --
      Mod me up/Mod me down: I wont frown as I've no crown
    30. Re:A terrible mistake. by Mike+Buddha · · Score: 1

      I think you underestimate Joe Sixpack.

      --
      by Mike Buddha -- Someday the mountain might get him, but the law never will.
    31. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      The same Joe SixPack who bought those Pentium IVs because they were 3.0 ghz and not the faster AthlonXps that were 2.2 ghz Joe Sixpack right?

    32. Re:A terrible mistake. by KliX · · Score: 1

      No, the purpose was mainly rapid application development.

    33. Re:A terrible mistake. by R3d+M3rcury · · Score: 1

      But I thought the purpose of it was to be cross-platform?

      It is cross-platform. It'll run on Windows XP, Windows Vista, and Windows 8.

      What other platforms are there?

    34. Re:A terrible mistake. by DarkOx · · Score: 2

      ah the cross platform dream of .Net, run your application 32-bit and 64-bit Windows!

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
    35. Re:A terrible mistake. by davidbrit2 · · Score: 1

      Sure it's cross platform! It runs on Windows 2000, Windows XP, Windows 2003, Windows Vista, Windows 2008, Windows 7, Windows 8, Windows Mobile, Windows CE...

    36. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      So your reference for "the majority of .NET applications have bindings to x86 native DLLs" is "I'd imagine"?

    37. Re:A terrible mistake. by drinkypoo · · Score: 1

      What's crazy is that XP/Embedded was all that, a little bloaty sure, but nothing like RT. Unfortunately, it had a crap interface.

      I think the real case is that Microsoft can only get one thing right at a time.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    38. Re:A terrible mistake. by bertok · · Score: 1

      Yeah, I've noticed this before, and it's insane.

      The .NET Framework and VB/C# in particular are a bit strange in that they have much better perceived performance on a desktop compared to Java, the closest equivalent, but actually have very poor performance. Java is something like 2x faster in benchmarks!

      This is because unlike Java, Microsoft has a sane startup sequence for applications. The .NET framework shares DLLs, shares pre-JIT-ed uncompressed native code, etc... In contrast, Java lives in an isolated bubble world and repeats every single step of the launch sequence every time, for every application, no matter what. It unzips JAR files every time, for example, which is crazy slow. It interprets instead of JITs during the first pass, which is crazy slow. It never caches anything. It never shares anything between processes, including the entire Java runtime itself.

      On the other hand, Java wins benchmarks because its JIT generates a whole bunch of fancy optimisations, sometimes even with runtime profiler-based optimisation. Meanwhile, there's a section in the C# manual somewhere that states something along the lines of "The C# compiler does not perform optimisations. If this is required, use C++/CLR". Similarly, the .NET JIT is not as good as the Java JIT, and doesn't do anywhere near as many optimisations. The .NET Framework manual states somewhere that "optimisations should be performed by the high-level language compiler". Err... what the fuck?

      The result is that .NET apps written in VB or C# are much more responsive than Java apps, but lose benchmarks. On a 3GHz Intel CPU, this just doesn't matter any more for typical GUI apps, or even some games. On a phone, Java's advantages are much more important. The JRE is permanently loaded, so most of the startup performance issues are gone. Some phones reduce startup times by sharing various things, which Java on the PC doesn't. Some phones pre-JIT Java apps. This is why Android can run a Java-derived language and get great performance.

      The state of .NET performance was good-enough for a 1.0 release on high-performance PCs, but Microsoft dropped the ball by not continuing to optimise it to have better throughput for high-performance server applications and low-powered embedded applications like phones and tablets.

    39. Re:A terrible mistake. by swillden · · Score: 1

      No "native" apps would be a fine limitation, but they really should have the .NET CLR available for developers.

      I think my head just nearly asploded.

      Are you serious? You can't build .NET apps with C# that run on both RT and Windows 7/8? That's... beyond stupid.

      We all know it's perfectly possible to run interpreted bytecodes with a JIT compiler and get very acceptable performance on ARM... Android has been doing it for many years, on much slower processors than the current generation of ARM CPUs. In fact, there's basically no significant difference between Java running on Dalvik on Android and native binaries running on iOS. Works Just Fine. And I know Microsoft has plenty of people who are just as talented as anyone at Google.

      Just goes to show that anyone can be stupid, I guess. Or maybe Microsoft really does have enough influence with the world's developers that they can make it work. A few years ago I'd have said they did. Today... I'm less certain. Android, iOS, OS X and the Web (as a platform) have all eaten into Microsoft's developer mindshare. They're still the biggest kid on the block, but not nearly as dominant as they were, and they're also going to be asking developers to split their attention between Windows x86 and Windows RT.

      I don't see any way that works well for them.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    40. Re:A terrible mistake. by swillden · · Score: 3, Informative

      So was java. How many corporate apps in the office that require Java only work on Windows or IE 6/7? 90% of them.

      In my experience it's more like 10% of them. And I'm not sure how IE fits into Java desktop apps.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    41. Re:A terrible mistake. by swillden · · Score: 3, Insightful

      Nope. Native code is extremely easy to call through P/Invoke. It's the .NET equivalent of Java's JNI.

      Except that Sun had the foresight to make JNI an error-prone pain in the ass.

      Well, I'm not sure that it was exactly "foresight", but in hindsight it seems to have been the right choice. Most people avoid JNI like the plague, even when they aren't worried about cross-platform compatibility.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    42. Re:A terrible mistake. by Anonymous Coward · · Score: 0

      Yes. Until Microsoft spent the effort to optimize it and deploy many additional libraries on Windows, and neither they or anybody else pursued the effort to the same degree on any other platform (Mono is a pale shadow by comparison). At which point it may as well be single-platform. So, in purpose, yes, you're right. In practice, no.

      If you check into the history, Windows NT also used to run on Alpha, MIPS, and PowerPC CPUs, and Windows NT was called "cross platform" as a result. Didn't exactly last long. This is a common habit with Microsoft (IE, Silverlight). Claim to be "cross platform", release token or variably broken support for the other platforms, and then let the versions lag or drop the platforms other than Windows.

    43. Re:A terrible mistake. by shutdown+-p+now · · Score: 1

      This doesn't make sense, because Windows RT does have CLR - what do you think a Metro app written in C# or VB runs on?

      What it doesn't have - and what GP was asking about - is desktop-compatible CLR. The kind that would let you run .NET programs compiled for previous versions of Windows.

    44. Re:A terrible mistake. by shutdown+-p+now · · Score: 1

      On the other hand, Java wins benchmarks because its JIT generates a whole bunch of fancy optimisations, sometimes even with runtime profiler-based optimisation. Meanwhile, there's a section in the C# manual somewhere that states something along the lines of "The C# compiler does not perform optimisations.

      You misunderstood the meaning of that quote in the manual. What it means is that C# compiler does not try to optimize the generated bytecode - for example, inline functions on bytecode level. Java doesn't do that, either. The JIT is the one that's supposed to do inlining etc (and, yes, Java has a better JIT - but CLR still does method inlining, for example, or constant propagation).

      The result is that .NET apps written in VB or C# are much more responsive than Java apps

      That's largely because most .NET GUI apps are (still) written in WinForms, which is a not-so-thick layer on top of stock Win32 widgets - so a lot of heavy logic is native. On the other hand, most Java GUI apps are written in Swing, which is 100% Java all the way down until you get to low-level rendering primitives.

      The state of .NET performance was good-enough for a 1.0 release on high-performance PCs, but Microsoft dropped the ball by not continuing to optimise it to have better throughput for high-performance server applications and low-powered embedded applications like phones and tablets.

      You seem to be assuming that .NET today is not improved compared to where it was in 1.0. That is wrong. The JIT itself has been improved many times, notably in 2.0 and in 4.0. GC has been radically improved. Basically, it runs much faster. Still not as fast as Sun JVM (because that improved also), but definitely much faster than e.g. Dalvik on Android.

      This, by the way, is another weak point in your comparison. You talk about Java as a single implementation, but it's not. Yes, Sun's implementation - that really only runs on the desktop - is wicked fast. But most mobile/phone implementations don't run it, they run their own stuff which has basic JIT (if it has it at all) and is slow. Heck, even Dalvik only got JIT in, what, Android 2.3? And it's still slow.

      However, for UI apps, the crucial bit is responsiveness, not raw perf. And you can do it even with interpreted bytecode - it's more a matter of doing stuff right, like not performing expensive computations on UI thread. WinRT APIs are actually designed to force the developer to use that model - they're almost all asynchronous callback-based. So you can't just open and read a file - you have to start the open and register a callback for when the open is done, and then in that callback you don't just read a sequence of bytes, you start the read and register a callback that receives the bytes once they're available.

    45. Re:A terrible mistake. by shutdown+-p+now · · Score: 1

      You're assuming that lack of app compatibility is purely a technical limitation. It's not. CLR is not at all special in that regard - it's not like it would be impossible to provide a native ARM SDK and toolchain for desktop apps (I mean, what do you think desktop IE and Office for ARM are written in?). Yes, it'd mean that apps would have to be recompiled, but for many actively maintained ones this isn't an issue.

      Oh, and Windows RT does have CLR. Keep in mind that you can write Windows Store apps for it in C# and VB - how do you think those run? It's the CLR. Furthermore, it has PowerShell there, and that's completely managed also - again, CLR. It's just the same thing as for native - you can't run your own desktop app on the platform, period - it actively blocks you from doing so.

    46. Re:A terrible mistake. by shutdown+-p+now · · Score: 1

      You can build .NET apps that run on RT and Windows 8. But they have to be Windows Store ("Metro") apps, because no other kind of app can be installed on RT by the user. It has nothing to do with performance. It's just walled garden.

    47. Re:A terrible mistake. by swillden · · Score: 1

      That would make sense, but it contradicts the claims of several others that the .NET CLR hasn't been ported to RT. Or perhaps I'm missing something. I know basically nothing about any Windows platform newer than Win2K, so that wouldn't be surprising.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    48. Re:A terrible mistake. by shutdown+-p+now · · Score: 2

      It contradicts their claims, because they're plainly wrong. Here is the official documentation on writing Windows Store apps - note the abundant mentions of C# and VB all over the page. Here is an article detailing the peculiarities of .NET in that environment.

      Note that you still can't run a .NET (or any other kind) app that will run on 7, 8 and RT, which was your original requirement. That's because RT only runs Store apps, and 7 doesn't run Store apps at all. So you can get an app that supports 7 or 8 (any desktop app), or 8 and RT (any Store app), but never all three.

      Also, in case where you support 8 and RT, and you write the app in .NET, you typically provide a single non-architecture-specific (aka "AnyCPU") binary, and JIT will take care of running it on x86, x64, ARM, whatever. This is unlike native apps, where you have to build binaries for all platforms that you want to cover (you can also build separate binaries for each architecture with a .NET app, but why?).

    49. Re:A terrible mistake. by toriver · · Score: 1

      Oh they did worse than that: they added the 'native' keyword and only much later specified JNI, at a point where the licensees had made their own proprietary support for the keyword, e.g. Microsoft's J/Connect. Then they made JNI a requirement, making the licensees scramble to put that in.

    50. Re:A terrible mistake. by Nivag064 · · Score: 1

      Sinclair Spectrum?

    51. Re:A terrible mistake. by Parker+Lewis · · Score: 1

      While JIT compiled (sometimes not entirely), they still relies on a VM. This requires more RAM memory and the first run, when code is being compiled to JIT, requires faster CPUs and more RAM memory than native binaries.

  3. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 5, Insightful

    Perhaps that because iOS really looks nothing like OSX despite having the foundation of it?

  4. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 5, Insightful

    ...and I didn't have to read a disclaimer from Apple stating "Will not run OSX applications"...

    And the Ipad didn't say 'OSX' on the front. This is being advertised as a Windows device, yet it won't run existing Windows programs.

  5. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 1

    Well.. It helped that the thing wasn't called "iMac RT".

  6. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    But the iPad is advertised as having "iOS", not "Max OS X QF".

  7. Re:I never expected my iPad to run OSX application by fuzzyfuzzyfungus · · Score: 5, Informative

    ...and I didn't have to read a disclaimer from Apple stating "Will not run OSX applications"...

    I had to crush the hopes and dreams of more than a few who didn't successfully draw that inference...

    Also, that was called 'iPad' rather than "OSX AR on Apple iPad"...

  8. Re:I never expected my iPad to run OSX application by Assmasher · · Score: 1, Insightful

    That's the typical logic that a Microsoft fanbois would make that "I didn't realize I couldn't run iMac applications on my iPad - they both have 'i' in them - they must run the same apps..."

    It's stupid whichever side uses the 'logic.'

    --
    Loading...
  9. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    It's stupid whichever side uses the 'logic.'

    It's stupid when you don't see the difference between 'buy this lovely Windows tablet*' and 'buy this thing from Apple that's kind of like an iPod but bigger'.

    * Small print: which won't run any of your existing Windows software.

  10. RT = ReTard by Anonymous Coward · · Score: 2, Insightful

    According to Wikipedia, "The RT acronym does not officially stand for anything." I predict that people will quickly take RT to stand for "ReTard" when they realize that Windows RT fails to run Windows software.

    1. Re:RT = ReTard by Anonymous Coward · · Score: 0

      I'm doing this now. Thanks!

    2. Re:RT = ReTard by Anonymous Coward · · Score: 1

      Real Turd

    3. Re:RT = ReTard by CanHasDIY · · Score: 0

      Royal Turd

      FTFY

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    4. Re:RT = ReTard by R3d+M3rcury · · Score: 1

      I thought it stood for RISC Technology...

    5. Re:RT = ReTard by unixisc · · Score: 1

      That would be pretty inane, given that Windows NT on MIPS would have been the original Windows 'RT', in that case. In fact, NT had existed on MIPS, Alpha and I believe it was also developed on/for i860, Intergraph Clipper, SPARC (for Intergraph again) and PowerPC. The only thing new about this is that it's the first time Windows has existed on ARM (not counting Windows CE; if one counts that, then Windows, in addition to MIPS and ARM, also existed on Hitachi's SuperH).

  11. Re:I never expected my iPad to run OSX application by SuperMooCow · · Score: 5, Insightful

    A Mac has "Mac" in its name (Mac mini, MacBook, iMac, etc). Its operating system is called "OS X".
    An iPad doesn't have "Mac" in its name. Its operating system is called "iOS".
    Hardware and software both have different names, there's no confusion.

    Windows RT has "Windows" in its name, just like "Windows 98", "Windows XP", "Windows Vista" or "Windows 7". The Windows OS had names with numbers, letters, words... it's not constant, so "Windows (something) = Windows" for most people. And Windows RT certainly won't be an exception.

  12. To be expected by roc97007 · · Score: 0

    > Over at The Verge, the intrepid Sean Hollister asked eight Microsoft Store representatives about the differences between Windows 8 and Windows RT, and received several confusing responses.

    And I would submit that this is intentional. The more the waters are muddied about the differences between the two operating systems, the larger the potential launch volume. And then you have a bunch of people out there who already own the product and are trying to make it work, giving additional motivation to vendors to port to it.

    It's genius, although the kind of genius you pour out of a bottle.

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
    1. Re:To be expected by CanHasDIY · · Score: 2

      The more the waters are muddied about the differences between the two operating systems, the larger the potential launch volume.

      So, If I've got what you're saying right, they want people to be confused... because it will make them more likely to buy both types?

      And then you have a bunch of people out there who already own the product and are trying to make it work, giving additional motivation to vendors to port to it.

      Huh? ^ Fails to parse.

      It's genius, although the kind of genius you pour out of a bottle.

      If that's what passes for genius these days, I'll stick to being completely batty, thankyouverymuch.

      --
      An enigma, wrapped in a riddle, shrouded in bacon and cheese
    2. Re:To be expected by JDG1980 · · Score: 1

      And I would submit that this is intentional. The more the waters are muddied about the differences between the two operating systems, the larger the potential launch volume. And then you have a bunch of people out there who already own the product and are trying to make it work, giving additional motivation to vendors to port to it.

      The more likely result is a bunch of angry customers returning their Surface RT devices to the store after finding that they don't do what they thought they would.

    3. Re:To be expected by DigiShaman · · Score: 1

      I think to Microsoft, it's all about installed user base. The idea being that "if you build it, they will come". Perhaps, but if consumers start returning these devices like Netbooks and WinCE devices, there will be some serious damage control going on.

      --
      Life is not for the lazy.
  13. Re:I never expected my iPad to run OSX application by Gaygirlie · · Score: 5, Informative

    It's not as illogical as you think. I've had several people showing me their CDs and DVDs telling me to install them on their Windows phones because "it says Windows and therefore it does work, and you're just incompetent if you can't do it!" I do not even know how they expected to use Office or their games on a phone, but that's the thing with luddites: often times they simply do not have any idea about what they're doing.

    With the above in mind I can easily see people being burned by the whole Windows RT - thing.

  14. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Yeah, but did you expect your ipad 3 to run ipad 2 applications? Microsoft is selling two different tablets here, one that runs on x86, and one that doesn't.

  15. Re:I never expected my iPad to run OSX application by Assmasher · · Score: 0

    Why, because of the menu bar? My wife's iMac desktop looks an alpha lot like her iPad, black background, rows of buttons/icons with shiny apple gradients across them.

    I can see people possibly being confused by this, but these are the same people who are generally confused by everything involving choices in a computing environment.

    The summary makes it sound like yet another conspiracy...

    --
    Loading...
  16. Difference: They still call both Windows. by guidryp · · Score: 5, Informative

    Macs Run OS X.
    iPad Runs iOS.

    x86 and ARM machines both run "Windows 8".

    Here is a perfect example of this SNAFU:

    http://www.futureshop.ca/en-CA/category/windows-tablets/31088.aspx?path=6d56ed26a8e2432d145864a8ee45cd37en01

    This is the biggest Electronics retailer in Canada (does link work outside Canada?).

    The First two tablets listed, both $599, Both look physically the same. Both have the exact same blue screen "Windows 8" logos on their screen.

    There is absolutely no way that you can know by looking at any of the information at this level, that one of these tablets in x86 and will run legacy applications, and the other is ARM and won't.

    If you go to each product page you can find in the fine print of specifications that one runs Intel, the other Tegra and one is Windows 8 RT. Which is incomprehensible nerd speak to most people.

    It is that fact that they look the same, are marketed the same with the same graphical "Windows 8" is going to confuse almost everyone that isn't a hard core nerd.

    1. Re:Difference: They still call both Windows. by vux984 · · Score: 5, Informative

      x86 and ARM machines both run "Windows 8".

      x86 runs Windows 8
      ARM run Windows RT

      And if you look at the tech specs, one is identified as using OS:
      Windows RT, the other is identified using OS Windows 8.

      Now that said, I agree 100% that most consumers won't catch that.

      But I really think that in this case ***Futureshop*** is confusing customers, not Microsoft.

      Those stock photos showing the Windows 8 logo were not likely provided by ASUS for the RT product. Reading the Asus product anouncement for the Vivo Tab, and Vivo Tab RT -- the Vivo tab talks about windows 8 experience all over the place. While the Vivo Tab RT announcement talks about windows RT and doesn't mention Windows 8 anywhere at all.

      There is definitely going to be confusion, but Futureshop is the one making the mess here.
      Not Microsoft, not even Asus.

    2. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 1

      http://www.futureshop.ca/en-CA/category/windows-tablets/31088.aspx?path=6d56ed26a8e2432d145864a8ee45cd37en01

      This is the biggest Electronics retailer in Canada (does link work outside Canada?).

      No. Canada operates on the Internet CA which isn't compatible with any other country.

    3. Re:Difference: They still call both Windows. by Missing.Matter · · Score: 1

      Yes, but which way are they going to be confused?

      Most people here are arguing that the Windows name will make them think they can run desktop apps on their tablet. I think the opposite will happen: Metro looks so different from classic Windows, and the form factor is so removed from a desktop/laptop, and Apple has conditioned people that tablets get apps from appstores, that I fell not many people will expect to be able to install their software on the machine, despite it being called "Windows." Especially consider the last point, that the expectation now is that tablets run tablet apps, thanks to Apple. This point especially I feel frames the expectations consumers will face when considering a Windows tablet.

      However If they do in fact expect a Windows RT tablet will run their legacy software, I foresee them also pausing to ask the following questions before purchasing:

      how do I install my old software without a DVD drive?
      how do I use my old software without a mouse?
      how do I use my old software without a desktop?

      I think Microsoft will face the opposite problem where they have trouble convincing people that Windows 8 on desktops will run legacy software. I've installed Windows 8 on a few family computers so far and shown it off to my friends, and the number one question was "Will this run all my old software?" It wasn't assumed at all.

    4. Re:Difference: They still call both Windows. by Sponge+Bath · · Score: 2

      Trying to explain processor architecture and market segmentation to an already mad consumer returning the RT tablet because it won't run x86 apps? "But sir, the instruction set..." Ugh. I would have to quit there and then to protect my sanity.

    5. Re:Difference: They still call both Windows. by bondsbw · · Score: 1

      Windows 8 RT

      Incorrect. The product name is "Windows RT", not "Windows 8 RT". Microsoft never confuses the two terms (although resellers are doing so).

      That said... Microsoft would be wise to get out in front of this. Allowing resellers to call their products "Windows 8 RT", or to display Windows 8 on an ARM tablet, is not responsible and will cause confusion even if Microsoft is clear in their own usage.

      --
      All my liberal friends think I'm a conservative, all my conservative friends think I'm a liberal.
    6. Re:Difference: They still call both Windows. by Dracos · · Score: 1

      Plus consumers expect Windows === Windows. Even during the NT + 9x parallel Windows version paths (which were merged as of win2k, almost 13 years ago), the amount of software that would not run on both lines was for the most part not exposed to consumers.

      The Win8/WinRT dichotomy will be baffling to anyone who isn't technically savvy enough to know there are different chip architectures, and retailers will find it difficult if not impossible to effectively explain the difference, if they even know it.

    7. Re:Difference: They still call both Windows. by vux984 · · Score: 3, Informative

      The Win8/WinRT dichotomy will be baffling to anyone who isn't technically savvy enough to know there are different chip architectures, and retailers will find it difficult if not impossible to effectively explain the difference, if they even know it.

      Here's how to explain the difference for non-tech savvy people:

      Windows RT has this new touch user interface called 'metro' that only runs apps you buy online from the microsoft app store. It doesn't run anything else. Its a lot like how an ipad works with itunes.

      Windows 8 has everything Windows RT has, but it also has an extra tile called "Desktop Mode" where you can run software designed for desktop mode. It will also run software from previous versions of windows in "desktop mode".

      Its not that baffling.

    8. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 0

      http://www.futureshop.ca/en-CA/category/windows-tablets/31088.aspx?path=6d56ed26a8e2432d145864a8ee45cd37en01

      4.6 stars out of 5 (5 ratings)

      how the hell does a product that's currently on pre-order have any reviews at all?

    9. Re:Difference: They still call both Windows. by sootman · · Score: 1

      > But I really think that in this case ***Futureshop***
      > is confusing customers, not Microsoft.

      Futureshop is just passing along Microsoft's mistake. As the subject of the original post says, it is still called Windows.

      I have a program that will run in 8 out of these 9 editions of Windows. Quick, Joe Consumer, guess which one WON'T run your favorite app:

      Windows 95
      Windows NT
      Windows 98
      Windows ME
      Windows 2000
      Windows XP
      Windows 7
      Windows 8
      Windows RT

      --
      Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
    10. Re:Difference: They still call both Windows. by vux984 · · Score: 1

      I have a program that will run in 8 out of these 9 editions of Windows.

      That's a nicely cherry picked list.

      Why not include
      Windows 3.11
      Windows Embedded Handheld
      Windows Embedded Compact 7
      Windows Mobile 6
      Windows Phone 7.0
      Windows Phone 7.5
      Windows XP 64-bit Edtion for Itanium Systems, version 2002
      Windows Phone 8.0
      Windows Embedded Automotive

      And you included:

      Windows NT

      Is that the x86, MIPS, Alpha, or PowerPC edition?

      And I'm not sure what -your- favorite App is, but on your list of 9 versions of Windows plus all the Windows I added, -my- favorite app runs on only 3 of them: XP, 7, and 8.

      Further ipad and android I think have already set the expectation that tablet OSes use app stores and dont' work with desktop software. So I expect as many, if not more, non-savvy consumers to be surprised they -can- run desktop software on a tablet with Windows 8 as will be surprised that Windows RT can't run desktop software.

    11. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 0

      There's actually a much bigger problem here. If both Intel and ARM tablets are the same price, why would anyone want to buy the ARM tablet that can't run windows programs?

      Seriously, what is the point of the ARM tablet if it's not cheaper?

    12. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 0

      Don't act like it's an insane question. Any Canadian is used to IP detection fucking up the display of items on American sites, or "this video is not available in your country" bullshit.

    13. Re:Difference: They still call both Windows. by Nivag064 · · Score: 1

      I can access the link in Auckland, New Zealand.

    14. Re:Difference: They still call both Windows. by toriver · · Score: 1

      That should be "no longer called 'metro' but occasionally 'Modern UI'". And RT apparently has desktop mode except it's for Office only.

    15. Re:Difference: They still call both Windows. by firewrought · · Score: 1

      There is definitely going to be confusion, but Futureshop is the one making the mess here. Not Microsoft, not even Asus.

      The fault is entirely Microsoft's for using the same "Windows 8" brand on two similar-looking products that have vastly different technical underpinnings. If you don't do a good job branding and distinguishing your products up front, don't expect your retail outlets (especially no-name mediocre ones) to fill the gap. This is not some one-off fuck-up by Futureshop... it's a problem on multiple sites that journalist and bloggers have been predicting for months. Microsoft has loads of experience with marketing and branding, so the real mystery here is why they have committed to such an obviously confusing strategy.

      Of course, who we blame here--in this Slashdot discussion--doesn't really matter. It's who the consumer chooses to blame (rightly or wrongly) after having a bad experience. I think they will blame Microsoft, so I'd be really irked if I were a Microsoft shareholder.

      --
      -1, Too Many Layers Of Abstraction
    16. Re:Difference: They still call both Windows. by jedidiah · · Score: 1

      > That's a nicely cherry picked list.

      No. It includes versions that your average n00b is actually likely to be aware of. It's stuff they might have seen at Microcenter or Frys over the years.

      Most people have never heard of the Alpha version of NT.

      Most people aren't even aware that there are other microprocesors that you could make a PC out of.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    17. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 0

      Windows RT has this new touch user interface called 'metro' that only runs apps you buy online from the microsoft app store.

      That's a poor explanation, and really only serves to show how confusing this really is. Windows RT refers to Windows-on-ARM and is preinstalled on ARM-based tablets only (the RT doesn't have any specific meaning). The touch interface is irrelevant because Windows 8 also has a touch interface. Due to the different processor architecture supported by Windows RT, it can't run any legacy (x86-based) Windows software.

      Even worse, this is distinct from WinRT (Windows runtime) which underpins both Windows RT and Windows 8. Only application based WinRT can be sold through the Windows Store (not to be confused with a Microsoft Store) and have the new interface formerly called Metro and now called something like 'Modern' or 'Windows Store' interface (I'm not sure what it is this week?). Software not based on WinRT won't run on Windows RT but does work on Windows 8 although not in the same space as Metro/whatever applications. Clear as mud?

    18. Re:Difference: They still call both Windows. by Parafilmus · · Score: 1

      Windows 8 has everything Windows RT has, but it also has an extra tile called "Desktop Mode" where you can run software designed for desktop mode.

      Not quite. Windows RT also has a prominent tile called "Desktop Mode," which looks identical to Windows 8's desktop mode. See here for more information: http://www.neowin.net/news/windows-rt-desktop-mode-gets-detailed-better-than-expected

      And here's a lovely video of Windows RT's desktop mode: https://www.youtube.com/watch?v=4D06Lb0W37w

      Its not that baffling.

      It was baffling enough to confuse you, apparently.

    19. Re:Difference: They still call both Windows. by vux984 · · Score: 1

      At best that eliminates the embedded versions I listed.

      You've still got Windows CE X, Windows Mobile X, and Windows Phone X that have all been prominently consumer facing over the years.

    20. Re:Difference: They still call both Windows. by vux984 · · Score: 1

      Your right; i didn't realize RT had desktop mode. Thanks for that.

      That said, I have no interest in a Windows RT device; between the locked down bootloader and the binary incompatibility with other windows software its not a product I'm the slightest bit interested in, so I have not researched it thoroughly at all.

      However, my description of the difference only needs to be modified slightly to correct itself. "Win RT has a limited desktop mode that only supports a handful of applications" Windows 8 has a full desktop mode that supports ...

    21. Re:Difference: They still call both Windows. by jbolden · · Score: 1

      Microsoft has loads of experience with marketing and branding, so the real mystery here is why they have committed to such an obviously confusing strategy.

      Because they want the drama to put pressure on developers. Think about the world around 2014.

      You have Windows phones, Windows tablets, Windows servers and Windows desktop / laptops. Metro apps move seamlessly from one platform to the next. Win32 apps only work on desktops and laptops and use a confusing legacy interface that doesn't work very well. Customers don't like Win32 apps and demand Metro versions

      As a developer are you going to continue to write to the old WinXP codebase or are you at the very least going to make sure to compile up Metro versions?

    22. Re:Difference: They still call both Windows. by Anonymous Coward · · Score: 0

      Not only that, but the Windows RT one has half the storage of the true Windows 8 one! If comparing two tablets both alike in dignity in fair Verona where we lay our scene, and one has a more powerful operating system than the other, wouldn't a non-nerd expect that the one with the lesser OS would be the one to come with better hardware to compensate? But instead the one with the more powerful OS comes with twice the storage capacity as the one with the lesser OS.

      Yes the link does work outside of Canada. Eh!

  17. Re:I never expected my iPad to run OSX application by Assmasher · · Score: 0, Offtopic

    Right, because THAT is how Apple goes about selling the iPad - "It's a bigger iPod."

    LOL.

    --
    Loading...
  18. Re:I never expected my iPad to run OSX application by Assmasher · · Score: 1

    I agree, but these are the type of people who get burned by anything technological ;) (as evidenced by them wanting you to put Exchange Server on their phones.)

    --
    Loading...
  19. Re:I never expected my iPad to run OSX application by fuzzyfuzzyfungus · · Score: 3, Insightful

    The two have gotten a lot closer looking of late; but that's because they've been iPadding the hell out of what used to be an endurable desktop OS...

  20. Re:I never expected my iPad to run OSX application by Missing.Matter · · Score: 4, Interesting
    This is my expectation as well. My prediction is that because Metro looks so different from traditional Windows, and the form factor is completely different from a desktop, no one will be going in with the expectation that Windows RT tablets should run desktop software. Take a look at what Steve Jobs said about the original iPhone in 2007:

    Now how do we do this? Well, we start with a strong foundation: iPhone runs OSX. Now, why, why would we wanna run such a sophisticated operating system on a mobile device? Well, because it’s got everything we need. It’s got multi-tasking. It’s got the best networking. It already knows how to power manage. We’ve been doing this on mobile computers for years. It’s got awesome security. And the right apps.

    Also on their product page:

    iPhone uses OS X, the world’s most advanced operating system. Which means you have access to the best-ever software on a handheld device”

    They unequivocally stated that iPhone runs OS X, yet hardly anyone reasonably expected desktop OS X software to run on the iPhone. I argue that this is because iOS looks so different from OS X and that the form factor is so much different from a Desktop. Since then, Apple has trained people that on tablets, you get your software from Appstores. I think people will look at Windows tablets and have the same expectation, despite that it's called Windows. Again, how many people expected Windows Mobile or Windows Phone would run desktop Windows applications?

    In fact, what I predict is that Microsoft will have the opposite problem: convincing people that Windows 8 on desktops will run desktop applications. You see that confusion here on Slashdot all the time.

  21. Re:I never expected my iPad to run OSX application by robthebloke · · Score: 1

    I take it from that, you're not as hyped up about the new and amazing Windows Really Trendy edition as I am?

  22. Re:I never expected my iPad to run OSX application by Missing.Matter · · Score: 1

    And Windows Mobile devices had Windows on the front.... was there a huge outcry from people who expected those to run desktop applications? I think the fact that Windows RT only comes on computers without a keyboard or mouse will be enough to frame consumer expectations that it won't run software designed for a keyboard and mouse. I think Microsoft will have the opposite problem of convincing people that Windows 8 runs the same desktop software as well as Windows 7.

  23. Using near-monopoly advantage by jd659 · · Score: 1

    The point of Microsoft’s Win8 (and WinRT tablets) is not to develop some awesome next generation UI, but rather to leverage its near-monopoly advantage and convince people to buy tablets that sound as if they could be the replacement for the current desktops. All the review articles seem to be pointing in that direction touting that you “should get a Windows tablet that runs everything.” The side that says “start developing new Metro applications or you will be left behind” misses the point that the Metro UI is not better for the desktop. Furthermore, Microsoft made the original desktop a second class citizen in Windows 8, complicating switching between programs or starting new programs. Enough inconvenience for the current users in hopes to drive the adoption for the new UI model. While the model works well for the touch enabled devices, it is a poor choice for the desktop or any large-screen workstations.

    --
    There's no such thing as "illegal download"
    1. Re:Using near-monopoly advantage by JDG1980 · · Score: 2

      And this is why the Metro push is an abuse of monopoly power, and should never have been permitted. Microsoft is trying to use their existing desktop monopoly to leverage extra market share in a different field (tablets and smartphones), using the new Metro API as a weapon, and degrading customer experience in the process. This should have been stopped by the FTC and European Union before it reached the point of release.

    2. Re:Using near-monopoly advantage by jbolden · · Score: 1

      I don't think Metro UI works worse for the desktops / laptops of the future. It doesn't work well for old fashioned keyboard, mouse, large screen setup but that's not what they want desktops in the future to work like. They want touch, they want even desktops to be using more complex controls like trackpads.

      Yes, Windows 8 is designed to start migrating the whole ecosystem.

    3. Re:Using near-monopoly advantage by jbolden · · Score: 1

      I don't agree with you on degrading customer experience. The customer experience on Windows is bad.

      For enterprise end users have under powered locked down machines with limited software selection and low flexibility.
      For home end users have under powered machines with terrible input devices loaded with crapware that are hard to maintain.

      I'd have a hard time arguing that's not a degraded experience.

      Leveraging their monopoly.... hmmm interesting argument. It would certainly be a stretch of leveraging to say that using a monopoly in one area to just convince customers to buy a product or make available a service .... don't know if that one is winnable or not.

  24. Re:I never expected my iPad to run OSX application by will_die · · Score: 2

    Well I am upset that the iOS on my touch would not provide routing, switching, internetworking and telecommunications functions.
    There should of been a warning that this one did not provide that.

  25. Re:I never expected my iPad to run OSX application by tlhIngan · · Score: 2

    ...and I didn't have to read a disclaimer from Apple stating "Will not run OSX applications"...

    That's because the things thta run OS X applications are called "Macs". Like a Mac Mini. iMac. Mac Pro. Macbook Pro. Macbook Air. And all combinations thereof . "Mac" is part of the name.

    iPad and iPhone? There's no "Mac" in the name, so no expectation to run Mac apps. There's an expectation to run iPhone apps on iPad, and probably the other way around too (which doesn't work unless it's universal).

    Hell, I bet there are more people complaining they can't run MacOS Classic apps (or OS X PowerPC) apps on their Macs these days than people complaining about iOS apps working on their Mac or vice-versa.

    Even the iOS things in OS X like the launcher aren't shown on first boot unless you click on them, further accentuating the difference.

    Windows RT though, looks a lot like regular x86 Windows. And I'm sure people think Windows apps should run on Windows. Windows 8 RT and Windows 8? It's bound to be horrendously confused. After all, there's what, Windows 8 RT, Windows 8 Standard, Windows 8 Professional?

    Hell I've had people ask about running Windows apps back when I worked on Windows CE.

  26. At $499, 'switching' will be easy by david.emery · · Score: 4, Interesting

    If this article is right and Windows 8 ends up confusing and thereby pissing off consumers, I think this will be a huge win for Apple and Android. When you plopped $1k-$2k for a computer (in the olden days :-) and then added several $50-$150 software packages, the cost to abandon that platform is significant. But when your expenditures are in the $500-$600 range, tablet and apps, it'll be a lot easier to put the tablet up on eBay and go buy an alternative.

    And the associated risks for Microsoft, let's call it the "horns effect*," could be catastrophic. People will say, "I gave Microsoft a chance for this new item, they suck. I'm not throwing more money at them. Look at how much I've spent on Windows computers/applications over the last 10+ years! Fool me twice, shame on me!" This really is a 'bet-the-company' move by Ballmer & Co (and of course we have 12 years of history of Microsoft under Ballmer to project from...)

    * opposite of the "halo effect"

    1. Re:At $499, 'switching' will be easy by Anonymous Coward · · Score: 0

      "But when your expenditures are in the $500-$600 range, tablet and apps, it'll be a lot easier to put the tablet up on eBay and go buy an alternative."

      I don't think it will last even that long (put up on eBay). I think the return rate will be quite high.

    2. Re:At $499, 'switching' will be easy by jbolden · · Score: 1

      Lets try a different number. You are an enterprise and have spend $3200 per employee times 30k employees on Microsoft infrastructure plus another $2m or so in setup and configuration.

       

    3. Re:At $499, 'switching' will be easy by david.emery · · Score: 1

      Did you see the word "consumers" in my comment?

      Enterprises have different economies. Now don't get me started on CIO decision-making and the blind faith investment in Microsoft infrastructure, but I was specifically talking about individuals who make decisions on behalf of themselves.

    4. Re:At $499, 'switching' will be easy by jbolden · · Score: 1

      Yes I did. I also saw the last line about bet the company. That's the point this isn't bet the company. The Windows 8 strategy can fail miserably and Microsoft remains solid in enterprise for years. Given that they are being knocked out of consumer its more like tails we lose a little, heads we win a lot.

    5. Re:At $499, 'switching' will be easy by david.emery · · Score: 1

      Fair enough. Here's some data on Microsoft's income by business line: http://betanews.com/2012/10/18/microsoft-q1-2013-by-the-numbers-16-1b-revenue-53-cents-eps/ As a SWAG, consumer PC sales is about a quarter of Microsoft's profit, with the two parts of business sales constituting the other 3/4. So you have a solid argument.

      However, the BYOD movement and further losses on desktops will put price and technology pressure on Microsoft. Most of those tools are part-and-parcel of the Microsoft monoculture. They don't work very well with other vendor's products. The growth of cloud services that are workstation/end user device neutral pose a substantial risk to the company.

      If Win 8 is a success, consumers and businesses will continue Microsoft dominance. If it's a failure, at best it's a major crack in the foundation.

    6. Re:At $499, 'switching' will be easy by jbolden · · Score: 1

      Microsoft doesn't disagree. They think they are in real trouble in the home / small business market with the rise of tablets and smartphones. Remember they replaced IBM, DEC, Unisys by owning the small business market and from there crossing over into enterprise. So they understand exactly how much of a threat losing consumer is and they do not want to see Google and Apple do to them in the 2020s what they did in the 1990s.

      From their perspective Android and Apple cannot win on enterprise 2012-2017, they aren't remotely close to ready. They are however already taking share and might own the small business / home market by 2020. And then by 2030 they could be a legacy vendor in enterprise, supporting older systems while other companies own the enterprise space.

        In the 1990s they made compromises with their OS to win enterprise which were a negative for end users especially home and small business. But they were strong enough that they could maintain their dominance even while pushing an enterprise desktop OS to end users. This time around it is the opposite strategy, they are strong enough in enterprise to allow them to create features which are targeted at home / small business and win back the monoculture.

      If they are wrong, they can have plenty of time to change course and focus on defending enterprise before Android is going to be ready as an enterprise desktop.

    7. Re:At $499, 'switching' will be easy by david.emery · · Score: 1

      Well, it seems barring a miracle, the Microsoft we're both anticipating is a smaller/less important company in 2020 than it was in 2000 or 2010, and mostly we're arguing about the degree of diminution. And that's a self-inflicted wound.

      (p.s. are we allowed to have a reasoned discussion on Slashdot? Shouldn't we be flaming each other at this point? :-)

    8. Re:At $499, 'switching' will be easy by jbolden · · Score: 1

      Yes it is a civil conversation, thank you for that.

      I'd differ from you in saying it would take a miracle. I think it is entirely possible that ubiquitous computing is far preferable to multiple platforms for multiple form factors. The explosion in diversity in software and types of machines today is very much the the 1980s. The consolidation of the late 80s though mid 90s on the desktop came because the cost in terms of complexity of infrastructure of maintaining diversity was simply too high.

      As web services full of pictures and disappear
      As it gets increasingly complex to move for family members or coworkers to interchange data with each other if they have different device / software preferences
      As BYOD means that critical corporate data is available only in formats that IT doesn't support

      I believe there is going to be a backlash against choice and diversity just as there was prior to the monoculture. I can easily see this creating an environment where the idea of one set of applications and device interoperability become seen as hugely important features. Apple for cultural reasons is a terrible choice for enterprise. Google lacks the ability to directly control their market, I suspect any choice of direction by Google would fragment Android the way Unix fragmented in the 1980s.

      So lets say given the choice between ubiquitous and non ubiquitous with each working equally well, I believe that 80% would prefer ubiquitous.
      There are in reality going to be big tradeoffs though, in moving away from best in breed like we have today. Further millennials really care about choices, so lets say that cuts the support in half. So 40% chance of ubiquitous winning.

      Now the question is the skill of execution between Microsoft vs. Apple and Google in being the builder of the platform. I'm going to say Microsoft 60%, Apple 20% and Google 20%. Apple is beloved and trusted but culturally out of sync with the mainstream. Google has a non customer service culture, while at the same time doesn't partner on technologies. Microsoft has worse execution than Apple, but has proven it can do hundreds of major projects simultaneously. So I'm thinking ballpark 1/4 the Windows 8 strategy wins a monoculture over phones, tablets and computers for another generation. Less than 50/50 but not a miracle.

      The 3/4s is really cool. A diverse consumer eco system, an enterprise desktop alternative soon thereafter and a genuine battle for what IT should look like.

  27. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 1

    Your comment might be correct but for the fact that Microsoft is selling both the ARM "Windows RT" version of the surface AND the Atom x86 capable "Windows 8 Pro" version of the surface. Sure the x86 capable one is a little thicker and a little heavier - but to the untrained eye they are about the same. Yet one of them runs most of their legacy apps and the other won't run any of them. True the pro version won't be out until December or January - but it will be confusing as all hell for people.

  28. True true... by Anonymous Coward · · Score: 0

    I recently exchanged a couple of flames with a journalist because he wrote in an article that "The differences between Windows RT and Windows 8 are minor." I pointed out that Windows RT that Win32 is deprecated on it. It has a new API WinRT and I don't consider that a minor difference. He didn't get it "because the regular consumer wouldn't care about such details". So they don't care about the lack of apps perhaps? He still didn't get it...

    Some consumers are going to care that you call something "Windows" and it doesn't run "Windows" applications like it used to. Windows RT will only run Microsoft approved Windows Store applications and I don't consider that a minor difference.

    Perhaps the confusion is going to do us nerds a favor if the lock-down is shitty perhaps we could get our hands on some cheap nice hardware?

  29. Re:I never expected my iPad to run OSX application by iamhassi · · Score: 4, Insightful

    I can see people possibly being confused by this, but these are the same people who are generally confused by everything involving choices in a computing environment.

    The summary makes it sound like yet another conspiracy...

    I have to disagree:
    1). Windows 8 and windows rt look identical, both with tiles and touchscreens
    2). Both designed for tablets
    3). Both released around the same time

    windows rt devices are cheaper though, so when consumers go into a store and see two tablets sitting side by side that look identical running windows, they're gonna grab RT, take it home, and be furious when they can't install any windows software on it, only software designed for Windows RT will work. I see this as a epic fail for Microsoft, biggest fail since windows ME. I do not understand why Microsoft made two identical OSes for tablets, they would have been better focusing on windows 8

    Only good thing though is these RT devices will quickly be sold at fire sale and maybe we can put Android on them ;)

    --
    my karma will be here long after I'm gone
  30. Yeah, those are the ones who know what it is. by jonadab · · Score: 1

    > Moreover, those reps who did admit issues
    > seemed dismissive of Windows RT as a whole.

    Right, so those are the reps who know enough about Microsoft's fringe products to actually know what Windows RT is. Of course they're dismissive. It's an OEM-only OS intended exclusively for mobile devices. Since almost all mobile devices run either iOS or Android, and most of the rest run some custom OS produced by the device manufacturer, it's not surprising to me that half of Microsoft's own sales reps don't know anything about their mobile-only offering. How many of their sales reps five or ten years ago could explain Windows CE? Does anyone care?

    --
    Cut that out, or I will ship you to Norilsk in a box.
  31. Re:I never expected my iPad to run OSX application by mosb1000 · · Score: 3, Insightful

    If people don't expect the Windows Tablet to run Windows applications, then why is MS going to be selling a version that does in January? Don't you see that MS is going to need to make a concerted effort to let users know that this is THE difference between these two products, if the don't want people to buy the Windows RT tablet expecting it to run their existing applications.

  32. Re:I never expected my iPad to run OSX application by Assmasher · · Score: 2

    Agreed, I was horrified when people started talking about OSX and iOS merging - a sure sign of the apocalypse.

    --
    Loading...
  33. Re:I never expected my iPad to run OSX application by thegarbz · · Score: 3, Informative

    There's a different scale here. Sure someone trying to install a standard windows program on a phone will fall down at any old technological hurdle. The two are designed completely different, look completely different, and interact completely different.

    But ... RT vs Windows 8. They have the same interface (metro), they run on the same type of hardware (laptops / slates), they come with identical software pre-installed (internet explorer 10, email clients, etc).

    It's really not a stretch to see that this is going to be a far larger problem then the usual "Oh my god why are you even trying to use technology" type of crowd.

  34. Re:I never expected my iPad to run OSX application by Missing.Matter · · Score: 2

    I agree it will be confusing, but not in the way everyone here is assuming. The overwhelming reaction from people when I show them my old tablet PC running Windows 8 is not "Oh, the obviously must be able to run my old software!" but is instead "Is this really windows? Can it even run my old software?"

    Windows 8 looks so different from Windows 7, especially on a tablet, that people (at least in my experience) don't automatically assume it will run regular Windows applications. I think this is going to burn Microsoft in the opposite way everyone here is predicting.

  35. It's a trap by kurt555gs · · Score: 4, Interesting

    Windows RT is just there to make things difficult for Android table makers. The "consumers" that buy them are merely colateral damage.

    --
    * Carthago Delenda Est *
    1. Re:It's a trap by Anonymous Coward · · Score: 0

      Windows RT is just there to make things difficult for Android table makers.

      Would those be big-ass tables, or just regular size?

    2. Re:It's a trap by Anonymous Coward · · Score: 0

      > Windows RT is just there to make things difficult for Android table makers.

      Windows RT is just there to ensure that Windows OEMs don't become Android or other ARM tablet makers*. HP having to discard WebOS shows WOA (Windows on ARM) working exactly as intended. Next will be Windows RT Server for ARM servers, though I don't know who will pay for this on a per CPU basis when there are hundreds of CPUs. But that is not important, killing ARM Servers is the intent as customer will then buy x86-64 Windows servers.

      * Being a 'loyal' OEM and delivering Windows on every device that can run it will earn large 'loyalty' discounts. Not being 'loyal' can cost $millions as that discount will be lost across the board on all products.

    3. Re:It's a trap by david.emery · · Score: 1

      Mod parent up insightful (I contributed to this thread so I can't use my moderator points.) The Microsoft hardware vendor lock-in is a very interesting ramification that I had not thought about.

  36. Re:I never expected my iPad to run OSX application by Tapewolf · · Score: 1

    In fact, what I predict is that Microsoft will have the opposite problem: convincing people that Windows 8 on desktops will run desktop applications. You see that confusion here on Slashdot all the time.

    Exactly. RT launches first as 'the new windows'. People buy it, find it doesn't run their software - Windows 8 gets the same reputation, in much the same way as Vista's image was left tattered even after they had fixed most of the initial problems with it.

  37. Re:I never expected my iPad to run OSX application by Mike+Buddha · · Score: 5, Insightful

    I think you're wrong. I think people are going to buy the tablet and be satisfied with the software bumdled with it and what they can download off of the Windows Store. I think anyone concerned with legacy application support is going to know the difference between Windows RT and Windows 8. The lack of a DVD drive is going dissuade most people from even trying to load their legacy software. For the few people that do run into this issue, they can always bring their tablet back and upgrade to the Windows 8 version.

    --
    by Mike Buddha -- Someday the mountain might get him, but the law never will.
  38. future shop is best buy and they only want people by Anonymous Coward · · Score: 0

    future shop is best buy and they only want people working there who can sell over knowing about tech.

  39. Re:I never expected my iPad to run OSX application by Missing.Matter · · Score: 1

    But ... RT vs Windows 8. They have the same interface (metro), they run on the same type of hardware (laptops / slates), they come with identical software pre-installed (internet explorer 10, email clients, etc).

    And both look completely different from Windows 7. I think this anchors expectations for Windows 8 to be "Can this even run my software?" instead of "This obviously must run my software, it's Windows!" This is still bad for Microsoft, because it might reduce sales of Laptops people think won't run the software they're used to on their laptop. But I think the supposed confusion between Windows 8 and Windows RT is going to prove to be overblown.

  40. Confusion? Maybe? Pissed off customers? Unlikely. by Anonymous Coward · · Score: 0

    1) Windows RT devices are few and far between to begin with, most customers will be getting traditional x86 devices when they upgrade.
    2) Most people don't use a lot of their Windows applications outside of Office and the browser, and the rest will be filled in with the Metro apps, so consumers will likely not be pissed off...yes, get this, most people aren't power users.

    Microsoft's -real- mistake here is not killing the desktop off entirely in RT...it's still there, that's where Office resides, otherwise it's useless, don't even let people have the confusion when they test demos, period. Another mistake is the inability to join network domains...but that's another story.

  41. Re:I never expected my iPad to run OSX application by JDG1980 · · Score: 1

    Apple never used the Macintosh or MacOS branding in conjunction with the iPhone or iPad. In contrast, Microsoft insists on misleadingly using the same OS name – Windows – for both products.

  42. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    That's the typical logic that a Microsoft fanbois would make that "I didn't realize I couldn't run iMac applications on my iPad - they both have 'i' in them - they must run the same apps..."

    It's stupid whichever side uses the 'logic.'

    Except, if I'm not mistaken, Windows 8 CAN run RT apps, but RT can't run all Windows 8 apps. So you've got two devices that look nearly identical to the non-obsessive eye, both in device shape and UI design, may have similar hardware specs, and both run what is otherwise the same OS, but one of them, for arbitrary reasons, won't run SOME apps the other one can.

    Or in other words, iThingamajig apps don't run on OSX, never have run on OSX, and after the world bears witness to Microsoft's inevitable catastrofuck coming up, never will run on OSX. There's no confusion there, and I have yet to see anyone who legitimately thinks an iWhatever app should run on OSX*. But Microsoft is saying that SOME apps will run between their two OSes with seemingly arbitrary restrictions on which will do what to the untrained user.

    *: Okay, it might also be because so few people have OSX devices compared to owners of iDoodads, but still.

  43. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    They're already sold out and now are on backorder.

    http://www.slate.com/blogs/trending/2012/10/17/surface_sold_out_new_microsoft_tablet_on_backorder_before_oct_26_release.html

  44. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    apple macBook
    apple iPad
    ????

  45. Re:I never expected my iPad to run OSX application by R3d+M3rcury · · Score: 1

    It's debatable. I don't know many people expected to be able to run Microsoft Word on their Windows CE devices.

  46. Re:I never expected my iPad to run OSX application by Teun · · Score: 2

    Android? You are weird.
    A nice Linux with KDE is what this hardware needs.

    --
    "The likes of Facebook and WhatsApp are free to those whose privacy is of zero value."
  47. Re:I never expected my iPad to run OSX application by obarthelemy · · Score: 1

    Well, they have different OSes (MacOS vs iOS), a different UI (static icons vs a regular desktop), so you'd have to be really dumb to confuse them.

    Both Windows 8 have essentially the same name, exactly the same UI... the difference is much less obvious. Especially since Windows has always existed in a plethora of compatible versions (Home, Pro, Entreprise, Ultimate, Media Center...) only the one and only RT flavor of Windows is incompatible with all those other versions.

    --
    The Cloud - because you don't care if your apps and data are up in the air.
  48. Re:I never expected my iPad to run OSX application by fuzzyfuzzyfungus · · Score: 4, Informative

    What is especially jarring is seeing all the tablet-esque window management misfeatures at play even as it has never been cheaper to have a couple of big monitors on your desk. In particular, the behavior where 'full-screen' on one application causes all your other monitors to blank to a grey background can only be Apple's way of giving the finger to their remaining pro users...

  49. Re:I never expected my iPad to run OSX application by John+Bresnahan · · Score: 1

    I can't think of anyone I know who would assume that Windows 8 won't run everything that Windows 7 runs.

    I've been warning people away from Windows 8 (in any form) for the time being, until it becomes clear how big a mess this is going to be.

  50. Re:I never expected my iPad to run OSX application by misnohmer · · Score: 1

    Yes, but they were all called Apple iPad, Apple iPod, Apple iPhone, Apple iMac - why does "Windows*" imply to you cross-compatibility but "Apple i*" does not?

  51. Isn't it ironic ? by SilenceBE · · Score: 1

    A lot of people will potentially hate Windows 8 because they try to cram a tablet interface into a desktop OS.

    A lot of people will potentially hate Windows tablet because they thought with an OS that is also available on the desktop, that this also means they can run the same apps as on the desktop.

    Instead of calling it "unified vision" they need to call it "unified shooting in your two feet" vision.

    Yes there will be a lot of confusion when some tablets can run their apps and some don't. Most non techies don't care or even know about different architectures. And when the general public becomes aware that not all tablets can run their apps, the only thing they will see is that you will have "non" expensive tablets that are crippled in their eyes and expensive tablets that can run their apps. Not a positive image for Microsoft.

    The difference between iOS/Android is that their is a clear distinction between the desktop OS and the mobile OS. Some things that gets into OS X for example, is very subtle. With Windows Microsoft made the decision to make it unified which is nice if you have platforms that are compatible, but if you mix x86 with ARM it gets confusing fast.

    1. Re:Isn't it ironic ? by jbolden · · Score: 1

      And when the general public becomes aware that not all tablets can run their apps, the only thing they will see is that you will have "non" expensive tablets that are crippled in their eyes and expensive tablets that can run their apps. Not a positive image for Microsoft.

      I'm not so sure about that. Microsoft has had a change of strategy they need to start driving up their hardware costs to have more innovative hardware. They were willing to forgo the bottom 1/3rd of the market. Why is it so bad to send the message that cheap hardware doesn't do what you want if your intention is to start raising hardware costs and thus opening up a low end: Android, iOS, Linux void?

  52. Re:I never expected my iPad to run OSX application by mobets · · Score: 2

    Yes they did, and it came pre-installed on some devices.
    http://www.pocketpcfaq.com/faqs/PocketOfficeFeatures.htm

    --

    It was me, I did it, I moved your cheese
  53. Same problem at Newegg- Really a MS problem by guidryp · · Score: 5, Insightful

    But I really think that in this case ***Futureshop*** is confusing customers, not Microsoft.

    Those stock photos showing the Windows 8 logo were not likely provided by ASUS for the RT product. >

    Really this is a Microsoft Problem because they named them too closely. They should have called WinRT something totally different, to avoid this mess, really anyone thinking about it should have been able to predict this.

    If all the product specialists are the biggest electronic retailers in North America are confused and making mistakes, what chance does the average consumer have.

    Essentially the same thing happening at Newegg:

    http://www.newegg.com/Tablets-Accessories/Category/ID-164?Tpk=tablet

    Check the top of the page.

    Win 8 Tablets!

    Then they have a mix of ARM/x86 tablets all with the same graphics (this time Metro).

    But it is still both kinds of tablets called Windows 8 and undifferentiated.

    1. Re:Same problem at Newegg- Really a MS problem by vux984 · · Score: 1

      Really this is a Microsoft Problem because they named them too closely. They should have called WinRT something totally different, to avoid this mess, really anyone thinking about it should have been able to predict this.

      They are not totally different at all.
      Windows 8 is a super set of windows RT.
      Windows 8 is windows RT + desktop mode.
      Anything you buy for WinRT will also just work on Win8.

      Its nothing like ios and osx.

      If all the product specialists are the biggest electronic retailers in North America are confused and making mistakes, what chance does the average consumer have.

      Yes I see your point, but I think this is as much a slashdot selection bias than anything else. This is hardly the first time marketing has completely messed up something large scale.

      "LED" TVs for example are still LCD TVs, only the backlight is LED. How many consumers knew that? Of course in the big scheme it didn't really matter that they were clueless everything still worked. Bluray vs HD-DVD is another mess; easily half of consumers didn't even realize they were two competing technologies, and just thought all high definition dvds (HDDVD) were called bluray and vice versa, and I remember ads for Blu Ray players under the HD-DVD heading.

      I agree Microsoft really needs to step up and try and clean up the mess that the retail world is making, but I don't blame them for the mess, per se.

    2. Re:Same problem at Newegg- Really a MS problem by guidryp · · Score: 2

      They are not totally different at all.
      Windows 8 is a super set of windows RT.

      That they have some similarities that can lead to confusion is all the more reason to work that much harder at strong brand differentiation.

      Because they differ in one highly important and critical way.

      Only one of them actually runs what we know of today as "Windows Software".

      That is about as huge a difference as it gets for a "Windows" operating system. I can't think of a more critical difference.

      The ONLY reason I use Windows, is because it runs "Windows Software". If it doesn't run "Windows Software", then IMO it shouldn't be called Windows.

      But now that ship has sailed. We have Two versions of "Windows" launching on tablets at the same time, that look the same, but only one runs "Windows Software", it should be blindingly obvious, but instead because of poor branding it will likely be lost on MOST consumers and that is a massive screw up.

    3. Re:Same problem at Newegg- Really a MS problem by vux984 · · Score: 1

      But now that ship has sailed. We have Two versions of "Windows" launching on tablets at the same time, that look the same, but only one runs "Windows Software",

      Does a non-technical person buying a tablet even care?

      The ONLY reason I use Windows, is because it runs "Windows Software".

      And you are not a non-technical person who is confused.

      I agree there is some confusion. I agree Microsoft could have done better communicating the brand. I agree the retailers are REALLY spectacularly botching it. But I don't think its going to be the massive screw up you think it is.

      The people who really care are the people savvy enough to get it right.

    4. Re:Same problem at Newegg- Really a MS problem by guidryp · · Score: 1

      But now that ship has sailed. We have Two versions of "Windows" launching on tablets at the same time, that look the same, but only one runs "Windows Software",

      Does a non-technical person buying a tablet even care?

      Is there anything else they would care about? I can't think of anything more important than running your software that an OS has to do.

      I remember the outcry when Vista was incompatible initially with a handful of applications. In this case nothing would run, if you end up with WinRT without the implications being clear.

    5. Re:Same problem at Newegg- Really a MS problem by Missing.Matter · · Score: 1

      But ... RT vs Windows 8. They have the same interface (metro), they run on the same type of hardware (laptops / slates), they come with identical software pre-installed (internet explorer 10, email clients, etc).

      What's not clear is how many will buy a Windows RT tablet, expecting to run the same software as their desktop, but not considering things like "How do I install the software without an optical drive" or "how do I use the software without a keyboard and mouse"

    6. Re:Same problem at Newegg- Really a MS problem by incongruency · · Score: 1

      They are not totally different at all.
      Windows 8 is a super set of windows RT.
      Windows 8 is windows RT + desktop mode.
      Anything you buy for WinRT will also just work on Win8.

      However, that's not correct.

      Windows RT runs on ARM processors, and as a result all binary files (programs) have to be compiled to run on ARM.
      However, Windows 8 runs on what is called x86 processors, and it's binary files have to be compiled to run on x86.

      And that's just the most basic difference, that completely ignores any other software differences.

      What you buy for Windows RT will not just work on Windows 8.

    7. Re:Same problem at Newegg- Really a MS problem by jyjjy · · Score: 1

      An optical drive? What is this? The 90s? Netbooks are pretty popular, run Windows and don't have one. A rather large segment of normal laptops don't have one either and they are even being phased out on desktops. The vast majority of software almost everyone uses they download at this point. As for the keyboard/mouse you should familiarize yourself with the product in question before making comments. The MS Surface tablets all come with a cover that doubles as a physical keyboard. As for the mouse, the keyboard includes a trackpad like on laptops and obviously the touch screen is supposed to cover some of the functionality of a mouse as well.

    8. Re:Same problem at Newegg- Really a MS problem by JediJorgie · · Score: 1

      "What you buy for Windows RT will not just work on Windows 8."

      You are both wrong and right. You cannot take the binary from your Windows RT and run it on Windows 8 BUT because the only place you can buy software for Windows RT is the Microsoft store, and one of the rules of the store is that applications that support RT also support x86 (but not the reverse AFIK), you will be able to run the same software on your Windows 8 machine, you will just have to download it.

    9. Re:Same problem at Newegg- Really a MS problem by shutdown+-p+now · · Score: 1

      Does a non-technical person buying a tablet even care?

      Don't forget that Windows RT still has the desktop. And that Desktop tile on the home screen..

      Here's what I suspect will be a fairly common experience.

      1. Fire it up.
      2. Note the Desktop tile and tap it.
      3. Oh, this is just like Windows on my PC! Let me try installing my games here...
      4. ...
      5. FFFFFUUUUUU.jpg

    10. Re:Same problem at Newegg- Really a MS problem by Missing.Matter · · Score: 1

      The vast majority of software almost everyone uses they download at this point.

      Got sources for that? Software these days are multi-gigabyte, and many people in the US and the world don't have access to the bandwidth necessary to make downloadable software economical.

      As for the keyboard/mouse you should familiarize yourself with the product in question before making comments. The MS Surface tablets all come with a cover that doubles as a physical keyboard.

      Actually, perhaps you should familiarize yourself; the $499 Surface comes standard without a keyboard, and you can add one for an extra $100-$120. Regardless this conversation isn't about surface. No one mentioned surface. This is about Windows RT, which will come loaded on a variety of hardware from a variety of manufacturers. The vast majority of devices running Windows RT will be tablets. Even with the ability to attach keyboards and mice, Windows RT still looks like a touch interface and is very different from what consumers are used to as "Windows."

    11. Re:Same problem at Newegg- Really a MS problem by tuppe666 · · Score: 1

      An optical drive? The 90s?

      I'm pretty confident that you can buy USB optical drives. They are very cheap and awfully handy.

    12. Re:Same problem at Newegg- Really a MS problem by dryeo · · Score: 1

      I understand that RT uses .net which is interpreted (really compiled on the fly) and programs using pure .net will run on either RT or 8. So programs written for 8, if your careful not to use any other API, will run on RT and RT programs will run on 8.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    13. Re:Same problem at Newegg- Really a MS problem by Anonymous Coward · · Score: 0

      I understand that RT uses .net which is interpreted (really compiled on the fly) and programs using pure .net will run on either RT or 8. So programs written for 8, if your careful not to use any other API, will run on RT and RT programs will run on 8.

      Not the api the friggin compiler is the difference. You will still need to use an arm capable Visual Studio and compile two completely different binaries. Secondly from what I have read the arm libraries and header files will not do a considerable number of calls, especially audio and graphics C# calls that you would normally use for x86. So there will be considerable amounts of code that will be very significantly different.

      This is why the serious dev houses like Finale and the like are avoiding RT in droves. It will require gobs of in house retraining. Although a touch capable music notation interface would be a really wonderful thing it will take quite a while until something as fundamental as a comprehensive touch capable music notation interface is ever ported to the Microsoft app store! Fact is Ipads and Androids are allot closer to having this kind of useful feature. And as for games, unless Microsoft has cooked up a shitload of them themselves their app store will be a epic fail.

    14. Re:Same problem at Newegg- Really a MS problem by bingoUV · · Score: 1

      Got sources for that? Software these days are multi-gigabyte

      More than 1% of Software is multi-gigabyte? Are you insane? Search for "best windows software" - gives makeuseof as the first result. 50-60 software listed on first page for windows, none of them multi-gigabyte.

      Second result : download.com. Top-20 software by number of downloads listed on home page. None of them multi-gigabyte.

      If less than 1% of software is multi-gigabyte, it is highly misrepresentational to say "Software these days are multi-gigabyte". It is the other 99% of Software that can easily be downloaded being discussed.

      --
      Bingo Dictionary - Pragmatist, n. A myopic idealist.
    15. Re:Same problem at Newegg- Really a MS problem by jedidiah · · Score: 1

      > An optical drive? What is this? The 90s?

      Some stuff still requires it. WinDOS Games especially like to have DRM that require you to have the actul game disk loaded when you are playing the game.

      Although if you have two full power USB ports it's not going to be a real problem.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    16. Re:Same problem at Newegg- Really a MS problem by jedidiah · · Score: 1

      We're talking about wireless phone networks here so stuff doesn't have to be multi-gig to be a bother. There are apps for the phones that are big enough to be a bother on a slow phone network.

      Even these are relatively tiny compared to anything but "shareware utilities" on Windows.

      Stuff is small and suituable for "download only" on Windows or MacOS or even Linux only if it is tiny and trivial doesn't need any supporting shared libraries.

      Big serious apps for real work or even a decent hobby simply aren't going to be that tiny. Add in a crap wireless network and things seem bigger still.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    17. Re:Same problem at Newegg- Really a MS problem by vux984 · · Score: 1

      I understand that RT uses .net which is interpreted (really compiled on the fly) and programs using pure .net will run on either RT or 8. So programs written for 8, if your careful not to use any other API, will run on RT and RT programs will run on 8.

      And none of that matters, because if you put an app in the microsoft app store compiled for RT on ARM, you have to put it up in the app store compiled for x86 as well.

      So anything in the app store that supports RT will support 8. You can't necessarily use the same binary you downloaded from the app store for RT, but it doesn't matter you just download the ARM version for your win rt arm device and your x86 version for your Win 8 x86 devices.

      Its like buying mac games on steam; any mac game you buy comes a windows version as well. You can't use the mac binary on your pc, of course, but it doesn't matter.

    18. Re:Same problem at Newegg- Really a MS problem by bingoUV · · Score: 1

      Why are we talking about only wireless networks here? The devices in question have wifi. And some software might me 100MB or more, but everyone needs some small software which they are used to downloading, at least when on wifi. Which will not work on RT. Which is what the topic of the article.

      --
      Bingo Dictionary - Pragmatist, n. A myopic idealist.
    19. Re:Same problem at Newegg- Really a MS problem by hazydave · · Score: 1


      But now that ship has sailed. We have Two versions of "Windows" launching on tablets at the same time, that look the same, but only one runs "Windows Software",

      Does a non-technical person buying a tablet even care?

      Well, while I can't exactly get inside the head of that non-technical person... why does/would a person buy a Windows computer of any sort? Is it that they're in love with Internet Explorer? That they just can't get enough of Windows Solitare? I'm guessing "no"... it's probably because of software compatibility. I'm a techie... but given my 'druthers, I'd be running HaikuOS or something equally obscure, just to confuse people... if only it weren't for my need to have a bunch of useful applications for actually getting things done. Others pick Windows because of the right games being available only there, etc.

      It really comes down to one thing: software. Only software. That's all Microsoft has ever had to offer -- they got an early jump on the competition, did some now-illegal things to quash any possible competition in PC software, and they've pretty much kept that software ball rolling and expanding since 1981. Now they believe they can re-invent 95% of the stuff underneath, still call it Windows, and in a few months, all of that software will show up in WinRT format. Available only in the Windows Store. No actual windows -- it's all full screen. No one will care about being able to use their 30-year investment in software on these new machines, no one will mind having to repurchase all of their software. Seems a bunch of pretty big assumptions there, even for Microsoft.

      --
      -Dave Haynie
    20. Re:Same problem at Newegg- Really a MS problem by hazydave · · Score: 1

      They've had half that problem with Netbooks and Ultrabooks, and people still managed. Though in truth, I've been buying software online for several years... I can't recall the last time I actually bought a CD or DVD... maybe the Windows 7 DVD (I bought four, pre-release)? Plus, Microsoft is pushing and featuring, as the main point of their new Surface TV ad. They snap on this keyboard thing (in a snappy dance number), making the tablet into a laptop, more or less -- that seems to be the marketing hook they're using over the iPad... their $99 keyboard/cover. So "without a keyboard" isn't really an issue. And users know there's a touchscreen, so they don't miss the mouse.

      They are absolutely going to expect Windows software to run on a Windows tablet. Unless there's a real informational campaign, done at very consumerly levels, to clarify this.

      As I mentioned before, I think Intel's going to be the one to do this, not Microsoft. Microsoft wants to push as many folks onto WinRT as possible, as fast as possible, to get developers interested -- developers know that desktop users are not going to flock to this, and aren't going to accept Metro-only replacements for formerly-usable applications. Forced adoption by iPad-class legions of Windows RT users, however, seals the deal on WinRT.

      Intel really, really wants to get x86 into mobile, for the same reasons Microsoft wants to be there. They're fine right now launching x86 into Android for phones, and may go with tablets there too, but it's on Windows tablets they have the advantage: a Z2760 SOC matches ARM SOCs on price, power, and performance. Doesn't beat them, probably doesn't even beat the latest ARM cores on the way, or a quad core A9... but it does run Windows software. About as well as a typical netbook, or worse, but hey, that's better than "won't go".

      You do wonder how well these tablets actually will run Windows software anyway. RT stuff is all touch, but not regular Windows. Microsoft is including a pen digitizer (like a Samsung Note or a Wacom) in their Surface Pro for this, but the other guys? That may also be an emerging issue, if you actually need to include a mouse to make regular Windows usable.

      The other thing is going to be whether these are seen as real tablets. The ARM and the Z2760 are pretty much in the typical 10" tablet range: under 1.4lbs (the current iPad weighs 1.44lbs), under 0.40" thick (the new iPad is 0.37" thick). Tablets running laptop chips are already being announced, at 1.75-2.0lbs or more and 0.5" thick or more. Then there's battery life... you expect a tablet to go 8-10 hours in typical use. Will fat x86 tablets (many with fans) come anywhere near that expectation? So end users may well find the price and size in RT tablets, but return them after they discover the Windows apps don't work. Then swap them for an Android or iPad -- sure, with exactly the same problem w.r.t. Windows apps, but hundreds of thousands of native apps -- rather than buy the expensive, bulky tablet.

      So I bet Intel is pushing very hard on the Z2760, and they'll call it out in ads, in stickers, something in big, bold, candy-like letters letting every consumer know that THIS is the tablet that's still a tablet AND runs real Windows. Only question is whether this all occurred to them, and the stickers are there in the stores on launch day, or whether they'll have the confusion first.

      --
      -Dave Haynie
    21. Re:Same problem at Newegg- Really a MS problem by hazydave · · Score: 1

      The last version of Cakewalk Sonar I bought was via download... all 16GB worth. So I DLed it at work.

      --
      -Dave Haynie
    22. Re:Same problem at Newegg- Really a MS problem by hazydave · · Score: 1

      And you're hopefully not all that interested in installing a 16GB applications suite (and that's the compressed size) on a 32GB tablet... particularly given that Microsoft only leaves about 20-something GB free. Windows isn't hidden in NOR Flash as on other tablets, it's a proper part of the flash storage space.

      --
      -Dave Haynie
    23. Re:Same problem at Newegg- Really a MS problem by hazydave · · Score: 1

      Also, consider that a large number of recent Windows applications are written in .NET. A .NET program, regardless of the original language used, compiles to an intermediate format, not a machine-specific binary. That last bit, the machine-specific translation, happens at runtime. So if they allowed it, a large number of programs for full Windows could work on Windows RT. But Microsoft doesn't allow it -- only Microsoft can write Win32 applications.

      --
      -Dave Haynie
    24. Re:Same problem at Newegg- Really a MS problem by vux984 · · Score: 1

      Well, while I can't exactly get inside the head of that non-technical person... why does/would a person buy a Windows computer of any sort?

      Windows computers? -> windows games, windows productivity software, compatibility with legacy software, compatibility with 'whatever is at work', familiarity with what is at work.

      And outside of a Mac which are only available in a couple form factors all at the upper end of the price scale while windows pcs are available to fit any budget.

      But the question isn't why they buy windows computers, its why they'd buy a windows tablet?

      Is it that they're in love with Internet Explorer? That they just can't get enough of Windows Solitare?

      No more than ipad buyers have any sort of love for Safari, etc.

      People will buy windows tablets for the same reason(s) they buy apple ones.

      It really comes down to one thing: software.

      It really is more than that, but on the desktop that's a big one.

      On a tablet, like a phone however, its really not. Non-techy people are buying tablets mostly for what the tablets themselves do out of the box -- photos, movies, books, web browsing, chat, facebook/twitter, freebie games off an app store.

      No one will care about being able to use their 30-year investment in software on these new machines

      Right. Because they have laptops and desktops for productivity software.

      no one will mind having to repurchase all of their software

      No one will repurchase much of anything for them.

      My parents haven't spent a penny on apps for their iphone or ipad. I didn't spend a penny on apps for my previous iphone, and I haven't spent anything on apps for my current android either. My wife spent a whole $2 on apps for her phone. My brother hasn't spent a penny, neither brother in law has spent a penny. My parents friends all have ipads, and none of them bought anything for them either except for a few books and movies and songs. They have a handful of $2 games between them all. I honestly don't know anyone who has spent more than $50 on software for a phone and tablet.

      Microsoft tablets for casual non-technical consumers are going to be pretty much the same thing. Its going to be the look of the thing, and the out-of-box-experience, and the availability of 'free' little widgets and apps to mess around with.

      Us tech types will gravitate towards windows 8 tablets* because we want toys that can do it all, but we're not going to be confused by RT vs 8 either. (Plus the Win 8 x86 tablets won't have a locked boot loader so we can play with linux etc.. for us its a no-brainer what to choose if we want a windows tablet)

      (* yes, yes, some of us just want androids out of the box. I'm just talking about the subset of 'us' that wants a windows tablet.)

      They buy

  54. Re:I never expected my iPad to run OSX application by John+Bresnahan · · Score: 1

    Just as everyone who buys a current "Windows 7" phone will soon discover that they are totally obsolete. 2012 is not a good year to be buying new Microsoft devices.

  55. Re:I never expected my iPad to run OSX application by nojayuk · · Score: 1

    I had to explain to some folks in the photography business when the original iPad was released that it would not run Adobe PhotoShop even though it was an computer made by Apple. I expect there will be some folks who will make the same mistake with the MS RT tablets.

  56. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Because Apple is a company and Windows is an operating system?

  57. Re:I never expected my iPad to run OSX application by Karlt1 · · Score: 1

    The differences are:

    1. Apple never marketed the IPad as running MacOS RT or anything resembling MacOS.

    2. Apple doesn't market one tablet running MacOS and another tablet running iOS that look and operate the same but are incompatible.

  58. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Well, they certainly don't sell it as an OSX machine.
    Unlike calling the new Microsoft devices "Windows tablets."

  59. Re:Confusion? Maybe? Pissed off customers? Unlikel by Tapewolf · · Score: 1

    1) Windows RT devices are few and far between to begin with, most customers will be getting traditional x86 devices when they upgrade.

    If it weren't for the hype about the Surface devices, I'd agree. I wonder how many will be returned because they can't run Borderlands 2 or whatever.

    2) Most people don't use a lot of their Windows applications outside of Office and the browser, and the rest will be filled in with the Metro apps, so consumers will likely not be pissed off...yes, get this, most people aren't power users.

    Depends entirely on the category of user. At home? Windows is big in the games market and the Surface can't run any of them. At work? It has no Outlook, no Active Directory support and ships with a version of Office you're prohibited from using in the office without buying upgrade licenses first.

  60. Re:I never expected my iPad to run OSX application by DigiShaman · · Score: 3, Informative

    I'm pretty sure that issue with multi-monitor setups and full screen apps have been resolves in Mountain Lion. At least that version of the OS solved my VMWare fusion problem running in full screen mode. But yes, prior versions of OSX did exactly as you described.

    --
    Life is not for the lazy.
  61. Missing the Point by occasional_dabbler · · Score: 2

    RT is what MS want Windows to become. The desktop is legacy and at some point it will be dropped (admitedly, likely to be many years in the future). Dropping legacy support is one of Apple's strengths so why shouldn't MS try the same approach? Sure, on Oct 26th the RT tablets are going to be a bit of a dissapointment, but that will change. RT is a powerful framework:

    From http://www.winsupersite.com/blog/supersite-blog-39/windows8/winrt-replacing-win32-140605

    "...And in the same vein of blowing past peoples' expectations, virtually no app could not be written as a WinRT app. Many are imagining very simple, HTML-like apps, and while I'm sure there will be plenty of those, you need to reset your expectations up. WinRT is amazingly full-featured and not constrained to goofy utilities and simple games. The next "Call of Duty" could be a WinRT app, complete with support for Edge UIs and Charms..."

    It is the x86 tablets that are the stop-gap

    --
    "Our opponent is an alien starship packed with atomic bombs," I said. "we have a protractor"
    1. Re:Missing the Point by Tapewolf · · Score: 1

      RT is a powerful framework:

      From http://www.winsupersite.com/blog/supersite-blog-39/windows8/winrt-replacing-win32-140605

      "...And in the same vein of blowing past peoples' expectations, virtually no app could not be written as a WinRT app. Many are imagining very simple, HTML-like apps, and while I'm sure there will be plenty of those, you need to reset your expectations up. WinRT is amazingly full-featured and not constrained to goofy utilities and simple games. The next "Call of Duty" could be a WinRT app, complete with support for Edge UIs and Charms..."

      It is the x86 tablets that are the stop-gap

      With games rated over 15 banned from the app store, sandboxing that prevents simple things like IPC and restrictions against plugins or scripting... good luck getting a CoD type game, mate.

    2. Re:Missing the Point by occasional_dabbler · · Score: 1

      Yeah, the 15 rating thing is stupid but that's lawyer crap and nothing to do with the tech. Maybe it'll change in future? Who knows :-(

      Game development for RT isn't impossible though (it says here...):

      http://blogs.nvidia.com/2012/08/nvidia-brings-unreal-engine-3-to-windows-8-and-windows-rt/

      As for the other stuff, sandboxing comes with a price, but surely the security and stability improvement is worth it? I don't even play games let alone develop them so you'll have to explain why I would need IPC (You get basic IPC to the MS built-in apps I think) and plugins and scripting are just one means to an end aren't they? You don't need to use them?

      All that said, I'd quite like one of these Surface thingies, but I'll wait for the i5 one because I want to be able to run Python on it on the train.

      --
      "Our opponent is an alien starship packed with atomic bombs," I said. "we have a protractor"
    3. Re:Missing the Point by Anonymous Coward · · Score: 0

      The Desktop and Laptop will live forever, and anyone who thinks they won't is just fooling themselves.
      Real gamers and enthusiasts (like, you know, all the smart people) will have a Desktop for the maximum performance at home (like I do), and a laptop while they are on the go. Real tech people don't need tablets or anything other than a simple phone.

      I don't understand the appeal of Tablets or smartphones. Anything they can do my Laptop can do better, and anything my laptop can do my Desktop can do faster and more ergonomically.

    4. Re:Missing the Point by tuppe666 · · Score: 1

      Yeah, the 15 rating thing is stupid but that's lawyer crap

      No its a choice. That Microsoft has made. Which is unique to online game stores out there. Its not even a problem, choose a platform that supports grown up gaming.

    5. Re:Missing the Point by rastos1 · · Score: 1

      Dropping legacy support is one of Apple's strengths so why shouldn't MS try the same approach?

      Because Windows is all about legacy. They practically invented it and defined it. If there wasn't for legacy the IT world would not be in the shape it is - busy working around troubles that were not identified and avoided 15 years ago.

    6. Re:Missing the Point by Tapewolf · · Score: 1

      For games - well, yes, I suppose you could control everything inside the EXE like they used to do 22 years ago, but of course that means your map designers have to be C++ programmers and they have to be able to recompile the game. IMHO that puts us back in the dark ages.

      A game doesn't need filesystem access but something like Photoshop or any DAW software would.

      And on that note, half the adverts I see on Slashdots are for VST plugins. Personally I do everything in hardware to avoid being tied to one OS that Microsoft may replace with RT, but they are freaking popular. It's a whole thriving market which simply cannot exist on RT. Yeah, you could make a standalone synth program or effect, but without being able to communicate with the sequencer or DAW by IPC, there is basically no point.

  62. Re:I never expected my iPad to run OSX application by ArhcAngel · · Score: 1

    Because Apple is the company name and Windows is the name of a product line. If it were Microsoft RT then your argument might be valid. It would also be less confusing. If Samsung introduced a new laptop and called it the Samsung Galaxy LT I would expect it to run Android out of the box.

    --
    "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
  63. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    As opposed to poorly handled Xinerama support stretching an image or game across five?

  64. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    That is some messed up shit. Even Windows 98 handled multiple monitors better.

  65. Re:I never expected my iPad to run OSX application by __aaqvdr516 · · Score: 1

    The confusion is with people that keep stating that it's "Windows 8 RT" It's not "Windows 8 RT", it's "Windows RT".

    I don't think too many people thought "Windows CE" or "Windows Mobile" would run legacy applications.

  66. Re:I never expected my iPad to run OSX application by Sir_Sri · · Score: 1, Informative

    No, the summary correctly explains that this is a disaster waiting to happen for support. Windows has been Windows for the last 30 years because they've reasonably well managed compatibility from one version to the next, and usually several versions beyond that. Microsoft money doesn't work anymore, but I have stuff from the late 90's that works fine on regular windows 8.

    Windows RT is a different animal entirely, and I hope it's not intended as a serious product but just as a bone being thrown to the ARM guys in case that really becomes a future necessity, but that doesn't seem to be the case. It seems like they really are forking windows with the hope that new programs will support both. I certainly know I'm not supporting windows RT with anything I'm working on though, but who knows, maybe the big guys at EA and Activision will.

    With Windows 8, and Windows RT and surface microsoft has picked fights with their biggest supporters, developers, consumers and manufacturers, in that order. This is bad all ways around. The app store risks limiting the open platform nature of Windows, Windows RT is going to confuse everyone who isn't on /. on a daily basis, and Surface is making all of the hardware partners wonder if microsoft is more competitor than ally. All of this could go very badly for everyone, although the hardware partners needed a good kick in the pants 10 years ago. And I haven't even gotten into the clusterfuck that is the design of windows 8.

  67. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Right, because THAT is how Apple goes about selling the iPad - "It's a bigger iPod."

    LOL.

    The iPad looks a lot like an iPod and nothing like a Mac. It does not say Mac anywhere on the box. It does not say MacOS anywhere on the box.

    Now compare that to a Windows tablet, which says 'Windows' on the box.

    I wonder which one users might be confused about? Particularly given that most iPad buyers probably got there from iPods and iPhones, not Macs, whereas most Windows tablet purchasers will probably be buying one after using a Windows PC.

  68. You can have any Zune you want by WillAffleckUW · · Score: 1

    You can have any Zune you want.

    So long as it runs a fallible OS designed to function badly on a desktop and semi-reasonably on a mobile device.

    --
    -- Tigger warning: This post may contain tiggers! --
  69. from FUD to Hope & Prayer? by Anonymous Coward · · Score: 0

    "Windows RT won't support legacy Windows applications — instead, users will need to hope and pray that developers port those applications to the Windows Store, the only venue for RT-supported apps."

    Any technology that's misunderstood by consumers or sufficiently misrepresented by its reps will appear to be magical to its users. And when it doesn't live up to the hype... who ya gonna blame? (Hint: not Ghost Busters)

    And Man_Is wrote:

    "I don't think anyone would expect a tablet to be an acceptable desktop replacement machine - nobody thinks that of an iPad..."

    And I would have assumed that to be true, except for the earlier post about the school in the UK that traded ALL their Mac Books in exchange for iPads and learned to regret the decision based on 1st hand, empirical observation.

    IMHO: The shrinkage effect isn't confined to the beach. The tech industry has been busy hyping all things small while failing to adequately differentiate its offerings to the consumer. Appropriate I/O and form factor are important, but the industry leaves it to the end user to do their own research.

    Thanks Microsoft - Caveat Emptor suckers!!

  70. Windows RT, RTM, RC, RTFM? by Anonymous Coward · · Score: 0

    This is actually the first I've heard of Windows RT actually being a separate copy of Windows. I'm a techie (but don't run windows, forgive me), and whenever I saw Windows RT.. I thought it was "evolution" of Microsoft's "RC" designation. Every time I read about Windows RT, I never saw "ARM-version" or anything of the like.. so I figured they were talking about the testing version of Windows 8.

    Then, of course, there's Windows 8 RTM.. which is Windows 8.. and not the RT version, which also isn't Windows RC, a release candidate. Brilliant, Microsoft. Why didn't they just name it Windows ARM? It does sound like they purposely made it ambiguous in the typical Microsoft fashion. Not a good start with a "revolutionary" product :-/

  71. seriously? by tehlinux · · Score: 4, Funny

    Now just two versions of Windows is too confusing for consumers?!

    --
    Most linux users don't know this, but the man pages were named after Chuck Norris. Chuck Norris fsck'ing hates noobs!
    1. Re:seriously? by Tapewolf · · Score: 1

      Now just two versions of Windows is too confusing for consumers?!

      Two incompatible versions.

    2. Re:seriously? by tehlinux · · Score: 1

      Except I'm pretty sure the pro version will run metro style apps.

      --
      Most linux users don't know this, but the man pages were named after Chuck Norris. Chuck Norris fsck'ing hates noobs!
    3. Re:seriously? by Anonymous Coward · · Score: 0

      no, rt is completely compatible with 8, just not vice versa

    4. Re:seriously? by Tapewolf · · Score: 1

      Except I'm pretty sure the pro version will run metro style apps.

      And maybe one day that will be important. Right now, it's win32 applications that people need to run. And not being able to run those applications was the reason given for the Linux Netbook market shrivelling up.

  72. Re:I never expected my iPad to run OSX application by Darinbob · · Score: 1

    Windows RT runs on the ARM, not the x86. Older Windows applications just won't work on it without including emulation software of some sort, which would be slow and bulky.

    The biggest problem with Windows and Intel architectures in general is this need to be backwards compatible, and it make sense at some point to cut the connections and say that the ARM version of Windows is only for ARM applications, leaving any emulators as optional add-ons.

  73. Re:I never expected my iPad to run OSX application by Darinbob · · Score: 2

    That's because Windows is being used as too broad of a marketing label. Their tablet versions should have had different names from the full sized operating systems. Ie, a Macintosh is seen by customers as a real computer. An iPad is seen by customers as a stripped down computing device with less CPU, RAM, and storage than a full computer, with a tablet basically being like a larger smart phone.

    Maybe they're planning on full edition Windows 8 to be on a small tablet, but that's a separate problem of Microsoft shoving too much stuff into small devices. Then again if they do manage to get Windows 8 to run smoothly and quickly on a tablet, then people can start demanding the same performance on a real machine as well instead of the typical mantra that everyone must upgrade their machines to run the latest OS.

  74. Re:I never expected my iPad to run OSX application by jimmyfrank · · Score: 1

    Weird, my Windows 8 doesn't look like WinRT at all, it looks like Windows 7, no tiles.

  75. OFFS by pbjones · · Score: 1

    do people really expect a Pad to be the same as a PC? I know that that is an image that is showing up, keyboards, external touchpad etc, but a Tablet/Pad is just a machine that does the routine and fun things, not full-blown Office work.

    --
    There was an unknown error in the submission.
    1. Re:OFFS by Shados · · Score: 1

      Except Windows 8 and Windows RT tablets look very similar. The asus models look pretty much exactly the same, except the Windows 8 versions come in thicker/larger models, but aside for that they're the same. Convertible tablets with keyboard add-ons.

      When the hardware looks the same, and the UI of the operating system looks the same... its easy for even some geeks to get confused.

    2. Re:OFFS by ClaraBow · · Score: 1

      Exactly! Not to mention how many times of heard people on slashdot saying how they can't wait to get a tablet that runs "real applications." The first tablets coming to market are RT models, which will not run desktop software, but the x86 models will when they come out. By that time, people who bought a table wanting to run desktop apps, will be frustrated enough not to look at the new tablets. I'm sure they will be priced at nearly the same price point as ultra books, which will deter many buyers.

    3. Re:OFFS by Cro+Magnon · · Score: 1

      It's ironic. One tablet run on ARM, and the other costs an ARM (and leg).

      --
      Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
  76. Re:I never expected my iPad to run OSX application by Fjandr · · Score: 2

    Suppose Apple had two nearly-identically named products with nearly identical apparent functionality which couldn't run the same programs. Say, iPad 3 and iPad X. Look the same, appear to function the same, same product line name, just a different version to indicate there's some sort of difference. The iPad 3 runs everything that can run on iOS, but the iPad X runs only apps made just for the iPad X.

    Then, and only then, would the comparison be fitting.

  77. Re:I never expected my iPad to run OSX application by MikeBabcock · · Score: 1

    I've been fixing computers for over 20 years and without prior knowledge to the contrary, I'd expect two devices that both say Windows to run virtually the same software. I might expect the cheaper one to be slower, but I certainly wouldn't expect them to be completely incompatible with each other.

    --
    - Michael T. Babcock (Yes, I blog)
  78. Absence of feces, detective by Anonymous Coward · · Score: 0

    n/t

  79. Re:I never expected my iPad to run OSX application by warrigal · · Score: 4, Funny

    You guys are Pros. I have never seen a thread critical of Microsoft derailed into an Apple bash-fest quite as fast as this one. TFA wasn't even suggesting that MS was up to no good.

  80. Re:I never expected my iPad to run OSX application by Darby · · Score: 1

    I do not even know how they expected to use Office or their games on a phone, but that's the thing with luddites:

    If they're using new technology they're the diametric opposite of Luddites. Perhaps "technologically inept" is the phrase you were looking for?

  81. Re:I never expected my iPad to run OSX application by bondsbw · · Score: 1

    You didn't mention that a phone looks totally different from a computer. A tablet, not so much (but now thanks to Apple, they are now classified as very separate devices with different expectations).

    convincing people that Windows 8 on desktops will run desktop applications. You see that confusion here on Slashdot all the time.

    Confusion? No... more like complaining. People on Slashdot know the difference, they just don't like Microsoft or they just want to complain about something.

    The desktop/laptop form factor will almost certainly use full Windows 8. The confusion should be minimal. But I'm sure there will be some ARM netbooks/tablets with built-on physical keyboards... that will be the most confusing area for consumers.

    --
    All my liberal friends think I'm a conservative, all my conservative friends think I'm a liberal.
  82. Re:I never expected my iPad to run OSX application by bondsbw · · Score: 1

    Oops... I now see you did mention that the form factor looks different from a desktop.

    --
    All my liberal friends think I'm a conservative, all my conservative friends think I'm a liberal.
  83. Re:I never expected my iPad to run OSX application by BeanThere · · Score: 4, Insightful

    I never expected my iPad to run OSX applications

    ...

    I can see people possibly being confused by this

    Some percentage of users will definitely be confused by it. I do support for software sales of Windows-only software, it's clearly labelled Windows only, and yet a regular request is processing refunds for users who bought the software and then claim to be confused that it doesn't run on their iPad or iPhone or Mac. If people can't even tell the difference between Mac and Windows then they sure aren't going to grasp these relatively finer distinctions. If you're stupid you must suffer.

  84. Wait till the 8 zillion versions of 8 by gelfling · · Score: 4, Funny

    8 home basic
    8 home plus
    8 professional
    8 professional extreme
    8 professional plus office
    8 server
    8 advanced server
    8 professional server
    8 data center server
    8 mobile
    8 home extreme basic plus limited
    8 media
    8 media server
    8 home lightweight
    8 professional with surface
    8 media with surface
    8 surface server

    1. Re:Wait till the 8 zillion versions of 8 by Anonymous Coward · · Score: 0

      Where is 8 phone?

  85. ignant priatary progrom yusers by Anonymous Coward · · Score: 0

    stupidd littel cuints if i ever done sean wun

    fuck off and dye you dumb cuints

    1. Re:ignant priatary progrom yusers by Anonymous Coward · · Score: 0

      yup minds me of them inbred littel shitheds down near ole widder jonsons form. wun of ems allways trine to suck my hounds hog

  86. Re:I never expected my iPad to run OSX application by JediJorgie · · Score: 1

    So you missed posted by Missing.Matter above?

    Its from the Apple website back when the iPhone launched:

    “iPhone uses OS X, the world’s most advanced operating system. Which means you have access to the best-ever software on a handheld device”

  87. The Desktop and Laptop will reign forever by Anonymous Coward · · Score: 0

    For some bizarre reason, Microsoft seems to think that tablets will replace all other forms of computing. This is bizarre thinking on their part.
    Tablets are useless, anything they (or smartphones) can do, my laptop does better. Easily 90% of the people around campus at my University use their laptop for everything (though many of them have a smartphone for some reason).

    My Desktop at home is even more powerful and ergonomic than my laptop, and was slightly cheaper to boot. The computers in the math lab and the computers people use for working on around campus are all decent Desktop machines. There's a reason for this- there are plenty of times where mobile computing isn't necessary.

    I do eventually want to get a new motherboard for my Desktop so I can crossfire my 6950, and I"m going to get a cooling system for my CPU as well. My machine is still important. Real gamers use Desktops, and always will. I can game on my Laptop, but I'm not nearly as good and I have literally half the performance.

  88. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    I was at a customers the other day, and they asked exactly the opposite of that... Asking how they could install their iPad apps on their iMac.
    Don't underestimate the stupidity of users.

  89. Re:I never expected my iPad to run OSX application by shutdown+-p+now · · Score: 4, Interesting

    People have been downloading software instead of installing it from DVDs for a long time now. I suspect that quite a few people will try to install Steam on it, for example.

  90. Re:I never expected my iPad to run OSX application by MouseTheLuckyDog · · Score: 1

    Only good thing though is these RT devices will quickly be sold at fire sale and maybe we can put Android on them ;)

    Nah. My understanding is that MS is requiring all Win 8 tablets to be UEFI protected so you won/t be able to replace the OS.

  91. You want to bet that in MS stores... by MouseTheLuckyDog · · Score: 0

    they will only give store credits for returns? Then the people will have to buy something from that store and will buy the only alternative, the device that actually runs the software they want. Forcing them to spend the extra $$ to get it and causing them to spend a lot more money then they ever wanted? Nah.

  92. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 1

    Do you really think Luddite is the correct term for people that want to install software on a smartphone?

  93. Windows Legacy...I mean 8 by dZap · · Score: 1

    Can we stop using the word legacy for all windows applications not for RT. It's not like they are suddenly superseded.

    1. Re:Windows Legacy...I mean 8 by jbolden · · Score: 1

      As of Windows 8 they will run on only a fraction of the hardware base, in an interface not too different from a guest OS. Yeah that's legacy.

  94. Re: RT is what MS want Windows to by Anonymous Coward · · Score: 0

    > RT is what MS want Windows to become.

    Exactly. With legacy Windows anyone can develop and sell apps without Microsoft getting a cut. Anyone can set up a service (such as dropbox) that bypasses MS revenue collection Juggernaut. THIS MUST STOP. Microsoft deserves to collect a tax on _all_ IT and consumer spending for _all_ services and _all_ software. Retail shops and third party software houses are stealing from the mouths of microsofties, ms stock holders and CEOs. More importantly Google is stealing from Bing by taking searches from Windows machines that rightfully belong to MS. The FTC have been told about this anti-competitive work by Google, but Windows RT will take direct action and will forbid any searches except via Bing. That will teach Google to not be anti-competitive.

  95. Re:I never expected my iPad to run OSX application by thegarbz · · Score: 1

    Wait what? Who cares about what runs on Windows 7. The point of the article is that Windows 8 and Windows RT are very similar yet applications from one won't run on the other.

  96. Re:I never expected my iPad to run OSX application by toriver · · Score: 1

    Windows 98 did not have the OS X concept of full-screen apps. If you never use st feature in Lion you will not have multiple monitor problems there, either.

  97. Re:I never expected my iPad to run OSX application by Nivag064 · · Score: 2

    But, but, ... I got told my smart phone is as powerful as the early supercomputers!

  98. Re:I never expected my iPad to run OSX application by Missing.Matter · · Score: 1

    The point of the article is that Windows 8 and Windows RT are very similar yet applications from one won't run on the other.

    And this is only a problem if people have an expectation that Windows tablets will run their desktop software. Since Windows 8 and Windows RT running on a tablet bears no resemblance physically or visually to what people are used to in terms of a traditional Windows 7/XP desktop/laptop form factor. I think they're more likely to associate Windows 8/RT on a tablet to an iPad, with an expectation of only being able to install apps from an appstore.

  99. Re:I never expected my iPad to run OSX application by toriver · · Score: 1

    That could be because all the rumors leading up to the launch assumed it would run the desktop OS because that was what the existing Windows tablets did.

  100. Re:I never expected my iPad to run OSX application by hairyfeet · · Score: 1

    Except they didn't name the iPad a Mac tablet now did they? I've been saying for months this would happen, when you have consumers that don't know ARM from leg and retail employees that are glorified "card readers" like on the NewEgg commercial you have a perfect storm of fail for Windows 8 all around. Now once the word gets out that SOME Windows 8 will run their stuff and SOME Windows 8 won't and they can't tell by looking, how many will just avoid it altogether?

    mark my words Win 7 is the new XP, Win 8 the new Vista, and WinRT the new WinPhone 7, Win 8 devices end up joining the Touchpad and playbook on Woot! and the web will be filled with people saying how much you should avoid Win 8. Kinda telling how for every. single. new. version. of Windows released there were transformation packs to bring the look and feel to previous users, now there is a pack to bring the Win 7 look and feel to Win 8.

    --
    ACs don't waste your time replying, your posts are never seen by me.
  101. Your average user... by Anonymous Coward · · Score: 0

    As a highly experienced small business solutions consultant (18+ years and running) who has specialized in steering small private businesses and non-profits into the low cost world of cloud services, and also being responsible for the tech purchases for such organizations (i.e. a business level usage of otherwise consumer-oriented devices, such as the iPad), I agree that the distinction between a Windows RT tablet and a Windows 8 tablet will be confusing to your average consumer. However, savvy SMB owners and others looking to reduce hardware costs will have either the benefit of their own research (if you're running a business on a shoe-string budget you try to never purchase gear that doesn't meet requirements, which means research) or your guy (like me) makes it a point to be aware of available offerings and steers you, as the business owner, in the right direction.
    And as such, the difference between RT and 8 will be understood. In essence maintaining Microsoft's core base of "professional" usage.

    Yeah, your average Best Buy shopper might F up and grab a surface running RT and encounter the whole "oops wrong version" scenario, but the real bread & butter customers of Microsoft won't have that problem (so long as their IT group/guy does his job).

    In addition, most tablet/smartphone using consumers are already accustomed to the "get apps from the app store" model and won't expect a windows tablet to be any different.

    The problem that Windows 8 faces, in my opinion, is widespread adoption both at a consumer and corporate level. It's enough of a divergence from commonly accepted UI paradigms that using it in a work environment will have a bit of a learning curve, which is enough to indefinitely postpone user land upgrades in favor of preserving deprecated workflows that the existing workforce is comfortable with. If I were running the Windows 8 team I'd have ensured that there'd be an install option to boot to a traditional Windows desktop, allowing firms to take advantage of the improved OS security and stability features without requiring a couple seconds (and if you've ever worked in user land support at a high frequency company you'd know how many complaints an ostensibly minor software change can generate from the corporate savants). Give us an install toggle to enable boot to desktop instead of metro and MS would have an incredibly worthwhile product. As-is, the railroading desktop users to Metro is a bit premature. I think we can all agree that the future for your average office drone is going touchscreen and, for what it's worth, MS is right at the vanguard, but 8 should be more of a crossover UI to get people used to some elements of Metro, not just a cold turkey cutover.

    1. Re:Your average user... by jbolden · · Score: 1

      I don't think it is a cold turkey cutover. Cold turkey is when Win32 compatibility isn't out of the box and you need another OS to get it. And then when it just becomes a guest OS. But it sends a clear message of the direction.

  102. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Windows RT has "Windows" in its name, just like "Windows 98", "Windows XP", "Windows Vista" or "Windows 7".

    And also just like Windows CE, Windows Mobile, and Windows Phone, none of which has resulted in mass confusion over whether you can install regular Windows aps.

  103. Re:I never expected my iPad to run OSX application by SgtChaireBourne · · Score: 1

    Only good thing though is these RT devices will quickly be sold at fire sale and maybe we can put Android on them ;)

    Perhaps that is one of the things that M$ aims to prevent in its lock-down of ARM systems. To get certified for Vista8, any ARM device that ships with Windows 8 will never run another operating system, unless it is signed with a preloaded key or a security exploit is found that enables users to circumvent "secure" boot. That will definitely crimp the style of any home modders.

    --
    Beta is broken and the link to classic doesn't work. Stop wasting our time or there won't be anybody left here.
  104. Atsa da Vista baby! by dbIII · · Score: 1

    Windows has been Windows for the last 30 years because they've reasonably well managed compatibility from one version to the next

    Experience leads me to strongly disagree, just about every change was a support disaster but a lot of people have forgotten because XP was around for so long and we had other reasons to bitch about Vista. MS Windows breaks things with every version, especially things that use Microsoft libraries. Dotnet (fucking stupid name that is impossible to use on a written page without looking like an illiterate idiot) gets around this very well by finally following the example of just about every other software project written since 1970 by actually keeping the different incompatible versions of the libraries separate, so you can actually run your old dotnet apps alongside your new ones. Just about everything else that wasn't built with portability in mind still has the stupid DLL hell problem and is going to break a version or two down the track.

  105. Re:I never expected my iPad to run OSX application by dbIII · · Score: 1

    With an N900 or an Android phone it's not an entirely insane idea - there are emulators for a lot of environments. Recent MS windows and usable - unrealistic - old MSDOS stuff, atari etc - not so silly.

  106. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    And: It doesn't run ... Unity Hooray!!!!

  107. Re:I never expected my iPad to run OSX application by bingoUV · · Score: 1

    Since Windows 8 and Windows RT running on a tablet bears no resemblance physically or visually to what people are used to in terms of a traditional Windows 7/XP desktop/laptop form factor

    No, their laptop is likely to come with Windows 8. Tiles and the works.

    --
    Bingo Dictionary - Pragmatist, n. A myopic idealist.
  108. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    And this is only a problem if people have an expectation that Windows tablets will run their desktop software.

    But the Windows 8 Pro tablets WILL run their desktop software. The ARM ones won't, but both will look superficially identical.

  109. Re:I never expected my iPad to run OSX application by Anne+Thwacks · · Score: 1
    I think if anyone used the word "Windows" to sell their not even slightly similar product, MS would sue their balls off for impersonation in seconds, regardless of whether the corners are rounded. The word is there precisely to give the impression that the software environment is identical.

    Hardly anyone will understand the concepts involved. Look at the number of people who are happy to believe that OpenOffice is "the new version of Office", or who cant tell the difference between MS Office and Windows. What percentage of Americans know what an OS is? Probably more would know that A4 is a paper size, but I have no research to prove it. (In Europe "Load Letter" means its time to discard your printer and buy a new one - preferably with better support for users)

    --
    Sent from my ASR33 using ASCII
  110. Re:I never expected my iPad to run OSX application by Anne+Thwacks · · Score: 1

    We soon found out that Winows Mobile was pretty much incapable of running any software at all. They lost all your data, had no support worth talking about, and upgrade was impossible. Hence dismal sales. We are sure as hell not going to buy any more portable devices with the word "Windows" on them. Symbian devices may not be upgradeable, and have few apps, but at least they dont crash and lose your data several times a week.

    --
    Sent from my ASR33 using ASCII
  111. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Tell them they needed to buy a phone with a DVD-ROM drive. Take it back and swap it over.

  112. Re:I never expected my iPad to run OSX application by Bongo · · Score: 1

    The iPad was iconic, and this helped establish it for consumers as a new category.

    Microsoft Windows doesn't have that problem. You know Windows is a variety of stuff anyway, and are expecting to make a bunch of choices about how to work with it.

    This is an area where perhaps the worst thing Microsoft could do is try to imitate Apple. It isn't how MS works really, and it isn't how MS users work.

    Speaking as an Apple fanboi (of product design and focus), I don't see how MS can pretend its users are fanbois or try to turn them into that. Like Google, it'll have people tripping over themselves (Google trying to not be an advertising revenue driven bottom line. )

    Windows 8 doesn't need to be simple or iconic. They have other ways of making you buy.

  113. Who wrote this? by Anonymous Coward · · Score: 0

    "a high potential for unsuspecting consumers to end up burned"

    "users will need to hope and pray"

    ???

  114. Opposite of 'Halo effect' by Anonymous Coward · · Score: 0

    Let's call it the 'Metro effect'.

  115. Re: RT is what MS want Windows to by occasional_dabbler · · Score: 1

    There are apps for Dropbox and Google Search on Windows Phone.

    MS want a nice fat revenue stream just like Apple's. Who wouldn't?

    --
    "Our opponent is an alien starship packed with atomic bombs," I said. "we have a protractor"
  116. Re:I never expected my iPad to run OSX application by ericloewe · · Score: 1

    Sure you can, as long as they're signed.

  117. Microsoft's window of RISC is long past by unixisc · · Score: 1

    Manufacturers who decide to make Windows based tablets or even phones should base them on the Medfield or the Hondo. Don't even look @ ARM. Of course, in reality, it'll be a lot of work getting a Windows 7 app to run on a Windows 8 tablet, but it's at least doable. With ARM, it'll be next to impossible.

    Microsoft is pretty much stuck w/ the x86, since they passed up the golden opportunity that they had in the 90s to make all their apps available for all their Windows platforms - MIPS and Alpha. Had they done that, they'd have caused a major coup on the portability front, and what's more, they could have even bought up DEC if they wanted to get a platform for their hardware. That would have given them both Alpha and StrongARM. Instead, they stuck to x86, and only focused on servers for the RISC platforms (which was not the appropriate case for MIPS, which was more of a workstation CPU). As a result, those platforms went nowhere, since they were nowhere near Sun in terms of Unix (although SGI was next only to Sun). If Microsoft couldn't do squat w/ such great CPUs, them going far w/ far inferior CPUs like ARM is out of the question.

    However, as I pointed out in yesterday's thread about the ChomeOS loaded ARM laptops, ARM is definitely a better platform for all the Linux or BSD guys. First of all, despite all the 'open' claims, it'll be a lot more closed - Windows won't run on it (a box would have to be Microsoft certified, since the ARM CPU implementations vary so much that there is no such thing as a generic ARM version the way there is for say, x64, SPARC, POWER, MIPS, et al.) Then again, any software that an user needs will either come with it, or will need to be downloadable as either tarballs, or .deb, .rpm, .pbi or so on. It too will effectively be a walled garden, but mainly b'cos you can't put DVD boxes on shelves for Linux/ARM and expect them to sell, since most Linux users are either too cheap to buy, and a lot of lay users would just buy them expecting them to work on Wintel boxes. Similarly, the peripherals for these things will be highly specialized, and only those for which drivers have been specifically created. In short, it will be a hark back to the days when you got specialized equipment from Sun or SGI to run on Solaris or Irix.

  118. it will be only a matter of time... by Anonymous Coward · · Score: 0

    ... if Intel does the work right it will kill ARM in tablets and in the future on mobiles. If prices and battery duration gets equivalent in a Win 8 tablet versus a Win RT tablet, which one would you buy?. Maybe will see an iPad X on a x86/x64 processor.

    1. Re:it will be only a matter of time... by Elbart · · Score: 1

      That's a ginormous "if".

  119. Re:I never expected my iPad to run OSX application by Chelloveck · · Score: 1

    I'm pretty sure that issue with multi-monitor setups and full screen apps have been resolves in Mountain Lion.

    You're pretty mistaken. Mountain Lion full-screen apps work just like Lion full-screen apps did. Secondary monitors are grey. If the app has multiple windows you can arrange those on the secondary monitor, but that's the extent of multiple monitor support.

    --
    Chelloveck
    I give up on debugging. From now on, SIGSEGV is a feature.
  120. Re:I never expected my iPad to run OSX application by jedidiah · · Score: 1

    That's actually much less bothersome that trying to ditch 30 years of UI expecations.

    Attempts to sabotage the UI impact everyone as opposed to a few trolls fixating on some corner case.

    --
    A Pirate and a Puritan look the same on a balance sheet.
  121. Re:I never expected my iPad to run OSX application by jedidiah · · Score: 1

    People have been downloading software since the 70s.

    That doesn't mean that they have given up completely on physical media. The fact that kids with no memory or experience are excited about something doesn't mean that every thing else suddenly and magically goes away.

    --
    A Pirate and a Puritan look the same on a balance sheet.
  122. Re:I never expected my iPad to run OSX application by jedidiah · · Score: 1

    You would have the same exact problem if Microsoft suddenly started supporting Sparc and PPC. You would have these other flavors of Windows floating around and most users not realizing that there are other platforms out there that won't run an x86 binary.

    It's all about managing expecations and clearly Microsoft wants you to associate their legacy application monopoly with their tablet. It's really the only advantage they have.

    Otherwise it just seems silly like a Windows phone.

    They need to conflate their tablet and their PC product just to be competitive but that's going to ultimately cause some people to be disappointed.

    --
    A Pirate and a Puritan look the same on a balance sheet.
  123. Re:I never expected my iPad to run OSX application by IAmR007 · · Score: 1

    One of the problems is that it's called Windows RT. To this point "Windows compatible" has never had such a serious compatibility regression. Sure, some programs broke between windows versions in the past, but ALL applications not working hasn't been the case.

    There's also the issue that Microsoft is pushing their monopolist practices really hard: a forced walled garden with WinRT, and a purposefully non-user-friendly standard of EUFI SecureBoot (there were ways proposed to make it just as secure, but muti-os friendly, and microsoft chose the monopolistic method). It seems PCs are becoming a niche. I can only hope it will remain possible to run whatever software you want at all.

  124. Re:I never expected my iPad to run OSX application by Elbart · · Score: 1

    "Sold out" doesn't mean much without absolute numbers.

  125. Re:Missing the Point, yes you are. by Anonymous Coward · · Score: 0

    > The Desktop and Laptop will live forever, and anyone who thinks they won't is just fooling themselves.

    Yes they will. The problem that MS has is that the desktops and laptops that users have right now are good enough to last forever (except for gamers who will spend their money on getting another few fps) even if they are running XP or 7. This is especially true when the users have smartphones, iPads and smart TVs that replace much of what desktops are doing. Instead of buying a new upgraded desktop, or a 2nd one for the kids to use, the mobile stuff and TV frees up the desktop machine for others to use.

    Hence, desktops will be there forever, but sales of them will not.

  126. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Microsoft is trying to kick both developers, OEMs and consumers. They need to get their platform to advance.

    Windows 8 creates an OS so now hardware partners can start selling more innovative hardware that will work with the OS.
    Window 8 RT allows for arm systems, i.e. high battery life and somewhat lower costs. Which is an example fo the kind of diversity they want.
    Developer moving to Metro helps to break things that will hold the platform back like non scalable graphics.

    Microsoft is assuming a leadership position, the sort of thing they did during the migration to Windows and again during the Enterprise migration but not much since.

  127. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    They need to conflate their tablet and their PC product just to be competitive but that's going to ultimately cause some people to be disappointed.

    Remember their goal is to conflate their tablet and PC product completely not just in name but in fact. The disappointment will help to push developers to support that objective.

  128. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    And they both run Metro apps.

    So when an app doesn't work, "well its old legacy Win32 not Metro. The app needs to updated"

  129. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Their goal is ubiquitous computing. All applications respond to the form factor they are being run in and are capable of automatically upgrading is larger form factors become available.

    This is what they are aiming for: http://www.youtube.com/watch?v=a6cNdhOKwi0

  130. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Well funny enough:

    Final Cut Pro
    Final Cut Pro X

    Don't run the same scripts and don't have the same feature set.

  131. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Right and when they see apps run under Windows 8 they run is this very counter intuitive way. Like a guest operating system.

    I think it is going to send a very strong message to developers.

  132. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    You can run iOS apps on Mac. The iOS emulator is included in XCode. Which nicely sends the message: this is not going to be user friendly and is intended for developers.

  133. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    And that's fine with Microsoft. Windows Vista moved the OEM's from one driver model to another which allowed for the improvements in Windows 7.

  134. Re:I never expected my iPad to run OSX application by maccodemonkey · · Score: 1

    You can't actually. Apple doesn't make an iOS emulator, only an iOS SIMULATOR. That means you have to recompile your iOS app as an i386/Mac OS X application, and then run it under the simulator which simulates an iPhone display.

  135. Windows Mobile on Windows used to work by mschaffer · · Score: 1

    You could run Windows Mobile apps on windows if you had .NET and a few other things installed.
    Why couldn't Mircosoft do this again?

  136. Coming home to roost by bregmata · · Score: 1

    When the first netbook shipped, it ran Xandros (a GNU/Linux distro) instead of Microsoft Windows, partially because the Windows OS was too demanding of the hardware a partially because the license fees wiped out then entire profit margin for the manufacturer. Sales were briesk at first, but then Microsoft dropped the license fees (sellings Windows at a loss to muscle in to an emerging market) and demanded that the manufacturers up the specs to that of a small notebook so their XP product would run. People immediately abandoned their Linux netbooks because, according to the feedback we received at Xandros, "it didn't run Photoshop."

    I suspect when folks find out Windows RT doesn't run the copy of Photoshop or Office they's brought home from wor, borrowed from a friend, or downloaded, they're going to raise a stink and abandon it for a "real" computer. If it has a screen and a keyboard and says Microsoft on a sticker on the front it had better run that free copy of expensive software otherwise it's just not going to work. If it doesn't have a keyboard, why don't iPad or Android apps work on it?

  137. Re:I never expected my iPad to run OSX application by Anonymous Coward · · Score: 0

    Surely Windows Championship Edition should run Windows software? Or did noone else play Street Fighter 2 :-)

  138. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Point taken. Thank you for the correction.

  139. Re:I never expected my iPad to run OSX application by thegarbz · · Score: 1

    You seem to have completely missed the point. The point is not a desktop vs tablet thing. It's a current operating system with Windows 8 logo, vs another current operating system with Windows 8 logo on it being unable to run the same software.

    If I buy an Android phone I sure as hell expect it to run Android applications.
    If I buy an iPhone / iPad I sure as hell expect to it to run iOS applications.

    As someone else has posted: here's an example of what the sale of these things look like. Now you and I are intelligent people. We'll go through the specs and be able to see the 2 character difference in description between devices.

    Yet here's a list of "Windows 8" tablets, and half of them won't be able to run the software from the other half. Half of them have full backwards compatibility to the rest of the windows brand, and the other doesn't.

    You have an operating system with a full internet explorer that looks identical and in half the cases will be 100% identical to the system you have on your desktop, what on earth makes you think that people magically will associate that device as being a walled garden? What differentiates one sheet of glass with rounded corners and a Windows logo capable of running any standard "compatible with windows operating system" executable from the other which is app store only?

    This is a fuckup on huge proportions. Think back to the netbook days. Big words like Linux, Ubuntu, a complete different look and feel, a complete different box, with no mention of Microsoft or Windows on it, and people still bought them and then promptly returned them after their favourite windows program didn't work. Now we're trying to screw around some of the slightly more clued on users by making only subtle differences in markings on the devices the main differentiator.

    Funny I remember the thousands of slashdot posts saying how much of a bad idea it was having the desktop OS and tablet OS look identical is a bad idea, and here we are taking our first steps towards trying to confuse the hell out of the device users. Tim Cook and Larry Page must be grinning in their big chairs stroking their white long haired cat right now.

  140. Common Sense by Anonymous Coward · · Score: 0

    Users shouldn't expect everything to just work with different technologies. It is the users that need to be better educated. It was never expected that Windows CE applications would work alongside the x86 architecture. The same concept goes for Windows Mobile and Windows phone 7, Android x86 and ARM and iOS/OSX.

    The notion of customers being "burned" because Windows RT won't support legacy applications is an absolute joke. The general public needs to sit down and educate themselves rather than expecting everything to just work. This is just a gripe of changing architectures and as technologies develop and more mainstream desktop side ARM software becomes readily available this is just something we have to deal with. It is due to this school of thought that we have 'technicians' servicing general consumer grade hardware.

  141. Windows CE all over again. by Anonymous Coward · · Score: 0

    We've seen this before.

    I expect this RT thing might actually boost sales of the Surface Pro and all the other x86 devices when people get into the mob rush of, "Waitasecond! I really NEED a tablet which can run all my old software!"

    But who knows. MS is saying they've already sold through their pre-order stock of every RT model in a couple of days. Not bad.

  142. Re:I never expected my iPad to run OSX application by jseale · · Score: 1

    They'll have to wait a few months to do that. The Windows 8 version of Surface isn't supposed to be available until January.

  143. Re:I never expected my iPad to run OSX application by jseale · · Score: 1

    Android? You are weird. A nice Linux with KDE is what this hardware needs.

    Linux on all computers, that's what the planet needs!

  144. Re:I never expected my iPad to run OSX application by xkpe · · Score: 1

    Most of the iOS applications designed for the iPad dont work on the iPhone...

  145. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    You would have, if Apple called it a MacOS pad. You also might have been upset if it didn't run iPhone applications, despite being called an iOS device.

    Microsoft is saying "Windows" here -- that has a 30 year history of application compatibility, to most consumers. Not to mention that Microsoft (and others) are also building Windows tablets that do run legacy code.

    I'm also not suggesting that this is confusing to the typical /. reader... of course it's not. But regular consumers don't even begin to understand these things. I know more than a few people who call their web browser "the internet"... and yeah, I've tried to explain multiple times the difference between a web browser and the internet... doesn't get in.

    This is going to be a huge source of confusion. Users are going to be trying very hard to install their existing applications ("how do I get the program from the CD") onto the tablets. They're likely going to be very bent out of shape over having to re-purchase the very few applications that have been ported to WinRT, and worse, angry about those that haven't been. Microsoft has not been clear about this, seemingly intentionally so. Maybe they'll clear things up by the ship date, but I wouldn't hold my breath. Expect record product returns.

    --
    -Dave Haynie
  146. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    Only after you crack the bootloader. At least they're only using SH-1 for authentication....

    --
    -Dave Haynie
  147. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    Pretty much all of the iPhone apps run on the iPad. Apple's primitive demand for fixed resolutions and bitmaps has certainly fragmented the iOS market -- yeah, you just can't shoehorn an iPad app onto the iPhone. This may well be the same for Windows... Microsoft is making a distinction between Windows, Windows RT, and Windows Phone, and they've said Windows Phone apps (both 7 and 8) will run on Windows and Windows RT, but is it generic WinRT/Metro running on all three, or do you have to code specifically for tablets and phones. At least in Android these days, it's all one thing, and the app adjusts to the device resolution... just as PC apps have been doing for decades.

    --
    -Dave Haynie
  148. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    But it's more than that.

    They did this, back in the day, with Win32 on x86, PPC, MIPS, Alpha, etc. Sure, there was no binary compatibility from one CPU to the next. But it pretty much was a simple matter of a recompile, even for device drivers -- the Windows NT HAL actually worked.

    And of course, anything written in .NET would presumably "just work" on the ARM systems. That's a pretty big collection of modern Windows programs. But you'd need Win32 to make that possible (well, sure, and .NET libraries and all of that old Windows stuff), and in Windows RT and Windows Phone, only Microsoft gets to use Win32 calls.

    For everyone else, Windows RT vs. regular Windows, it's a complete redesign, from Win32 to WinRT. Less work, certainly, if you wrote the app in HTML or something to begin with (not uncommon for Windows UIs), but it's still lots of work. And a complete UI redesign.

    --
    -Dave Haynie
  149. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    And you're not going to get any love from the consumer telling them that, either. They have to update the application they already bought... only, no update's yet available for 3/4 of them. And they have to re-purchase all the rest? That sure starts to make the price of the full Windows 8 tablets (particularly those Atom-based units that'll compete on price with the ARM-based units) even a bargain, if for some reason one must have Windows on a tablet.

    Or, looking at it the other way, the only reason you buy Windows is for the applications. Which aren't there yet, on the Windows RT devices. So what's the point? Android and iPads are better supported than RT, unless "Office" is the only application you run. But hey, there are those hundreds and hundreds of wonderful Windows 7 Phone apps that will run on these tablets -- that should make the consumer all bubbles and smiles.

    --
    -Dave Haynie
  150. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Or, looking at it the other way, the only reason you buy Windows is for the applications. Which aren't there yet, on the Windows RT devices. So what's the point?

    Two responses.

    a) A really good form factor (assuming this is true). That is something priced like a tablet with many of the interface elements of an ultrabook. I think, like lots of other people, Microsoft priced the Surface about $100 too high. The problem they are going to run into is that at around $450 you can pick up a used Macbook air and at around $600 a so / so ultrabook. But imagine it were $100 cheaper....

    b) A few years from now assuming Metro is successful they will be there. It is relatively easy for people to move Metro apps from Win8 to WinRT and visa versa. The strategy is move the OS which causes a move in the hardware which causes a move in the applications.

  151. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    Actually, Microsoft's Surface Pro is based on the i5, not the Atom. That's why the rumors are it'll top a grand in price. And big questions about the weight and battery life.

    Intel does have the Atom Z2760 as their go-to chip for tablets. This is x86, 32-bit only, dual core, each core about as powerful as an ARM Cortex A9 at the same speed. But it does have a dual bus memory interface (some ARM SOCs do, some don't), one of the fastest PowerVR GPUs, etc. It'll suck at most traditional Windows apps, but run them, and get priced and stocked right next to Windows RT machines. That's not going to cause confusion?

    In fact, I bet it does, but gets solved in the way of competition, and only after a few months of thick consumer confusion. Expect Intel to get out the word, not Microsoft. They'll have some kind of sticker for the x86 based tablets that suggests they're "real" or "full" Windows. Why not -- Intel felt entitled to all of Windows, Microsoft's letting ARM play the game, and so Intel needs some serious payback. Plus, they're at least as hungry as Microsoft for the mobile market -- they apparently see the same writing on the wall, and just as "Windows" is Microsoft's answer to everything (even when they completely change the definition), so x86 is Intel's. Curiously, this Z2760 will be first x86 that's regularly outperformed by ARMs (both quad-core A9s and dual-core Krait, A15, or whatever Apple's using in the A6 SOC) on performance.

    Should be an interesting few months...

    --
    -Dave Haynie
  152. Re:I never expected my iPad to run OSX application by hazydave · · Score: 1

    Yup... and this was a huge benefit to .... not users, but -- oh yeah! Adobe and Avid. Signed FCP users up like crazy last summer, offering 50% competitive upgrades, etc. This was oddly Microsoftian, in that Apple even bent to pressure and put Final Cut Pro 7 back on sale.

    That's a good lesson about professional environments -- you really don't mess with them when you can help it. If I buy a new version of Adobe Premiere or Sony Vegas or Altium Designer or AutoCAD, I expect it to be an upgrade for what I'm doing. I'm buying it to get new features of some kind, but I probably don't want a revolution, even when that might be useful two years or more down the road.

    Most companies solve this by splitting the line... so Adobe had Premiere, very popular and terribly primitive compared to FCP, Vegas, Media Composer, whatever. They launched Premiere Pro as a new thing... not exactly an upgrade, but a reinvention. The old one was still around for a little while, so users could judge the transition. And they understood their users. Same thing happened when Calkwalk broke 15 years of incremental upgrades to completely reinvent their DAW with Sonar.

    Apple, on the other hand, re-wrote from scratch, added some sorely needed features the ailing FCP7 needed (64-bit support, asset managment, etc), but then killed compatibility and eliminated all sorts of professional features. They basically built a great upgrade to iMovie, but a downgrade to FCP7.

    Very much what Microsoft is doing in Windows 8. Except for the "sorely needed features" part.

    --
    -Dave Haynie
  153. Re:I never expected my iPad to run OSX application by jbolden · · Score: 1

    Again the context here was about Microsoft causing confusion.

    In terms of your analysis, a new topic.... I agree with you. Apple's current direction is advanced amateur not professional.
    FCPX = iMovie Advanced
    Aperture = iPhoto Advanced
    Logic = Garage Band Advanced
    etc...

    I see Apple's "professional" applications as playing the same role to iLife that as the Microsoft Office Microsoft Works did for consumers. I suspect eventually, you'll have a whole generation of people that know the iLife suite and so easily up to these more advanced tools. The professional tools will be highly specialized and niche. Moreover, I see this "iLife advanced" as future killer apps for the OSX platform.

    This is a very different strategy than when Apple originally brought these applications out, where they were to be niche so as to attract power users to their platform.

  154. Re:I never expected my iPad to run OSX application by Cro+Magnon · · Score: 1

    Maybe they're hoping people will buy the RT version, then say "Oh ****" and buy the other one in January. Two sales for the big M.

    --
    Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
  155. Re:I never expected my iPad to run OSX application by mcgrew · · Score: 1

    That's because Apple didn't try to fool everyone that they were the same. All of MS's propaganda about Windows 8 was that it was supposed to seamlessly integrate everything with a common interface. Apple never made that claim.

  156. Consumers know iOS and OSX are different by Anonymous Coward · · Score: 0

    Windows RT and 8 shouldn't be marketed as being the same, iOS and OSX are spelled completely different. MS should have called Windows RT something different... like Porthole 8, then customers wouldn't get confused.

    Windows 8 for Desktops and Laptops.

    Porthole 8 for Tablets and Phones.

  157. Re:I never expected my iPad to run OSX application by xkpe · · Score: 1

    The same thing happens on Android, there are many apps that are only available for certain Android versions and hardware specs, and they call it all android. People will buy the device and the buy whatever software it is available to them, or if they want some specific software they will inform themselves if it can run on the device. It wasn't that many years ago that you would buy a "Windows" computer and you wouldn't be able to run the latest games because you didn't have a modern graphics card or a new version of the operating system.