If the live mesh client is running, and a console window running from vs 2008, through native code projects (not .net) is attempted to be closed, the console hangs, and will not close, attempts to kill the process do not work.
If you go to the task manager and select-go to process for the application, the process selected is Moe.exe
sample application code, executed in debug or release mode, then window is attempted to be closed before scanf returns
// Test.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
scanf("%f");
}