I need to open itunes using System.Diagnostic.Start using C# Code. Is this possible?
Also I need to pass the song or Video to play when I open itune.
If i use this code this does opens the song, but it open it with the default player of my system. I want to open this song with itune only.
System.Diagnostics.Process.Start(@"G:\My music\7.mp3");
Is this possible?