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
@@ -57,7 +60,7 @@ export function DeviceAgentAccordionItem({
57
60
// Method 1: Using a temporary link (most reliable)
58
61
consta=document.createElement('a');
59
62
a.href=downloadUrl;
60
-
a.download='compai-device-agent.zip';
63
+
a.download=isMacOS ? 'Comp AI Agent-1.0.0-arm64.dmg' : 'compai-device-agent.zip';
61
64
document.body.appendChild(a);
62
65
a.click();
63
66
document.body.removeChild(a);
@@ -136,33 +139,43 @@ export function DeviceAgentAccordionItem({
136
139
{getButtonContent()}
137
140
</Button>
138
141
</li>
142
+
{!isMacOS&&(
143
+
<li>
144
+
<strong>Run the "Install Me First" file</strong>
145
+
<pclassName="mt-1">
146
+
After extracting the downloaded zip file, locate and run the "Install Me
147
+
First" file to prepare your system.
148
+
</p>
149
+
</li>
150
+
)}
139
151
<li>
140
-
<strong>Run the "Install Me First" file</strong>
141
-
<pclassName="mt-1">
142
-
After extracting the downloaded zip file, locate and run the "Install Me First"
143
-
file to prepare your system.
144
-
</p>
145
-
</li>
146
-
<li>
147
-
<strong>Run the Comp AI Device Agent installer</strong>
152
+
<strong>
153
+
{isMacOS
154
+
? 'Install the Comp AI Device Agent'
155
+
: 'Run the Comp AI Device Agent installer'}
156
+
</strong>
148
157
<pclassName="mt-1">
149
-
Follow the installation wizard steps. When you reach the introduction screen (as
150
-
shown below), click "Continue" to proceed through the installation.
158
+
{isMacOS
159
+
? 'Double-click the downloaded DMG file and follow the installation instructions.'
160
+
: 'Follow the installation wizard steps. When you reach the introduction screen (as shown below), click "Continue" to proceed through the installation.'}
151
161
</p>
152
-
<Image
153
-
src="/osquery-agent.jpeg"
154
-
alt="Fleet osquery installer introduction screen"
155
-
width={600}
156
-
height={400}
157
-
className="mt-2 rounded-xs border"
158
-
/>
162
+
{!isMacOS&&(
163
+
<Image
164
+
src="/osquery-agent.jpeg"
165
+
alt="Fleet osquery installer introduction screen"
166
+
width={600}
167
+
height={400}
168
+
className="mt-2 rounded-xs border"
169
+
/>
170
+
)}
159
171
</li>
160
172
<li>
161
173
<strong>Enable MDM</strong>
162
174
<divclassName="space-y-2">
163
175
<p>
164
-
On Mac, on the top of your screen, find the Fleet Desktop app which looks like
165
-
an F made of dots. Click on it and click My Device.
176
+
{isMacOS
177
+
? 'On the top of your screen, find the Fleet Desktop app which looks like an F made of dots. Click on it and click My Device.'
178
+
: 'Find the Fleet Desktop app in your system tray (bottom right corner). Click on it and click My Device.'}
166
179
</p>
167
180
<p>
168
181
You should see a banner that asks you to enable MDM. Click the button and
0 commit comments