Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
332 views
Welcome To Ask or Share your Answers For Others

1 Answer

The IsolatedStorageExplorer tool (ISE) for WP8.1 works just fine with W10m apps (you will find it at C:Program Files (x86)Microsoft SDKsWindows Phonev8.1ToolsIsolatedStorageExplorerTool).

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:

enter image description here

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:
    enter image description here

  • 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...