You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ✅ **Menu bar integration** - Feels like a native Mac app
24
28
25
-
### Installation Steps
29
+
### Installation
26
30
27
-
**1. Download the right version for your Mac:**
31
+
Pick whichever method you prefer. Both install the same desktop app.
28
32
29
-
| Chip Type | Download Link |
30
-
|-----------|--------------|
31
-
|**Apple Silicon** (M1/M2/M3) |[Download for Apple Silicon](https://files.stirlingpdf.com/mac-installer.dmg)|
32
-
|**Intel** processors |[Download for Intel](https://files.stirlingpdf.com/mac-x86_64-installer.dmg)|
33
+
<TabsgroupId="mac-install"queryString>
34
+
<TabItemvalue="dmg"label="DMG Installer"default>
35
+
**1. Download the right version for your Mac:**
33
36
34
-
**Not sure which chip you have?**
35
-
- Click the Apple menu → "About This Mac"
36
-
- Look at "Chip" or "Processor"
37
-
- If it says "M1", "M2", or "M3" → Use Apple Silicon version
38
-
- If it says "Intel" → Use Intel version
37
+
| Chip Type | Download Link |
38
+
|-----------|--------------|
39
+
| **Apple Silicon** (M1/M2/M3) | [Download for Apple Silicon](https://files.stirlingpdf.com/mac-installer.dmg) |
40
+
| **Intel** processors | [Download for Intel](https://files.stirlingpdf.com/mac-x86_64-installer.dmg) |
39
41
40
-
**2. Install the application:**
42
+
Not sure which chip you have? Click the Apple menu → "About This Mac" and look at "Chip" or "Processor".
41
43
42
-
1. Open the downloaded `.dmg` file
43
-
2. Drag Stirling PDF to your Applications folder
44
+
**2. Install:** open the `.dmg` and drag Stirling PDF to your Applications folder.
44
45
45
-

46
+

46
47
47
-
**3. First-time launch (Security):**
48
+
**3. First-time launch (Gatekeeper):** macOS blocks the app on first launch because it's not from the App Store.
48
49
49
-
macOS will block the app on first launch because it's not from the App Store:
50
+

50
51
51
-

52
+
Open **System Settings → Privacy & Security**, scroll to the **Security** section, click **"Open Anyway"** next to the Stirling PDF message, then launch again.
52
53
53
-
**To allow Stirling PDF:**
54
-
1. Open **System Settings** → **Privacy & Security**
55
-
2. Scroll down to the **Security** section
56
-
3. Click **"Open Anyway"** next to the Stirling PDF message
57
-
4. Enter your password if prompted
58
-
5. Go back to Applications and launch Stirling PDF again
Copy file name to clipboardExpand all lines: docs/Installation/Windows.md
+61-34Lines changed: 61 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ sidebar_position: 2
3
3
id: Windows Installation
4
4
title: Windows Guide
5
5
---
6
+
7
+
import Tabs from '@theme/Tabs';
8
+
import TabItem from '@theme/TabItem';
9
+
6
10
# Windows Installation Guide for Stirling PDF
7
11
8
12
Stirling PDF for Windows comes in two versions: a **Desktop Application** for personal use and a **Server Version** for hosting and sharing with others.
@@ -23,13 +27,38 @@ Stirling PDF for Windows comes in two versions: a **Desktop Application** for pe
23
27
- ✅ **Better performance** - Optimized for Windows
Updates come through automatically on new releases:
27
56
28
-
1.**Download**: [Stirling PDF Desktop Installer](https://files.stirlingpdf.com/win-installer.exe)
29
-
2.**Run the installer** - Follow the prompts (installs to `C:\Program Files\Stirling-PDF`)
30
-
3.**Launch from Start Menu** - Search for "Stirling PDF"
31
-
4.**Start working with PDFs!**
32
-
5.**Optionally connect a server** - For advanced tools, see [Connecting to a server](#connecting-to-a-server) below
57
+
```powershell
58
+
scoop update stirling-pdf
59
+
```
60
+
</TabItem>
61
+
</Tabs>
33
62
34
63
### Connecting to a server
35
64
@@ -67,36 +96,38 @@ The desktop app works fully offline for local PDF tools like merging, splitting,
67
96
- Unlimited file storage (not limited by browser)
68
97
- System tray icon for quick access
69
98
70
-
### Automated Installation (MSI Installer)
99
+
### Automated Installation
71
100
72
-
The Windows desktop MSI installer supports silent/headless installation with custom parameters, ideal for IT deployments, deployment scripts (SCCM, Intune, Group Policy), or enforcing connections to self-hosted servers.
101
+
Silent/headless installation with custom parameters, ideal for IT deployments(SCCM, Intune, Group Policy) or enforcing connections to self-hosted servers. Works via either the MSI installer directly or `winget --custom`.
73
102
74
103
**Available Parameters:**
75
104
76
105
| Parameter | Description | Example Value |
77
106
|-----------|-------------|---------------|
78
107
|`STIRLING_SERVER_URL`| Pre-configure the server URL that the desktop app connects to |`http://192.168.1.53:2357/`|
79
-
|`STIRLING_LOCK_CONNECTION`| Lock the connection mode to prevent users from changing server settings.<br/>Set to `1` to enforce self-hosted server only, preventing accidental connections to external servers. |`1` (locked) or `0` (unlocked) |
-`msiexec` - Windows Installer command-line tool (included with all Windows installations) for installing, modifying, and performing operations on MSI packages
89
-
-`/i` - Install the MSI package
90
-
-`/qn` - Run silently with no user interface (quiet mode, no UI)
91
-
-`STIRLING_SERVER_URL` - Automatically sets the server URL on first launch
92
-
-`STIRLING_LOCK_CONNECTION=1` - Locks the connection to the specified server (users cannot change it)
0 commit comments