如何检查 Windows 10 移动模拟器的独立存储? [英] How to check Isolated Storage of Windows 10 mobile emulator?

查看:19
本文介绍了如何检查 Windows 10 移动模拟器的独立存储?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在使用 Windows 10,我的要求是检查 Windows 10 Mobile 模拟器的隔离存储.在 Windows Phone 8/8.1 中,可以使用 IsolatedExplorerTool,我们可以使用命令提示符来使用它.任何人都可以建议,我如何才能为 Windows 10 Emulator 实现相同的目标?

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 ?

推荐答案

适用于 WP8.1 的 IsolatedStorageExplorer 工具 (ISE) 与 W10m 应用程序配合得很好(您可以在 C:Program Files (x86) 找到它Microsoft SDKsWindows Phonev8.1ToolsIsolatedStorageExplorerTool).

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:

您必须从命令提示符或 powershell 运行它.您只需要知道您使用的是哪个模拟器以及您的应用程序的包名称.第一个很明显,第二个你可以在清单文件中找到:

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:

如果您想获取移动设备的存储并且应用程序的名称与 GUID 不同,则必须查看清单文件的代码(右键单击 -> 查看代码)并获取 PhoneProductID.

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.

然后是这样的:

  • 首先确定您使用的是哪个模拟器索引 - 运行:

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

.ISETool.exe EnumerateDevices

您应该会看到如下内容:

and you should see something like this:

要从模拟器下载您的 IsolatedStorage,请使用以下行:

to download your IsolatedStorage from emulator, use this line:

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

其中 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

现在 C:Data 是您的源文件夹.

now C:Data is your source folder.

键入 .ISETool.exe 以查看更多帮助和示例.

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

这篇关于如何检查 Windows 10 移动模拟器的独立存储?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