ui choices compatible with windows rt (desktop) - Windows RT Development and Hacking

recently i'm writing a win desktop app that requires a more modern ui (i.e. metro ui in a desktop app). my first thought is to go wpf, but that option died when it occurs that the app needs to run on surface rt tablets too (jailbroken). so a torturous route would be to write my own custom controls and put them on winform, but i suspect there can be a easier way out. would Qt be possible? any other wpf-like choices? tks!

tonystuck said:
recently i'm writing a win desktop app that requires a more modern ui (i.e. metro ui in a desktop app). my first thought is to go wpf, but that option died when it occurs that the app needs to run on surface rt tablets too (jailbroken). so a torturous route would be to write my own custom controls and put them on winform, but i suspect there can be a easier way out. would Qt be possible? any other wpf-like choices? tks!
Click to expand...
Click to collapse
For my RT Desktop Store, I have used the MetroFramework (link below), it's a WinForms implementation of the ModernUI for Desktop apps. Easy to use and may be just the thing you are looking for.
http://thielj.github.io/MetroFramework/#Screenshots

Fasin said:
For my RT Desktop Store, I have used the MetroFramework (link below), it's a WinForms implementation of the ModernUI for Desktop apps. Easy to use and may be just the thing you are looking for.
http://thielj.github.io/MetroFramework/#Screenshots
Click to expand...
Click to collapse
That actually looks pretty awesome, cheers.

Fasin said:
For my RT Desktop Store, I have used the MetroFramework (link below), it's a WinForms implementation of the ModernUI for Desktop apps. Easy to use and may be just the thing you are looking for.
http://thielj.github.io/MetroFramework/#Screenshots
Click to expand...
Click to collapse
Did you mod anything to make it work on rt? Tks!

tonystuck said:
Did you mod anything to make it work on rt? Tks!
Click to expand...
Click to collapse
Winforms .net code -should- run verbatim on the RT, as long as it's targeting .net 4.5.

Related

Hacking possibilities

