Install XAPs into Windows 8 - Windows 8 General

I want to install .XAP files into windows 8 so I can use the apps, How do I manually do that?
Thanks

dfxda said:
I want to install .XAP files into windows 8 so I can use the apps, How do I manually do that?
Thanks
Click to expand...
Click to collapse
You don't, Windows 8 doesn't run .XAPs at all.

netham45 said:
You don't, Windows 8 doesn't run .XAPs at all.
Click to expand...
Click to collapse
Thank you for the quick response. I didn't know that, what is the metro apps extentions then?

It's .appx. You won't find too many of them floating around, though you can get them from the store.

netham45 said:
It's .appx. You won't find too many of them floating around, though you can get them from the store.
Click to expand...
Click to collapse
Cool thanks, and are they self extracting and installing or do I have to use a loader or something?

dfxda said:
Cool thanks, and are they self extracting and installing or do I have to use a loader or something?
Click to expand...
Click to collapse
Get a developer license (Google it for how), fire up powershell, run 'add-appxpackage c:\path\to\app.appx'.
Also, see http://blogs.msdn.com/b/uk_faculty_...metro-apps-without-using-microsoft-store.aspx

netham45 said:
Get a developer license (Google it for how), fire up powershell, run 'add-appxpackage c:\path\to\app.appx'.
Also, see http://blogs.msdn.com/b/uk_faculty_...metro-apps-without-using-microsoft-store.aspx
Click to expand...
Click to collapse
Thank you for all your help bud, and have a good night

dfxda said:
Thank you for all your help bud, and have a good night
Click to expand...
Click to collapse
No problem. Good luck with whatever you're doing.

I believe just right-clicking the PS1 script and selecting Run in Powershell and then following the prompts will work; it should walk you through the entire process of dev-unlock and cert installation and app installation automatically. Generally speaking, any .APPX bundle intended for redistribution will include this script.

Related

access android vogue sd card in a mac?

is there any way i can read and write to my sd card while running android in an osx environment? i know i can when im running winmo.
fixxxer2008 said:
is there any way i can read and write to my sd card while running android in an osx environment? i know i can when im running winmo.
Click to expand...
Click to collapse
You'll need to get the android SDK for OSX. It will include the adb tool, just like the SDK for Windows and Linux.
where can i get that at?
mac android sdk wow its amazing what a simple google search can get you
okay i downloaded it but how the heck do you install it? i found a few sites that explain but why go through all of that trouble just to get the usb to work?
seems pretty complicated to get the usb to work on osx and windows. i have windows 7 installed in a virtual machine and i still can't get the os to recognize my android vogue phone. it wont let me install the driver?
fixxxer2008 said:
okay i downloaded it but how the heck do you install it? i found a few sites that explain but why go through all of that trouble just to get the usb to work?
Click to expand...
Click to collapse
Wowww it's hard to get something to work that isn't supposed to??? What a shock!!!!
derekwilkinson said:
Wowww it's hard to get something to work that isn't supposed to??? What a shock!!!!
Click to expand...
Click to collapse
huh? what do you mean by that?
pointless thread because somesone doesnt know how to use google
jamezelle said:
pointless thread because somesone doesnt know how to use google
Click to expand...
Click to collapse
you know what dude, why don't you bite your damn lip. i did google it and i said it's too much just to get mac to recognize the sd card. i asked if there was s simpler way other than installing a ton of apps. man i guess what i heard about some of the members of xda are right!
fixxxer2008 said:
you know what dude, why don't you bite your damn lip. i did google it and i said it's too much just to get mac to recognize the sd card. i asked if there was s simpler way other than installing a ton of apps. man i guess what i heard about some of the members of xda are right!
Click to expand...
Click to collapse
w/e dude try this there is a link is not 2 far down the page
fixxxer2008 said:
you know what dude, why don't you bite your damn lip. i did google it and i said it's too much just to get mac to recognize the sd card. i asked if there was s simpler way other than installing a ton of apps. man i guess what i heard about some of the members of xda are right!
Click to expand...
Click to collapse
Alright, enough of the bickering. I just installed everything on my Mac and it was tedious but once you get it you'll be glad you did.
1) Download the SDK for Mac (I believe you have already done this) and extract it anywhere. I just put mine in /Users/<my_user_name>/Downloads/
2) If you are lacking a .bash_profile file (like I was), open Terminal and type
Code:
touch .bash_profile
this will create the .bash_profile file for you. Then,
Code:
open -e .bash_profile
this will open the file you just created in TextEdit to allow you to edit and add your PATH so you don't have to type in where you extracted the files to every time.
3) Add this line to your .bash_profile file
Code:
export PATH=${PATH}:*<your_sdk_dir>*/tools
Where <your_sdk_dir> is the full path to the android sdk folder (type carefully, remove < > brackets). For example, mine was /Users/<my_user_name>/Downloads/android-sdk-mac_x86-1.5_r3/
4) Save the file and quit TextEdit. Also, quit Terminal and open another window. It should give you no errors when you open Terminal.
Now you should be able to type
Code:
adb devices
into Terminal and see your phone listed as device.
To see more about ADB, look on the Adroid developer site: http://developer.android.com/guide/developing/tools/adb.html
If you have any questions, ask, that's what we are all here for.

