/* If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). */ BOOL deleteLinkFromStarupFolder(string linkName) { CHAR szStartPath[MAX_PATH] = { 0 }; SHGetSpecialFolderPathA(NULL, szStartPath, CSIDL_STARTUP, 0); string path = &szStartPath[0]; path += "\\" + linkName; returnDeleteFileA(path.c_str()); }