是否有任何可能的方法从Windows 8商店应用启动远程协助工具。
想要创建一个商店应用程序,我可以在我父母的PC上安装以启动远程协助工具并自动发送给我。我以前用一个简单的控制台应用程序完成了这个,但是想知道是否有任何方法可以从商店应用程序这样做。这样我就能得到一张带有我照片的漂亮瓷砖,并使安装过程更好。
这是从没有发送部分的控制台应用程序执行此操作的代码。
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);
}
}