Need help with Eclipse

Hey guys i need some help.
I'm a newbie in this programming. I'm trying to learn about Android SDK and i'm learning through tutorials in the SDK website. The problem is, i'm having trouble opening xml files in Eclipse. When i double click the xml, the software will either crash or stopped responding.
Anyways I'm running Eclipse Helios on Win7 64bit. Any help?
JDK?
which JDK do you have?
install the 1.6
ezeygtr40 said:
Hey guys i need some help.
I'm a newbie in this programming. I'm trying to learn about Android SDK and i'm learning through tutorials in the SDK website. The problem is, i'm having trouble opening xml files in Eclipse. When i double click the xml, the software will either crash or stopped responding.
Anyways I'm running Eclipse Helios on Win7 64bit. Any help?
Click to expand...
Click to collapse
I got the same problems every time when I click on the string.xml.
Eclipse throw a java.lang.NullPointerException
Who can help me ?
Marinelli.Tv said:
I got the same problems every time when I click on the string.xml.
Eclipse throw a java.lang.NullPointerException
Who can help me ?
Click to expand...
Click to collapse
I found a solution for my problem.
Go Window -> Preferences
XML -> XML Files -> Editor
Uncheck "Use inferred grammar in absence of DTD/Schema"
Now I can edit XML files without errors !
Marinelli.Tv said:
I found a solution for my problem.
Go Window -> Preferences
XML -> XML Files -> Editor
Uncheck "Use inferred grammar in absence of DTD/Schema"
Now I can edit XML files without errors !
Click to expand...
Click to collapse
Tried ur method but still the same
learnandroid said:
which JDK do you have?
install the 1.6
Click to expand...
Click to collapse
I'm using JDK 6 update 21
Marinelli.Tv said:
I found a solution for my problem.
Go Window -> Preferences
XML -> XML Files -> Editor
Uncheck "Use inferred grammar in absence of DTD/Schema"
Now I can edit XML files without errors !
Click to expand...
Click to collapse
ezeygtr40 said:
Tried ur method but still the same
Click to expand...
Click to collapse
Although i setup eclipse a while back, i sitll remember i tried that and still got random freezing / null when editing xmls. My fix happened to be using a 32-bit eclipse with 64 bit jdk I know, but wht can i say, it works
Daneshm90 said:
Although i setup eclipse a while back, i sitll remember i tried that and still got random freezing / null when editing xmls. My fix happened to be using a 32-bit eclipse with 64 bit jdk I know, but wht can i say, it works
Click to expand...
Click to collapse
u mean i need to reinstall the eclipse with 32bit n 64bit jdk?
ezeygtr40 said:
u mean i need to reinstall the eclipse with 32bit n 64bit jdk?
Click to expand...
Click to collapse
Well is ur cpu 64 bit compatible? if so then yea that how mines setup n haven't had any errors.
Daneshm90 said:
Well is ur cpu 64 bit compatible? if so then yea that how mines setup n haven't had any errors.
Click to expand...
Click to collapse
yup i'm using AMD Anthlon 64 X2...currently i'm running eclipse 64bit with jdk 64bit
and another thing...in java webpage....between Eclipse IDE for Java EE Developers, Eclipse IDE for Java Developers and Eclipse Classic 3.6.0.....which 1 do i actually have to pick?
For java developers. For reference heres the version i have : jdk1.6.0_21
Good luck.
ezeygtr40 said:
Hey guys i need some help.
I'm a newbie in this programming. I'm trying to learn about Android SDK and i'm learning through tutorials in the SDK website. The problem is, i'm having trouble opening xml files in Eclipse. When i double click the xml, the software will either crash or stopped responding.
Anyways I'm running Eclipse Helios on Win7 64bit. Any help?
Click to expand...
Click to collapse
Fix is here:
http://www.eclipse.org/forums/index.php?t=msg&th=171988&start=0&
I chose the .ini method. In my case when I wanted to edit the manifest file - it would freeze on WIN7 - 64bit
scouzi said:
Fix is here:
http://www.eclipse.org/forums/index.php?t=msg&th=171988&start=0&
I chose the .ini method. In my case when I wanted to edit the manifest file - it would freeze on WIN7 - 64bit
Click to expand...
Click to collapse
Thanx i will give it a shot today
Sent from my Milestone using XDA App
scouzi said:
Fix is here:
http://www.eclipse.org/forums/index.php?t=msg&th=171988&start=0&
I chose the .ini method. In my case when I wanted to edit the manifest file - it would freeze on WIN7 - 64bit
Click to expand...
Click to collapse
WOW finally it worked!! I used the .ini method also...thanx man!
This is the crash i get
https://docs.google.com/file/d/0BwsES0K61ZeqcTRvWTJlMXJRX1k/edit?usp=sharing
I know its an issue between java and eclipse but it driving me friggin crazy, as if learning to program isnt difficult enough with out above poping up after tjhe "Java SE has stopped working" message.sorry if the link is weird it seems to be the way its linking on XDA to google drive.
I would love some help.
Thank you in advance.

