是否有任何可能的方法可以从 Windows 8 商店应用程序启动远程协助工具。
想创建一个商店应用程序,我可以安装在我父母的电脑上以启动远程协助工具并将文件自动发送给我。我以前用一个简单的控制台应用程序做到了这一点,但想知道是否有任何方法可以从商店应用程序中做到这一点。这将使我能够获得带有我的照片的漂亮瓷砖,并使安装过程也更好。
这是从没有发送部分的控制台应用程序执行的代码。
static void Main(string[] args)
{
System.Diagnostics.Process p = new System.Diagnostics.Process();
string fileurl = System.IO.Path.GetTempPath() + "Invitation.msrcincident";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
p.StartInfo.FileName = "Msra.exe";
p.StartInfo.Arguments = "/saveasfile " + fileurl + " MyPassword";
Console.WriteLine(p.StartInfo.Arguments);
p.Start();
while (!p.StandardOutput.EndOfStream)
{
string line = p.StandardOutput.ReadLine();
Console.WriteLine(line);
}
while (File.Exists(fileurl) == false)
{
Thread.Sleep(1000);
}
}