求用C语言写一个可以打开QQ的程序
如果我不知道QQ所在的绝对路径.那我如何打开QQ.我有个知道绝对路径才打开QQ的.如下.#include<stdio.h>#include"windows.h"intma...
如果我不知道QQ所在的绝对路径.那我如何打开QQ.我有个知道绝对路径才打开QQ的.如下.#include <stdio.h>
#include "windows.h"
int main()
{
ShellExecute(NULL,"open","E:\\聊天工具\\QQ\\QQ.exe",NULL,NULL,SW_SHOW);
return 0;
}当然.我要求的是不知道绝对的路径.如果有谁知道.可以说说. 展开
#include "windows.h"
int main()
{
ShellExecute(NULL,"open","E:\\聊天工具\\QQ\\QQ.exe",NULL,NULL,SW_SHOW);
return 0;
}当然.我要求的是不知道绝对的路径.如果有谁知道.可以说说. 展开
2个回答
2013-07-11
展开全部
#include<windows.h>
#include<stdio.h>
void main()
{
HKEY hKey;
LONG iret;
char path[512];
DWORD cbData;
iret=RegOpenKeyEx(HKEY_LOCAL_MACHINE,"software\\tencent\\qq",NULL,KEY_QUERY_VALUE,&hKey);
if(iret != ERROR_SUCCESS)
printf("没有安装QQ.\n");
iret=RegQueryValueEx(hKey,"install",NULL,NULL,(LPBYTE)path,&cbData);
if(iret != ERROR_SUCCESS)
printf("查询注册表失败.\n");
RegCloseKey(hKey);
lstrcat(path,"\\qq.exe");
ShellExecute(NULL,"open",path,NULL,NULL,SW_SHOWNORMAL);
}
#include<stdio.h>
void main()
{
HKEY hKey;
LONG iret;
char path[512];
DWORD cbData;
iret=RegOpenKeyEx(HKEY_LOCAL_MACHINE,"software\\tencent\\qq",NULL,KEY_QUERY_VALUE,&hKey);
if(iret != ERROR_SUCCESS)
printf("没有安装QQ.\n");
iret=RegQueryValueEx(hKey,"install",NULL,NULL,(LPBYTE)path,&cbData);
if(iret != ERROR_SUCCESS)
printf("查询注册表失败.\n");
RegCloseKey(hKey);
lstrcat(path,"\\qq.exe");
ShellExecute(NULL,"open",path,NULL,NULL,SW_SHOWNORMAL);
}
2013-07-11
展开全部
没分啊,告诉你把打开注册表在里面搜索,qq,找到关键键值,那他做特征码
我刚才试了下,可以找到,但是路径需要你自己截取
我刚才试了下,可以找到,但是路径需要你自己截取
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询