|
小弟想在应用程序中更改注册表,让系统下次启动就直接启动指定位置的应用程序。在应用程序的一个按钮中实现如下:
CString strKeyName,strMain;
strKeyName.Format(_T("init"));
strMain.Format(L"\\ResidentFlash\\MPT\\main.exe");
//打开注册表对对应子健进行修改
HKEY hkey;
if(RegOpenKeyEx(HKEY_LOCAL_MACHINE,strKeyName,0,KEY_ALL_ACCESS | KEY_READ | KEY_WRITE,&hkey) != ERROR_SUCCESS)
{
// MessageBox(TEXT("打开注册表错误"),NULL,0);
MessageBox(L"Can not open the reg file!",L"ezLabs Reader", MB_ICONERROR);
}else
{
DWORD value;
value = 0;
WCHAR buffer[100];
if(RegSetValueEx(hkey,TEXT("Launch50"),0,REG_MULTI_SZ,(const unsigned char *)buffer, strMain.GetLength()*2) != ERROR_SUCCESS)
MessageBox(L"Can not set value!",L"ezLabs Reader", MB_ICONERROR);
RegCloseKey( hkey );
}//原来Launch50 = “explorer.exe”
原来系统可以起来进入桌面的,后来在应用程序中执行了上述代码后就起不来了,指向的应用程序也没有起来;
如果设置Launch50的值没有成功的话,那么系统应该能起来啊?
麻烦给位指点一二,哪里有问题呢?谢谢!
|
|