Ok I figured out how to accomplish this, but it involves reading and writing registry keys. Once the .TIF file is created, I am trying to Fax it, but I am having threading issues where it tries to Fax before the file exists.
If I put in a 'sleep', or a sleep in a while loop it loop endlessly:
while (!File.Exists(@"C:\Users\Wheels\Desktop"))
{
Thread.Sleep(500);
}
WHEELS