Can't install Win8

Hi,
One year ago, I successfully installed Windows 8 Consumer Preview. Since its asked me for license, I've bought Win8 Pro but the problem is that it won't let me keep my files in the installation. The only option Win8 install shows is the clean install as "nothing".
How to install Win8 Pro with keeping my desktop, files... ?
Thx in advance !
Are you are trying to upgrade from a beta copy of Windows 8 to the final retail version? I don't think that will be an option. You'll need to back up your files to a USB drive or something and do a fresh install.
Yes indeed. Why wont that be possible ?
The consumer preview is an unfinished version of Windows, it's possible issues with that could carry over with an upgrade to the retail version and cause head aches for Microsoft or anyone else that has to troubleshoot any problems that might occur.
I would expect that "keep my files (but not my programs)" would be a valid option, though... very odd if it is not. That's basically still a clean install, it just moves everything from the old OS (except your personal libraries) to a "Windows.old" folder.
kinder771 said:
Yes indeed. Why wont that be possible ?
Click to expand...
Click to collapse
From what I've read, you will have to do a clean install. Microsoft wants to make sure none of the preview stuff is mixed in with the official release files.
Sent from my IdeaTabA2109A using xda premium
GoodDayToDie said:
I would expect that "keep my files (but not my programs)" would be a valid option, though... very odd if it is not. That's basically still a clean install, it just moves everything from the old OS (except your personal libraries) to a "Windows.old" folder.
Click to expand...
Click to collapse
Yeah that's true, however I'd like to keep evrything... The only solution is to do the clean install...
Thx everyone !
kinder771 said:
The only option Win8 install shows is the clean install as "nothing".
How to install Win8 Pro with keeping my desktop, files... ?
Thx in advance !
Click to expand...
Click to collapse
It is not an option - either clean install or nothing.
Sorry
Yeah I finally did the clean install...

