From bc37328ccd4eb092b0060442139c6c85b257e655 Mon Sep 17 00:00:00 2001
From: fufesou <13586388+fufesou@users.noreply.github.com>
Date: Wed, 25 Feb 2026 12:12:37 +0800
Subject: [PATCH] =?UTF-8?q?Updated=20macOS=20Auto=E2=80=90Start=20Service?=
=?UTF-8?q?=20Setup=20(for=20Remote=20=20=20MDM=20Deployment)=20(markdown)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...art-Service-Setup-(for-Remote---MDM-Deployment).md | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/macOS-Auto‐Start-Service-Setup-(for-Remote---MDM-Deployment).md b/macOS-Auto‐Start-Service-Setup-(for-Remote---MDM-Deployment).md
index d2f53f2..e32ab43 100644
--- a/macOS-Auto‐Start-Service-Setup-(for-Remote---MDM-Deployment).md
+++ b/macOS-Auto‐Start-Service-Setup-(for-Remote---MDM-Deployment).md
@@ -485,14 +485,19 @@ Edit the `DEFAULTPATH` variable at the top of the script:
DEFAULTPATH='/Applications/MyCustomApp.app'
```
+
+
+`MyCustomApp.app` should be replaced with your actual application name followed by `.app`.
+For example, using the settings above, the path would be `/Applications/Test2.app`.
+
Everything else (app name, plist labels, config paths) is auto-derived from this single path:
| Item | Example (`DEFAULTPATH = /Applications/MyApp.app`) |
|------|---------------------------------------------------|
-| APP_NAME | `MyApp` |
-| Plist label | `com.carriez.MyApp_service` / `com.carriez.MyApp_server` |
-| Config dir | `~/Library/Preferences/com.carriez.MyApp/` |
-| Config files | `MyApp.toml`, `MyApp2.toml` |
+| APP_NAME | `MyCustomApp` |
+| Plist label | `com.carriez.MyCustomApp_service` / `com.carriez.MyCustomApp_server` |
+| Config dir | `~/Library/Preferences/com.carriez.MyCustomApp/` |
+| Config files | `MyCustomApp.toml`, `MyCustomApp2.toml` |
> The app's bundle identifier (e.g., `com.mycompany.myapp`) does not affect these paths. RustDesk always uses `com.carriez.` internally.