English 中文(简体)
我怎么能从方案上找到Iexplore。 否?
原标题:How can I find programatically where iexplore.exe is?

I need to run myApp.exe that in turn will launch iexplore.exe. What is the most robust, generic way (OS bit version agnostic) to do so?

您能否向右登记处指出关键/env var/其他意思是这样做?

Thanks, Guy

最佳回答

关于互联网探索者的新版本,你可以检查关键的香港环境倡议——LOCAL_MACHINESOFTWAREMicrosoft Internet ExplorationCapabilitiesApplicationDescription。

说到底,最落后的和最落后的——<>将按此顺序排列:

In Registry: HKEY_CLASSES_ROOTIE.AssocFile.HTMshellopencommand %ProgramFiles(x86)%Internet Exploreriexplore.exe %ProgramFiles%Internet Exploreriexplore.exe

请注意,64个视窗版本可能有两个不同的版本,即32个轨道和64个轨道。 至少当事情现在(与E9一起)时,你通常希望使用32个轨道版本,因为它能更好地优化,并能更好地实现原始/实际的X兼容性。

问题回答
#include <stdlib.h>  
int main() {     
    system("iexplore.exe");
    return 0; 
} 

in any version of windows that I have ever tried... if you click run then type iexplore.exe, Internet Explorer will run. This should do the same...

阅读登记册关键数值<代码>HEY_CLASSES_ROOTCLSID{0002DF01-0000-C000-000000046} LocalServer32

这是IECOM服务器注册。

另一种选择:

CSettingsStore store(TRUE, TRUE);
if (store.Open(_T("Software\Clients\StartMenuInternet\IEXPLORE.EXE\shell\open\command")))
{
    CString strIEPath = _T("");

    store.Read(_T(""), strIEPath);
    store.Close();

    if(PathFileExists(strIEPath))
    {
        // Do whatever
    }
}

你们还可以改变以下关键因素:

store.Open(_T("SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE")

适当的方式是使用<条码>%PATH%,因为该编码不受上载攻击。

SetSearchPathMode(BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE);
WCHAR buf[MAX_PATH];
SearchPath(NULL, "iexplore.exe", NULL, MAX_PATH, buf, NULL);

您可以研究<代码>PATH环境变量的夹。 另外,在册子中,<%SYSTEMDRIVE%PROGRA~1INTERN~1和

http://www.un.org。

  • You can have your own env variabale (say IE_HOME). And ask clients of your program to set it equal to path of IE executable and just use value of this environment variable.

Unless I m misn current edition of IE are 所有这些装置在“Program filesInternetExplorer”下

因此,

string strIEPath;

char cDirectory[MAX_PATH];
if(SHGetSpecialFolderPathA(NULL,cDirectory,CSIDL_PROGRAM_FILES,false))          
{
    strIEPath = cDirectory;
    strIEPath.append("\InternetExplorer\iexplorer.exe");
}




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签