[XAP][WPSystem] Patch XAP with one tool - one step

6. Do not post or request warez.
If a piece of software requires you to pay to use it, then pay for it. We do not accept warez nor do we permit members to request, post, promote or describe ways in which warez, cracks, serial codes or other means of avoiding payment, can be obtained or used. This is a site of developers, i.e. the sort of people who create such software. When you cheat a software developer, you cheat us as a community.
gr8 app. Thx
did not work on Windows 10 Mobile TP, as I expected . . .
maitrunghieuit said:
Hi everyone,
For a long time I was read much topic about patching xap file (from paid app or trial app patch to free dev app) but these very much step, difficult for newbie. I decided to develop a tool to help you do that with only one step.
You must install or move app you want to patch to sd card first.
Deploy and open WPSystem app (attach in the bottom of topic), select SD card, press "done" button, press on the app name that you want to extract xap file. wait for completed!
The xap file patched and saved on Sd card, you can copy this xap file to pc for deploying, this app became free app. Yep, it's real.
Don't hasitate to comment your question! Goodluck
Click to expand...
Click to collapse
doesn't work with some apps, especially with games, i have loop with the upper dots when the app patching
Had to deploy with Application Deployer 8.0
8.1 gave me an error on my 640
canapo92 said:
doesn't work with some apps, especially with games, i have loop with the upper dots when the app patching
Click to expand...
Click to collapse
this app must a xap format (silverlight), not an appx format.
note that this process depend on your app size, so please wait for a time, it's may be long time
Leo_zodiac said:
did not work on Windows 10 Mobile TP, as I expected . . .
Click to expand...
Click to collapse
nothing here is for Windows 10 TP, the file system on 10 is different, it has locked download the access to WPSystem on SD card
Can we sideload apps that are no longer in the marketplace with this app? (tetra lock screen 1.2.0.0)
hawkeye29 said:
Can we sideload apps that are no longer in the marketplace with this app? (tetra lock screen 1.2.0.0)
Click to expand...
Click to collapse
no, you can't do this
this tool can only patch app that successfully installed from store
How about apps that aren't compatible with my device..Like I have a Nokia, but I want the HTC Notes app.
X0LARIUM said:
How about apps that aren't compatible with my device..Like I have a Nokia, but I want the HTC Notes app.
Click to expand...
Click to collapse
sr about that, this tool not working on android device
maitrunghieuit said:
sr about that, this tool not working on android device
Click to expand...
Click to collapse
He asked about exclusiv apps from other manufacturers,e.g. HTC. Is your app able to patch those apps for Nokia/MS devices? (answer: no)
BTW nice app! You should mention on post #1 that the app has to be installed on phone storage not on the SD card.
contable said:
He asked about exclusiv apps from other manufacturers,e.g. HTC. Is your app able to patch those apps for Nokia/MS devices? (answer: no)
BTW nice app! You should mention on post #1 that the app has to be installed on phone storage not on the SD card.
Click to expand...
Click to collapse
thank you for your remind, this tool was created to install only on device (prevent install on sd card)
about the exclusive apps, he must interop unlock his device, and this tool is not for that
thank you for the app. Most apps work, but there are a few that do not show up in your app even though they are installed on or moved to SDCard. Others show, but not with the actual name, rather "@AppResLib.dll,-XYZ". Is that normal?
cheers
Yes, for example in WMAppManifest.xml for app Account manager
Code:
<App xmlns="" Title="[B]@AppResLib.dll,-100[/B]" RuntimeType="Silverlight" Version="1.0.0.0" Description="Account manager"
derausgewanderte said:
thank you for the app. Most apps work, but there are a few that do not show up in your app even though they are installed on or moved to SDCard. Others show, but not with the actual name, rather "@AppResLib.dll,-XYZ". Is that normal?
cheers
Click to expand...
Click to collapse
if the app not show on list, it isn't the "xap app format", rather called "appx format" (new format for Wp8.1 and W10) and this tool is not patch for this format.
about the name you see, yes, that is normal, you can rename the xap file
titi66200 said:
Yes, for example in WMAppManifest.xml for app Account manager
Code:
<App xmlns="" Title="[B]@AppResLib.dll,-100[/B]" RuntimeType="Silverlight" Version="1.0.0.0" Description="Account manager"
Click to expand...
Click to collapse
This small problem can be solved:
Code:
if (File.Exists("D:\\WPSystem\\Apps\\" + fo.Name + "\\Install\\WMAppManifest.xml"))
string fn = XDocument.Load((Stream)File.OpenRead("D:\\WPSystem\\Apps\\" + foldername + "\\Install\\WMAppManifest.xml")).Root.Element(XName.Get("App")).Attribute("Title").Value;
Read the real filename from the WMAppManifest.xml, located in the app installation folder.
Code is taken from my IO Explorer app for SAMSUNG devices.
Why you don't add simple 2 words code for bocking SD Card to such tool.
Look out at VS2013. That code also works on 8.0 Silverlight.
djamol said:
Why you don't add simple 2 words code for bocking SD Card to such tool.
Look out at VS2013. That code also works on 8.0 Silverlight.
Click to expand...
Click to collapse
did you mean prevent install app on SD card? yep, if you are developer I think you should to do this for securing your code
I wonder if this works on tetra lockscreen 1.2.0.0. If it does would give a way to get a patched xap of the app that everyone could use. If anyone still have this app and has and phone they can test would be really helpful. IF anyone know anyone pass the word to them.

