How to check Isolated Storage of Windows 10 mobile emulator?

杀马特。学长 韩版系。学妹 提交于 2019-12-29 04:56:05

问题


I am currently working on Windows 10 and my requirement is to check isolated storage of Windows 10 Mobile emulator. With Windows Phone 8/8.1, its possible using IsolatedExplorerTool which we can use using Command Prompt. Can anyone suggest, how I can achieve the same for Windows 10 Emulator ?


回答1:


The IsolatedStorageExplorer tool (ISE) for WP8.1 works just fine with W10m apps (you will find it at C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.1\Tools\IsolatedStorageExplorerTool).

You probably know how to use it, but just in case someone needs some explanation:

You will have to run it from command prompt or powershell. All you have to know is which emulator you are using and your app's package name. The first is obvious, the second you will find in manifest file:

In case you want to get the storage of mobile and the name of the app is different type than GUID, you will have to view code for manifest file (right click -> view code) and get PhoneProductID.

Then it goes like this:

  • first make sure which emulator index you use - run:

    .\ISETool.exe EnumerateDevices
    

    and you should see something like this:

  • to download your IsolatedStorage from emulator, use this line:

    .\ISETool.exe ts deviceindex:4 95fbf894-0aee-4398-b2e3-0f8eed69357c C:\Data\
    

    where C:\Data\ is your target folder.

  • to upload your data use similar command:

    .\ISETool.exe rs deviceindex:4 95fbf894-0aee-4398-b2e3-0f8eed69357c C:\Data\
    

    now C:\Data\ is your source folder.

Type .\ISETool.exe to see more help and examples.



来源:https://stackoverflow.com/questions/33063136/how-to-check-isolated-storage-of-windows-10-mobile-emulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!