I need to determine the path of the original explorer.exe on 32-bit and 64-bit Windows in a C # project. What is the most reliable way to achieve this?
I would use the "windir" environment variable since explorer.exe is there
string windir = Environment.GetEnvironmentVariable("windir"); string explorerPath = windir + @"\explorer.exe";
Source: https://habr.com/ru/post/1765265/More articles:What is the advantage of IDA than visual studio when disassembling dll? - disassemblytrying to get xui to work - javascriptForced IDA decompiler to use a different signature of functions of static functions in namespaces - c ++Custom Painting JPanel - javaЕсть ли способ узнать, успешно ли отправлено электронное письмо с помощью С#? - c#How to use API documentation - javaTraining event handling OpenCl - event-handlingJsTree with dnd plugin, always copy - drag-and-dropRails 3 с проблемой mysql - rubyHow to find the eclipse org.eclipse.ui.console plugin? - eclipseAll Articles