http://jopx.blogspot.com/2006/12/automatic-my-site-creation-with.html
public static void CreatePersonalSite(string sAccount)
{
using (SPSite site = new SPSite(“http://moss”))
{
ServerContext context = ServerContext.GetContext(site);
UserProfileManager profileManager = new UserProfileManager(context);
UserProfile u = profileManager.GetUserProfile(sAccount);
u.CreatePersonalSite();
}
}









