diff --git a/docs/docs/.vitepress/sidebar.ts b/docs/docs/.vitepress/sidebar.ts index 6af9e3556..dcdcce91f 100644 --- a/docs/docs/.vitepress/sidebar.ts +++ b/docs/docs/.vitepress/sidebar.ts @@ -123,6 +123,10 @@ export const sidebar = [ text: "Troubleshooting", collapsed: true, items: [ + { + text: "Desktop install", + link: "/photos/troubleshooting/desktop-install/", + }, { text: "Files not uploading", link: "/photos/troubleshooting/files-not-uploading", diff --git a/docs/docs/photos/troubleshooting/desktop-install.md b/docs/docs/photos/troubleshooting/desktop-install/index.md similarity index 71% rename from docs/docs/photos/troubleshooting/desktop-install.md rename to docs/docs/photos/troubleshooting/desktop-install/index.md index d04b4aff9..ca945c70f 100644 --- a/docs/docs/photos/troubleshooting/desktop-install.md +++ b/docs/docs/photos/troubleshooting/desktop-install/index.md @@ -38,3 +38,16 @@ tl;dr; for example, on Ubuntu, ```sh sudo apt install libfuse2 ``` + +## Windows + +If the app stops with an "A JavaScript error occurred in the main process - The +specified module could not be found" error on your Windows machine when you +start it, then you might need to install the VC++ runtime from Microsoft. + +This is what the error looks like: + +![Error when VC++ runtime is not installed](windows-vc.png){width=500px} + +You can install the Microsoft VC++ redistributable runtime from here:
+https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version diff --git a/docs/docs/photos/troubleshooting/desktop-install/windows-vc.png b/docs/docs/photos/troubleshooting/desktop-install/windows-vc.png new file mode 100644 index 000000000..852c037d5 Binary files /dev/null and b/docs/docs/photos/troubleshooting/desktop-install/windows-vc.png differ