[app] VirtuaWin for Windows RT - Windows RT Development and Hacking

All,
Please find the attach binaries for the native port of VirtuaWin 4.4 for Windows RT. VirtuaWin is a desktop manager which allows you to organize your windows over multiple virtual desktops.
See the project page for more info: http://virtuawin.sourceforge.net/
Very straight forward port, with no code changes required. I have not experienced any bugs with it yet.
Cheers!

Very nice, thanks! I'll add it to the list.
I was considering trying to port Finestra, which I somewhat prefer (another open-source VDM), but this will be fine.

Wow! Great!!

Related

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

Homebrew Hub [Windows RT]

Hello, Im new to the XDA forum but I would like to present a way for Windows RT jailbreakers to easily install non-MS signed ARM programs to their tablets with ease.
I have been working on a program called the Homebrew Hub which will allow users to setup repos like the popular Cydia for iphones.
The program will cache the repos and allow the user to install ARM compiled software to your Windows RT device.
I was also wondering if the creator of the actual jailbreak would be willing to incorporate this into the jailbreak itself so the install process is easy.

[App] Apache 2.0

For those interested...
I've put the native Windows RT binaries for Apache 2.0 on GitHub:
https://github.com/bfosterjr/windowsrtdev/blob/master/apps/Apache/2.0.65/bin/apache_2.0.65_arm.7z
Don't even bother asking me how to configure it. There are hundreds of wiki pages, documents, books, etc dedicated to Apache configuration.
Its probably missing some features (SSL comes to mind), but its a working web server for people to tinker with on the tablet. If someone can give me a _compelling reason_ for wanting a full blown Apache web server on a Windows RT tablet, I'm happy to spend more time on this and make it more fully featured.
Cheers!
bfosterjr said:
If someone can give me a _compelling reason_ for wanting a full blown Apache web server on a Windows RT tablet, I'm happy to spend more time on this and make it more fully featured.
Click to expand...
Click to collapse
I'm not sure about use-cases either, but still, this is seriously cool!
Reasons for maintaining a full-blown (at least partial, without HTTPS fancy stuff, but the essentials like mod_rewrite etc.) WAMP (so MySQL and PHP too) stack on Windows RT would be:
1. There would be a platform for developing and testing websites on a Windows RT tablet, much to the delight of potential web developers. We already have Notepad++ as a decent code editor.
2. Porting MySQL (+ libmysql) would be useful for other applications as a library itself, and then PHP is a (overly) popular scripting language which can also be used to develop console applications (php-cli is compiled along with PHP. along with the Apache extension for mod_php). There probably won't be many native Windows RT applications developed for it (the only library for PHP to develop really useful native GUI apps is Php-Gtk, but GTK+ isn't ported and the PHP-GTK project itself is very.. silent), but it is handy if quick stuff needs to be coded. Porting PHP is pretty much close to the reasons for porting Python, plus it can be used on a local web stack too.
3. When a MAMP stack was ported to iOS I remember someone made a working music player (PHPPod) with it, so it still might be useful if the resources are there. I'll personally think of some ideas for "apps" that can be run in the browser with the WAMP stack on Windows RT and try to code them if this is ported.

ui choices compatible with windows rt (desktop)

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.

[Q] MySQL Server on RT

Hello,
I would like to be able to develop full Node.js apps offiline in my suruface RT, I have seen that there is Node.js, that is great!
It's possible to have mysql server running on RT?
Thank you!
jesuslg123 said:
Hello,
I would like to be able to develop full Node.js apps offiline in my suruface RT, I have seen that there is Node.js, that is great!
It's possible to have mysql server running on RT?
Thank you!
Click to expand...
Click to collapse
I don't know how easy it would be, I would bet on LXCore + a Windows 10 Frankenbuild for it.(too many ASM)
Maybe someone clever with cross compiler toolchains setup could compile this. There are however many document databases (including one i worked on) written entirely in javascript that work out of box on our nodejs/npm environment, if you are just looking for object stores you can query and save to disk.

Categories

Resources