Are there any possible way to start the remote assistance tool from a windows 8 store app.
Would like to create a store app that I could install on my parents pc for starting the remote assistance tool and send me the file automatic. I have done this with a simple console application before but was wondering if there is any way to do so from a store app. That would enable me to get a nice tile with a picture of me and make the install process better also.
here is the code that do it from a console app without the send part.
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);
}
}