#include #include int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { // TODO: Place code here. WCHAR stmenu[MAX_PATH]; WCHAR temp[MAX_PATH]; SHGetSpecialFolderPath(NULL,stmenu,CSIDL_STARTMENU ,TRUE); GetTempFileName(stmenu,L"",0,temp); DeleteFile(temp); return 0; }