So after playing with my Surface for 5 days now, it is obvious there is a lot of capability in the back end through the Desktop. II have networked printers, and drives at both home and office going, streaming content etc. It is very capable for what it is, way beyond any other Ipad and Android tablet out there. So it seems to me it is just a matter of time before some XDAer figures out a way to unleash it and possibly load other programs (non-RT) programs some way. We know the official MS word is no, but it seems to me it is a fully capable Win8 machine that just has some goierners on it and limited processing power, just waiting to be cracked.
Am I just dreaming?
I would love to see this happen. The one thing holding me back from purchasing one. I'd love a Windows 8 Pro version tablet at the Surface RT pricing but wouldn't we all...
I dont think rt can run x86 app properly. Because the cpu is not as good as x86 core. I am interested in porting rt to compatiable device such as tergra 2 and 3 pad.
Sent from my GT-N7000 using xda app-developers app
liu2002 said:
I dont think rt can run x86 app properly. Because the cpu is not as good as x86 core. I am interested in porting rt to compatiable device such as tergra 2 and 3 pad.
Sent from my GT-N7000 using xda app-developers app
Click to expand...
Click to collapse
I don't think it's necessarily about the Tegra being "as good" as an x86 - the issue is that you'd need an emulator, or the source for the x86 app which you'd then need to re-compile for ARM. I believe MS made a developer toolkit available that allows simpler conversion from x86 to ARM but it's still up to the app vendors to do it.
In theory, the same code could compile for both x86/64 and ARM (RT), but VS2012 will not allow you to compile an ARM desktop app. There is no legit way to write/compile a desktop app on RT. Its an arbitrary BS limitation put in place by MS. You cannot side load apps, everything must come through the MS store, RT enterprise being an exception... which doesn't help us. And the MS store will only offer Metro apps. MS office shows that's desktop apps are fully possible, albeit recoded/recompiled for ARM, but MS will not allow it. In an ideal world, RT would be a fully supported OS, and the likes of Adobe and others could release desktop apps for RT, but sadly it won't happen.
Sent from my Galaxy Nexus using Tapatalk 2
Skitals said:
In an ideal world, RT would be a fully supported OS, and the likes of Adobe and others could release desktop apps for RT, but sadly it won't happen.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
Why do you say that?
Because its not allowed, only metro style apps published through the app store are allowed. Even if you compile compatible desktop software, the OS won't run it. Its a closed sandbox.
At best we can hope for a "homebrew" community to compile open source software, and find some hacks to get it running.
Sent from my Galaxy Nexus using Tapatalk 2
Hello,
I’m a happy owner of the Surface RT and I just wanted to add my 2c.
I think that Metro UI is great for tablet, but lacks apps !
So I cannot understand why Microsoft didn’t include .Net on this platform ! I think the main goal and the first “Homebrew” must be recompilation of Mono for ARM. As this will allow us develop a lot of programs, quickly and using “good” tools (Visual )
I just started to study WinRT and I’m already hitting a lot of blocks (For instance, I cannot find a way to open Shared Socket ! So if any other app listen on 1900 port, I lose my SSDP discovery... )
But I think recompilation of Mono is definitely a way to go ! I think i’ll try it this week-end, if I have some time, but It’s sure I will not be able install on my surface  As for now it seems to be impossible to enter Testing Mode on it.
Jurion
jurion said:
So I cannot understand why Microsoft didn’t include .Net on this platform !
Click to expand...
Click to collapse
I think people seem to be missing something here (well, not just here, on other threads/forums.blogs too). MS have essentially (it’s really quite impressive) ported over the entire Windows OS to run on ARM – and this includes all of .NET v4 with supporting libraries/DLLs.
You only have to pop to C:\Windows\Microsoft.NET\Framework\v4.0.30319 on your Surface RT to see – all the same libraries for the same version of .NET a x86 desktop seem to be there - including Linq, SQL, reflection etc.
Now, this could be really great news! I’d bet that it would be entirely possible for standard .NET applications (by standard, I mean programs that only use managed code and nothing legacy) to be reasonably easily recompiled to run on ARM - ideally as easyily as changing a drop-down!
Furthermore, this is all supported in Visual Studio, it’s just locked down a bit - I’ve been able to compile, with VS2012 (and a minor tweak to remove the ARM compile block) a simple command line EXE for ARM (using .NET calls – though only in C++ which is a shame). The problem is, as soon I open it on Surface, I get an error saying the ‘digital certificate’ couldn't be validated – a common issue which has a simple fix documented online. The catch... that the instructions to remove this block don’t work with secure boot enabled, and - at present - we can’t disable this on the Surface (on normal PCs this can be turned off in the bios).
So – the key to all this, is for MS to open it up (not impossible, but who knows if or when) or for someone to get round this secure boot/certificate requirement. I’m sure there’s some smart people on here with abilities to work on, and hopefully succeed in doing this. Even if people aren't able to work a way round this block, I'm hopefully that eventually MS may release some firmware update tools that someone can hack to switch off UEFI secure boot. Or perhaps someone at MS or a partner may leak some file/app/boot that unlocks this for dev/enterprise purposes.
I look forward to it happening!
T
Skitals said:
In theory, the same code could compile for both x86/64 and ARM (RT), but VS2012 will not allow you to compile an ARM desktop app. There is no legit way to write/compile a desktop app on RT. Its an arbitrary BS limitation put in place by MS. You cannot side load apps, everything must come through the MS store, RT enterprise being an exception... which doesn't help us. And the MS store will only offer Metro apps. MS office shows that's desktop apps are fully possible, albeit recoded/recompiled for ARM, but MS will not allow it. In an ideal world, RT would be a fully supported OS, and the likes of Adobe and others could release desktop apps for RT, but sadly it won't happen.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
Everything doesn't have to come through the MS store, you can install applications that you build in Visual Studio 2012 for Windows Store, create an appx package and choose not to publish it in Windows Store. VS2012 then creates an appx package as well as a PowerShell script that you can run on Surface, accept security warning, get the developer's license on the device (it's free) and that's it!
It is fairly obvious why MS does not allow installation of "Desktop" apps on ARM tablets. Otherwise dev's would get lazy and just recompile desktop apps for ARM. The experience on a touch tablet would not be great on (unmodified) Desktop apps, hence Microsoft set this constraint on Windows RT in order to push dev's towards making a proper touch friendly app. The result is of course the lack of apps initially, but in the long run the benefits will be a greater experience as the apps would be optimized for touch.
Sure there are obvious downsides to this strategy, but the decision itself makes a lot of sense from a useability standpoint. You already read the complaints in reviews about "Office" not being Metro-style and unfriendly to touch. However this is naturally a decision due to time constraints, because MS would have also preferred to not include a desktop on RT. Office is the selling point now, to gravitate people towards RT and when there is enough demand, the touch friendly (Metro) apps will flow in eventually
Backflipping said:
I think people seem to be missing something here (well, not just here, on other threads/forums.blogs too). MS have essentially (it’s really quite impressive) ported over the entire Windows OS to run on ARM – and this includes all of .NET v4 with supporting libraries/DLLs.
You only have to pop to C:\Windows\Microsoft.NET\Framework\v4.0.30319 on your Surface RT to see – all the same libraries for the same version of .NET a x86 desktop seem to be there - including Linq, SQL, reflection etc.
Now, this could be really great news! I’d bet that it would be entirely possible for standard .NET applications (by standard, I mean programs that only use managed code and nothing legacy) to be reasonably easily recompiled to run on ARM - ideally as easyily as changing a drop-down!
Furthermore, this is all supported in Visual Studio, it’s just locked down a bit - I’ve been able to compile, with VS2012 (and a minor tweak to remove the ARM compile block) a simple command line EXE for ARM (using .NET calls – though only in C++ which is a shame). The problem is, as soon I open it on Surface, I get an error saying the ‘digital certificate’ couldn't be validated – a common issue which has a simple fix documented online. The catch... that the instructions to remove this block don’t work with secure boot enabled, and - at present - we can’t disable this on the Surface (on normal PCs this can be turned off in the bios).
So – the key to all this, is for MS to open it up (not impossible, but who knows if or when) or for someone to get round this secure boot/certificate requirement. I’m sure there’s some smart people on here with abilities to work on, and hopefully succeed in doing this. Even if people aren't able to work a way round this block, I'm hopefully that eventually MS may release some firmware update tools that someone can hack to switch off UEFI secure boot. Or perhaps someone at MS or a partner may leak some file/app/boot that unlocks this for dev/enterprise purposes.
I look forward to it happening!
T
Click to expand...
Click to collapse
Hmmm, sorry my bad, didn't look enougth to find .Net assemblies.
As for open it for MS, may be, maaaay be it's the same scheme which they followed with Windows Phone 7.
No native developpment for 7.0 -- 7.8
But they open it for 8.0
May be they just want to force people developp Metro app to populate the store first.
So where's the best place to get one?
I'm looking into buying one very very soon, I found some on ebay for $585 with the cover, That sounds like a win to me. I wish QVC had it, That'd be lovely.
I'm praying we get a work around for all this, But still If the device isn't made for it, I can't be mad that it doesn't do it, That's like being angry that my car doesn't fly.
But it's such a tease, it worries me that I'll have an entire desktop, Sitting, Obselete, With nothing but Office, which I wont even use.
Can't_Live_Without_My_Evo said:
I'm looking into buying one very very soon, I found some on ebay for $585 with the cover, That sounds like a win to me. I wish QVC had it, That'd be lovely.
I'm praying we get a work around for all this, But still If the device isn't made for it, I can't be mad that it doesn't do it, That's like being angry that my car doesn't fly.
But it's such a tease, it worries me that I'll have an entire desktop, Sitting, Obselete, With nothing but Office, which I wont even use.
Click to expand...
Click to collapse
It is made for it. It has the full desktop, and the full desktop Office suite. Its a big tease. The whole "do more" campaign advertises you can "click in" and have full laptop productivity with touchpad and mouse/keyboard. Except the only software to take advantage of it is desktop IE and Office.
Sent from my Galaxy Nexus using Tapatalk 2

start menu

Is there a way i can add the start menu on my rt, I installed pokki my desktop running windows 8,but cant seem to install on my rt.
ha, nope sorry buddy! windows RT is completely different to windows 8, RT is using a ARM processor 'tegra 3' this means the software will have to be made for an arm CPU, that's why it won't work on your rt device. this is also why there is a marketplace for downloading all of your apps....
sorry.
ssfirme said:
Is there a way i can add the start menu on my rt, I installed pokki my desktop running windows 8,but cant seem to install on my rt.
Click to expand...
Click to collapse
you can jailbreak your device using this and then run classic start menu from here. works perfectly on my surface rt
Dane, you're actually incorrect... there's a hack available (on this very site, even), commonly referred to as a "jailbreak", that allows running apps which aren't from the store, sideloaded, or from Microsoft on Windows RT. They still need to be compatible with ARM, as you say, but recent .NET apps work fine with no changes, and many C/C++ open-source apps have been recompiled.
Classic Start has been available on RT for a couple weeks now, using this method. Download the jailbreak hack, unzip it and run it, then follow the instructions. Download and install Classic Start following the instructions in the post linked from my thread, List of desktop apps for hacked RT devices, then restart Windows Explorer (or just log off and log on again) and you'll have a Start menu if you want it so badly (I don't get the fuss; on a tablet, the Start screen really is a better option IMO, but it's available).
Also, there is actually a work-in-progress hack to allow running unmodified x86 programs on RT as well, using dynamic recompilation from x86 to ARM code.
Why would you need a start menu on Rt?
You actually can... I've got 7-Zip, PuTTY, Gvim, MirandaIM, IKVM (and through it, Burp Suite and some other Java programs), Fiddler 4, Python 2.7, and some other "legacy" programs installed on my RT. I'm working on porting Chrome (it's a chrome-plated ***** of a project, if you'll excuse the terrible joke). I also temporarily install additional apps to test them out as people port them to RT. Finally, I've installed the Win86emu beta, which isn't a legacy program but is a desktop program; it's written especially for Windows RT and allows running (some) x86 legacy apps on RT directly and unmodified.
deeman said:
Why would you need a start menu on Rt?
Click to expand...
Click to collapse
more of a want than need but it's a familarity thing, i'm sure.
Can I get GOM player or any good player working on RT which can support most extensions ??
mohitgalaxy3 said:
Can I get GOM player or any good player working on RT which can support most extensions ??
Click to expand...
Click to collapse
Unrelated to this thread

Since windows RT auto updates, what happens if you don't like 8.1 and don't want it?

Right now 8.1 is a preview but what happens when it is fully released? Will windows RT auto update to it even if we don't like 8.1 and want to stay on Windows 8 RT?
I know you can disable auto-updates by hacking the registry but Id rather not have to do that.
Any way to keep automatic updates but ensure your system never upgrades to 8.1?
Why? 8.1 works great.
ap3604 said:
Any way to keep automatic updates but ensure your system never upgrades to 8.1?
Click to expand...
Click to collapse
Windows RT is supported by WSUS. I never tested it myself, but you can setup your device to get updates not from MS site but from your local WSUS server - and just don't approve there the updates you don't like.
And similar to earlier service packs - there would be an "8.1 blocker" (look for Win7 SP1 blocker here: http://www.microsoft.com/en-us/download/details.aspx?id=22464). As this is just a registry key - it may work on RT too.
Dane Reynolds said:
Why? 8.1 works great.
Click to expand...
Click to collapse
One massive issue with 8.1 which is enough to keep a large user base from updating: jailbreak.
Once there is a jailbreak for 8.1 though, then your argument would be valid.
Not sure why you wouldn't want to run updates but so far Windows 8.1 rocks! Makes RT so much better.
SixSixSevenSeven said:
One massive issue with 8.1 which is enough to keep a large user base from updating: jailbreak.
Once there is a jailbreak for 8.1 though, then your argument would be valid.
Click to expand...
Click to collapse
You talking about a jailbreak for 8.1 RT? Is so what type of stuff can you do with the jailbreak?
Dane Reynolds said:
Why? 8.1 works great.
Click to expand...
Click to collapse
phantomlightgames said:
Not sure why you wouldn't want to run updates but so far Windows 8.1 rocks! Makes RT so much better.
Click to expand...
Click to collapse
Not on the Asus Vivo RT it doesn't :silly:
8.1 really f#&@'s up the trackpad
Wow that's good to know.. I'm currently running it on a Dell T3500 desktop both Surface RT & Pro.
Are you sure it's not a driver issue. Maybe Asus have some updates available for track pad?
@Dane Reynolds: You new here? The Windows RT jailbreak has been a pretty big deal - especially on the RT Dev&Hacking sub-forum here - since its initial reveal over half a year ago. It removes the signing restrictions that Microsoft uses to lock out third-party desktop apps. With the jailbreak, you can:
1) Run .NET 4 (or later) desktop programs.
2) Run open-source Win32 desktop programs that were recompiled for RT (there's a list of them; check my sig).
3) Run a handful of programs specifically written for Windows RT tablets, including an x86 emulation layer.
4) Run various non-.NET legacy programs (some x86 through the emulation layer, some Java through IKVM, some Python through an incomplete port, Perl, Ruby, Lua, and a bunch of game engines).
5) Install third-party drivers (such as the open-source program Process Hacker uses).
Windows RT 8.1 breaks the method used to jailbreak RT 8.0. There are people working on getting it back - the OS is a hell of a lot more useful when you can run things like PuTTY and 7-Zip and even WebKit-based web browsers - but until them, most people that hang out around here are either dual-booting 8.0 and 8.1 (if they have enough space) or just sticking with 8.0.
GoodDayToDie said:
@Dane Reynolds: You new here?
Click to expand...
Click to collapse
Nah, I've been here since RT was released, I heard about the jailbreak but was never interested, but the only reason I wasn't interested was I never found any fun stuff to do with the jailbreak.
Dane Reynolds said:
Nah, I've been here since RT was released, I heard about the jailbreak but was never interested, but the only reason I wasn't interested was I never found any fun stuff to do with the jailbreak.
Click to expand...
Click to collapse
no fun stuff? Quakes 1, 2 and 3. Numerous other games, MAME I think.
Python.
.NET
FreeDownloadManager
a torrent client
An html5 browser other than IE (hopefully chromium or Firefox eventually)
PuTTY (would be an absolute must have for me)
Loads of other software many either useful or fun or both.
It really opens up the desktop side of RT
Damn, quake sounds fun and I could use chrome ... I kind of regret getting 8.1
I see the use for a jailbreak but I think it brings the OS backwards. These desktop apps aren't optimized for touch. I think building apps for the new interface is the way to go.
Funny; I get around fine using touch on the desktop (no, my fingers aren't even tiny). Well, except for typing. That sucks, Desktop or Metro. So, I have a Touch Cover, which makes typing a lot nicer. It also has a trackpad, so I only use touch when it's better than using a trackpad.
So, now I have a keyboard and pointing device, in addition to touch, for the device to be useful to me. Care to explain to me again why using apps which are amenable to all three input methods, instead of only one, "brings the OS backwards"? Because the way I see it, taking a multi-input device and excluding all those apps which aren't (over) optimized for a single form of input is a hell of a lot *more* backward...
Dane Reynolds said:
Damn, quake sounds fun and I could use chrome ... I kind of regret getting 8.1
Click to expand...
Click to collapse
I love quake and doom, been playing through doom again on my PSP actually (CFW-PRO to effectively jailbreak the PSP, then there are 2 or 3 ports for PSP)
Chrome isnt out for RT yet. GoodDayToDie had a look, but its complicated. Kudos to him for taking a look anyway, but so far 1 guy on his own hasnt managed to do it. Firefox also has its own issues. We may or may not see them eventually though. The jailbreak would be the first step before you could run them though.
As for 8.1. Trig0r has 8.0 recoveries for the surface RT which you could use to downgrade. Hopefully someone will get 8.1 jailbroken soon too, but microsoft patched the exploit that was being used before.
Thanks, I might ask for a recovery as I love gaming, speaking of gaming i know the Surface's hardware isn't high enough to run games but i was wondering if Onlive would be releasing an app for RT.
That would actually be a legitimate use for OnLive... wasn't sure I'd ever see one of those.
Surface (Pro or RT) are fine for light gaming, or for running older games. The RT does actually have NVidia graphics, they're just really underpowered. The Pro has only Intel graphics, but the Intel GMA for the i5 might actually be more powerful than the RT's Tegra 3 (haven't checked). In any case, there are lots of games known to work (if not always at max resolution / quality) on the Pro, and the RT has a number of older games which have been ported over working fine, and some old x86 games that run in the dynamic recompilation engine also working (though so far as I know, none of those ones are 3D).
ap3604 said:
Not sure why you wouldn't want to run updates but so far Windows 8.1 rocks! Makes RT so much better.
Click to expand...
Click to collapse
Not on the Asus Vivo RT it doesn't :silly:
8.1 really f#&@'s up the trackpad
Click to expand...
Click to collapse
I own VivoTab RT 3g - no problems with trackpad in 8.1. Currently I have no major problems with 8.1 except for the blinking screen issue that is present in 8.0 too. Even VPN works fine, so I finally can connect to my workplace and read email with Outlook, use RDP or Citrix Receiver.

[App] paint.net 3.01

Paint.NET does work on my Surface RT.
i re-compiled Paint.NET source code 3.01 with Microsoft.NET Framework 4.0 and removed some extra files.
Paint.NET supports 7 languages translations, you can change language at 'Help' -> 'Language' Sub Menu.
you can download zip file for Paint.NET 3.01 Windows.RT tested.
i'm new user of this thread, i can't write url direct.
please visit bellow url with internet browser.
dudusoft.co.kr/paintnet
attached
I've attached your binaries and the ones I've built from http://code.google.com/p/openpdn/
Thanks for the port!!! Great tool!
Cheers!
If only MinGW for RT was available, GIMP ftw.
SixSixSevenSeven said:
If only MinGW for RT was available, GIMP ftw.
Click to expand...
Click to collapse
The only thing holding gimp back is GTK...
And the only thing holding GTK back is libffi...
I've got all the other bits ported for the most part. MinGW isn't needed for gimp
You'r a god. I was looking for this a lot of time!.
Thank you x 1000!
bfosterjr said:
I've attached your binaries and the ones I've built from http://code.google.com/p/openpdn/
Thanks for the port!!! Great tool!
Cheers!
Click to expand...
Click to collapse
Thanks to both of you! :good:
I wasn't able to get 3.36 going, I received this error:
Paint.NET has detected that some important installation files are missing. If you click the Repair button it will attempt to repair this and then continue loading.
The missing files are: FileTypes\DdsFileType.dll
Click to expand...
Click to collapse
Anyone have the courage to contact Rick Brewster, the author? He is bringing out version 4.0 soon which has improved performance, so it could run quite nicely on our RT computers. Previously, he has declined any requests to do with the source, but he recently got a Surface tablet so perhaps his opinion could be swayed. However, he does work for Microsoft...
lloydo said:
Thanks to both of you! :good:
I wasn't able to get 3.36 going, I received this error:
Anyone have the courage to contact Rick Brewster, the author? He is bringing out version 4.0 soon which has improved performance, so it could run quite nicely on our RT computers. Previously, he has declined any requests to do with the source, but he recently got a Surface tablet so perhaps his opinion could be swayed. However, he does work for Microsoft...
Click to expand...
Click to collapse
The native code library is what's keeping it from running. Unless that gets ported by the original author there's no chance.
It seems he has a surface pro, so I'm not sure that would really increase his interest in RT. I guess there's no harm in asking though.
There is a feature missing unfortunately.
Normally i'm able to select the behavior of the selection tools; Add, Remove, Invert XOR, Replace (default)
This option does not exist and it's a pretty big loss for me
[Removed]
"This app can't run on you pc" notepad++ and a few others wondering why this wont
[Removed]
OnbekendV said:
Hi,
Are you using Windows 8.1 RT? If yes, go here http://forum.xda-developers.com/general/general/windows-8-1-rt-jailbreak-exploit-t3226835. Are you using Windows 8.0 RT? Go here: http://forum.xda-developers.com/showthread.php?t=2092158. Good luck.
Regards,
OnbekendV
Click to expand...
Click to collapse
8.1 already ran the new exploit, other signed apps work just not this one no idea why.
does anyone have newer paint.net version for rt?
Edit1:I just change time to 2013 and now 3.36 work and I install psd plugin on that
but didnt work
Question, is there any place to find surface rt app, beside the store? like a repository. thanks.

how to install genymotion on surface 2???

Good morning,
I just got a new surface 2 and I would like to instal the genymotion emulator on it?
How can do it??
Many thanks for your help
You don't.
As far as I'm aware Gene motion is x86 only.
Regards,
Dave
Sent from my SM-N9005 using Tapatalk
foxmeister said:
You don't.
As far as I'm aware Gene motion is x86 only.
Regards,
Dave
Sent from my SM-N9005 using Tapatalk
Click to expand...
Click to collapse
can you suggest me an alternative?
The windows store is poor of applications and I find the tablet almost unsefull.
coluichepensa said:
can you suggest me an alternative?
The windows store is poor of applications and I find the tablet almost unsefull.
Click to expand...
Click to collapse
There isn't an alternative either.
As far as I'm aware, until there is a jailbreak for Windows RT 8.1, there is no way to install applications outside of those on the Windows Store.
Regards,
Dave
foxmeister said:
There isn't an alternative either.
As far as I'm aware, until there is a jailbreak for Windows RT 8.1, there is no way to install applications outside of those on the Windows Store.
Regards,
Dave
Click to expand...
Click to collapse
Not that there are any outside the Windows Store
komugi said:
Not that there are any outside the Windows Store
Click to expand...
Click to collapse
Apart from those Windows apps that have been recompiled for ARM and run on a jailbroken Surface!
Granted there aren't very many, and they will almost all be open source desktop applications, but they do exist.
If MS opened up the Surface so that desktop apps could be installed, you would likely see many more. For example, Google would port Chrome to RT if they could.
Regards,
Dave
Sent from my SM-N9005 using Tapatalk
There are dozens of ported applications (see the link in my signature) with more coming slowly but steadily. There are also lots of pure .NET applications, which work fine on RT once it has been jailbroken. In addition, there are a few custom-written applications for RT, the most important of which is probably @mamaich's x86 dynamic recompilation compatibility layer (sort of like Rosetta for old Macs) that allows running some (old and/or now-demand) x86 programs on RT without modification. Work on it appears to have largely stalled (although the current version is still available, and does work for some programs on RT 8.0) while the jailbreak for RT 8.1 is in development, but I'm confident it will pick up again.
GoodDayToDie said:
There are dozens of ported applications (see the link in my signature) with more coming slowly but steadily. There are also lots of pure .NET applications, which work fine on RT once it has been jailbroken. In addition, there are a few custom-written applications for RT, the most important of which is probably @mamaich's x86 dynamic recompilation compatibility layer (sort of like Rosetta for old Macs) that allows running some (old and/or now-demand) x86 programs on RT without modification. Work on it appears to have largely stalled (although the current version is still available, and does work for some programs on RT 8.0) while the jailbreak for RT 8.1 is in development, but I'm confident it will pick up again.
Click to expand...
Click to collapse
great job but I have still wait for the jailbreak, have i?
Since you have 8.1, yes, you'll need to wait. Sorry...

Categories

Resources