Skip to content

Develop, build and integrate

Alexander Raab edited this page Jul 12, 2021 · 6 revisions

QuickLook works with these File Managers out-of-box.

The previewing ability can be extended by new plugins.

Note that any plugin must be under the QuickLook.Plugin namespace and has the filename similar to QuickLook.Plugin.YourPlugin.dll.

Integrating with File Managers

From the command line (MSI and ZIP versions)

Assign a custom hotkey that fires event QuickLook.exe "c:\a\path\here".

From the command line (MSI, ZIP, and Windows Store versions)

  1. Download the helper: Bridge.zip (complied EXE & source code).
  2. Assign a custom hotkey that calls Bridge.exe "c:\a\path\here".

For developers

Get the code sample from https://github.com/QL-Win/QuickLook/issues/557 or the above Bridge.zip.

Build the code yourself

  1. Install Git and VS2019.
  2. Install WiX and VS2019 extension: https://wixtoolset.org/releases/.
  3. Clone this repo, do remember to clone submodules (for QuickLook.Common).
  4. Set PowerShell execution policy to unrestricted (how-to).
  5. Double-click on QuickLook.sln, select build profile Release, and build the solution.
  6. Find a MSI packages under Build/.
  7. If you want a ZIP package, run the script at Scripts/pack-zip.ps1.