spawnl(P_WAIT,"defrag","C",NULL);
#include "stdafx.h"
#include "windows.h"
void main()
{
STARTUPINFO cif;
ZeroMemory(&cif,sizeof(STARTUPINFO));
PROCESS_INFORMATION pi;
CreateProcess(L"c:\\windows\\system32\\defrag.exe",NULL,
NULL,NULL,FALSE,NULL,NULL,NULL,&cif,&pi);
}