using System;
using System.Diagnostics;
using System.ComponentModel;
class MyProcess
{
staticvoid Main()
{
// Get the path that stores favorite links.
string myFavoritesPath = Environment.GetFolderPath(Environment.SpecialFolder.Favorites);
Process.Start("IExplore.exe");
Process.Start(myFavoritesPath);
}
}