need an help to interop n unlock cap WP8.1

before some days extra+info get upadated WP10TP and also on Wp8.1. aftrer update we can't install extra+info to SDcard..now how to mod vcreg with extra+info.. for WP8.1 ..
any one can give me the list of cap. and path of cap_ so i will try to edit CAp_ with modded PDF 3. i think this might be worked
you cant do anything... be patient and wait news...
I think it's better to wait for w10 .
ngame said:
I think it's better to wait for w10 .
Click to expand...
Click to collapse
ya we understand:::;;
waiting for new tweaks:::
done:good::good::good::good::good::good:
A AJAY said:
ya we understand:::;;
waiting for new tweaks:::
done:good::good::good::good::good::good:
Click to expand...
Click to collapse
You are not alone my friend T_T
ciao!! Good news for you, some weeks ago i patched an old version of extra & info, deploy and move it to sd!! try!!
https://mega.nz/#!R5YmVTLI!NpzDEkY80rcqYKaDV94UmFbDagvatsH2IzMTWDA5wQk
canapo92 said:
ciao!! Good news for you, some weeks ago i patched an old version of extra & info, deploy and move it to sd!! try!!
https://mega.nz/#!R5YmVTLI!NpzDEkY80rcqYKaDV94UmFbDagvatsH2IzMTWDA5wQk
Click to expand...
Click to collapse
no luck with the windows application deployment tool, error 0x81030120
I believe this error is related to having interop capabilities in one of the libraries included in your XAP.
is there another deployer tha would work? (i already tested WPV xap deployer, also, no luck with that)
i'm not correct, maybe it's impossible to move e&i into sd, sorry
rickastillo said:
no luck with the windows application deployment tool, error 0x81030120
I believe this error is related to having interop capabilities in one of the libraries included in your XAP.
is there another deployer tha would work? (i already tested WPV xap deployer, also, no luck with that)
Click to expand...
Click to collapse
Have you tried with wppt ??? Or with this modified version of deployment tool http://forum.xda-developers.com/windows-phone-8/development/tool-appdeploy-8-1-capabilities-t3158053
ca_guri01 said:
Have you tried with wppt ??? Or with this modified version of deployment tool http://forum.xda-developers.com/windows-phone-8/development/tool-appdeploy-8-1-capabilities-t3158053
Click to expand...
Click to collapse
nah, tested both tools and nothing
I tried full FS access by patching an old version of CustomPFD to see if i could replace extras&info directly from phone memory.
I think some directories are hidden so i could not find the directory where the apps use to be installed.
However, i found a directory with the OEM apps (touch, extra&info, etc), but it seems that it's there only to be applied after a hard reset or something like that, so just replacing files wasn't enough. Extras&Info wasn't the only app with Interop Caps, but almost any app that is under settings has that cap.
So i unistalled touch settings and downloaded it from SD then i used MetroCommander to replace the SD files the old way (before CustomWPSystem was created, lol). Got nothing but an endless "Loading..." screen, but i guess i did something wrong.
But technically (someone correct me if i'm wrong) we can do Interop+Caps unlock using some other app from settings, right?
I'm pretty sure i've seen a settings app with a lot of capabilities in the manifest, not just InteropCapabilities, i don't remember exactly but it had something to do with SMS
TheBITLINK said:
I tried full FS access by patching an old version of CustomPFD to see if i could replace extras&info directly from phone memory.
I think some directories are hidden so i could not find the directory where the apps use to be installed.
However, i found a directory with the OEM apps (touch, extra&info, etc), but it seems that it's there only to be applied after a hard reset or something like that, so just replacing files wasn't enough. Extras&Info wasn't the only app with Interop Caps, but almost any app that is under settings has that cap.
So i unistalled touch settings and downloaded it from SD then i used MetroCommander to replace the SD files the old way (before CustomWPSystem was created, lol). Got nothing but an endless "Loading..." screen, but i guess i did something wrong.
But technically (someone correct me if i'm wrong) we can do Interop+Caps unlock using some other app from settings, right?
I'm pretty sure i've seen a settings app with a lot of capabilities in the manifest, not just InteropCapabilities, i don't remember exactly but it had something to do with SMS
Click to expand...
Click to collapse
Well , i think that we just have to remain with vanilla wp 8.1 until they fix wp10 annoying bugs, everytime i think i found a work around for a bug, there appear more bugs, my fault though, i chose the fast ring...
Now that Groove supports gapless playback, i'm considering going back to W10M (downgraded last week to WP8.1). But it's a hard choice, it sure has nice features but some bugs are just too annoying.
Did they fix the screenshots not appearing in Messenger/WA bug in 10549?
any updates on this? i have WP8.1 Update 2 and i'm having the same issues, not being able to install extras&info to SD card. i read somewhere on reddit (i think) that someone found a method that works currently, but searching around, i can't seem to find out the procedure..
cpshelley2 said:
i read somewhere on reddit (i think) that someone found a method that works currently, but searching around, i can't seem to find out the procedure..
Click to expand...
Click to collapse
And marmot puts it chocolate in the alu-foil...
dxdy said:
And marmot puts it chocolate in the alu-foil...
Click to expand...
Click to collapse
thank you for that wholly worthless response to an honest inquiry..
Try to push this cab using this metod: http://forum.xda-developers.com/win...ile/guide-deploying-astoria-packages-t3214481
Read this http://forum.xda-developers.com/showpost.php?p=63446863&postcount=58 , in cab folder put this unarchived :
augustinionut said:
Try to push this cab using this metod: http://forum.xda-developers.com/win...ile/guide-deploying-astoria-packages-t3214481
Read this http://forum.xda-developers.com/showpost.php?p=63446863&postcount=58 , in cab folder put this unarchived :
Click to expand...
Click to collapse
not work .gives an error and not restart as like project astoria cabs..so it not work.

Categories

Resources