// dllmain.cpp : Defines the entry point for the DLL application. #include "pch.h" #include #include #include "trace.h" #include #include #include #include #include #include #include #include #include "resource.h" #include "Constants.h" extern "C" IMAGE_DOS_HEADER __ImageBase; BOOL APIENTRY DllMain(HMODULE /*hModule*/, DWORD ul_reason_for_call, LPVOID /*lpReserved*/) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: Trace::RegisterProvider(); break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: break; case DLL_PROCESS_DETACH: Trace::UnregisterProvider(); break; } return TRUE; } const static wchar_t* MODULE_NAME = L"RegistryPreview"; const static wchar_t* MODULE_DESC = L"A quick little utility to visualize and edit complex Windows Registry files."; namespace { const wchar_t JSON_KEY_PROPERTIES[] = L"properties"; const wchar_t JSON_KEY_ENABLED[] = L"enabled"; const wchar_t JSON_KEY_DEFAULT_APP[] = L"default_reg_app"; } class RegistryPreviewModule : public PowertoyModuleIface { private: bool m_enabled = false; bool m_default_app = false; //Hotkey m_hotkey; HANDLE m_hProcess; HANDLE triggerEvent; EventWaiter triggerEventWaiter; bool is_process_running() { return WaitForSingleObject(m_hProcess, 0) == WAIT_TIMEOUT; } void launch_process() { if (m_enabled) { Logger::trace(L"Starting Registry Preview process"); unsigned long powertoys_pid = GetCurrentProcessId(); std::wstring executable_args = L""; executable_args.append(std::to_wstring(powertoys_pid)); SHELLEXECUTEINFOW sei{ sizeof(sei) }; sei.fMask = { SEE_MASK_NOCLOSEPROCESS | SEE_MASK_FLAG_NO_UI }; sei.lpFile = L"WinUI3Apps\\PowerToys.RegistryPreview.exe"; sei.nShow = SW_SHOWNORMAL; sei.lpParameters = executable_args.data(); if (ShellExecuteExW(&sei)) { Logger::trace("Successfully started the Registry Preview process"); } else { Logger::error(L"Registry Preview failed to start. {}", get_last_error_or_default(GetLastError())); } m_hProcess = sei.hProcess; } } void terminate_process() { TerminateProcess(m_hProcess, 1); } void parse_default_app_settings(PowerToysSettings::PowerToyValues settings) { const std::wstring installationDir = get_module_folderpath(); auto changeSet = getRegistryPreviewSetDefaultAppChangeSet(installationDir, true); auto settingsObject = settings.get_raw_json(); if (settingsObject.GetView().Size()) { auto default_app = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedBoolean(JSON_KEY_DEFAULT_APP); if (default_app != m_default_app) { m_default_app = default_app; auto result = default_app ? changeSet.apply() : changeSet.unApply(); if (!result) { Logger::error(L"Failed to {} default app registry change set.", default_app ? L"apply" : L"unapply"); } SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL); } } else { Logger::info("Registry Preview settings are empty"); } } // Load the settings file. void init_settings() { try { // Load and parse the settings file for this PowerToy. PowerToysSettings::PowerToyValues settings = PowerToysSettings::PowerToyValues::load_from_settings_file(get_key()); auto enabled = settings.get_bool_value(JSON_KEY_ENABLED); auto result = true; const std::wstring installationDir = get_module_folderpath(); auto enabledChangeSet = getRegistryPreviewChangeSet(installationDir, true); result = enabled ? enabledChangeSet.apply() : enabledChangeSet.unApply(); if (!result) { Logger::error(L"Failed to {} enabled registry change set.", enabled ? L"apply" : L"unapply"); } parse_default_app_settings(settings); } catch (std::exception&) { Logger::error("Invalid json when trying to load the Registry Preview settings json from file."); } } public: RegistryPreviewModule() { LoggerHelpers::init_logger(GET_RESOURCE_STRING(IDS_REGISTRYPREVIEW_NAME), L"ModuleInterface", "RegistryPreview"); Logger::info("Registry Preview object is constructing"); init_settings(); triggerEvent = CreateEvent(nullptr, false, false, CommonSharedConstants::REGISTRY_PREVIEW_TRIGGER_EVENT); triggerEventWaiter = EventWaiter(CommonSharedConstants::REGISTRY_PREVIEW_TRIGGER_EVENT, [this](int) { on_hotkey(0); }); } ~RegistryPreviewModule() { if (m_enabled) { terminate_process(); } m_enabled = false; } // Destroy the powertoy and free memory virtual void destroy() override { delete this; } // Return the localized display name of the powertoy virtual const wchar_t* get_name() override { return MODULE_NAME; } // Return the non localized key of the powertoy, this will be cached by the runner virtual const wchar_t* get_key() override { return MODULE_NAME; } // Return the configured status for the gpo policy for the module virtual powertoys_gpo::gpo_rule_configured_t gpo_policy_enabled_configuration() override { return powertoys_gpo::getConfiguredRegistryPreviewEnabledValue(); } // Return JSON with the configuration options. virtual bool get_config(wchar_t* buffer, int* buffer_size) override { HINSTANCE hinstance = reinterpret_cast(&__ImageBase); // Create a Settings object. PowerToysSettings::Settings settings(hinstance, get_name()); settings.set_description(MODULE_DESC); return settings.serialize_to_buffer(buffer, buffer_size); } // Pop open the app, if the OOBE page asks it to virtual void call_custom_action(const wchar_t* action) override { try { PowerToysSettings::CustomActionObject action_object = PowerToysSettings::CustomActionObject::from_json_string(action); if (action_object.get_name() == L"Launch") { launch_process(); Trace::ActivateEditor(); } } catch (std::exception&) { Logger::error(L"Failed to parse action. {}", action); } } // Called by the runner to pass the updated settings values as a serialized JSON. virtual void set_config(const wchar_t* config) override { try { // Parse the input JSON string. PowerToysSettings::PowerToyValues values = PowerToysSettings::PowerToyValues::from_json_string(config, get_key()); parse_default_app_settings(values); values.save_to_settings_file(); } catch (std::exception&) { Logger::error(L"Invalid json when trying to parse Registry Preview settings json."); } } // Enable the powertoy virtual void enable() { const std::wstring installationDir = get_module_folderpath(); if (!getRegistryPreviewChangeSet(installationDir, true).apply()) { Logger::error(L"Applying registry changes failed"); } // let the DLL enable the app m_enabled = true; Trace::EnableRegistryPreview(true); }; virtual void disable() { if (m_enabled) { // let the DLL disable the app terminate_process(); Trace::EnableRegistryPreview(false); Logger::trace(L"Disabling Registry Preview..."); // Remove the Registry setting so preview doesn't work anymore const std::wstring installationDir = get_module_folderpath(); if (!getRegistryPreviewChangeSet(installationDir, true).unApply()) { Logger::error(L"Unapplying registry changes failed"); } SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL); } m_enabled = false; } // Returns if the powertoys is enabled virtual bool is_enabled() override { return m_enabled; } // Respond to a "click" from the launcher virtual bool on_hotkey(size_t /*hotkeyId*/) override { if (m_enabled) { Logger::trace(L"Registry Preview hotkey pressed"); if (is_process_running()) { terminate_process(); } else { launch_process(); } return true; } return false; } }; extern "C" __declspec(dllexport) PowertoyModuleIface* __cdecl powertoy_create() { return new RegistryPreviewModule(); }