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,45 +139,64 @@ 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
-
<li>
161
-
<strong>Enable MDM</strong>
162
-
<divclassName="space-y-2">
163
-
<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.
166
-
</p>
167
-
<p>
168
-
You should see a banner that asks you to enable MDM. Click the button and
169
-
follow the instructions.
172
+
{isMacOS ? (
173
+
<li>
174
+
<strong>Login with your work email</strong>
175
+
<pclassName="mt-1">
176
+
After installation, login with your work email, select your organization and
177
+
then click "Link Device" and "Install Agent".
170
178
</p>
171
-
<p>
172
-
After you've enabled MDM, if you refresh the page, the banner will disappear.
173
-
Now your computer will automatically enable the necessary settings on your
174
-
computer in order to be compliant.
175
-
</p>
176
-
</div>
177
-
</li>
179
+
</li>
180
+
) : (
181
+
<li>
182
+
<strong>Enable MDM</strong>
183
+
<divclassName="space-y-2">
184
+
<p>
185
+
Find the Fleet Desktop app in your system tray (bottom right corner). Click
186
+
on it and click My Device.
187
+
</p>
188
+
<p>
189
+
You should see a banner that asks you to enable MDM. Click the button and
190
+
follow the instructions.
191
+
</p>
192
+
<p>
193
+
After you've enabled MDM, if you refresh the page, the banner will
194
+
disappear. Now your computer will automatically enable the necessary
195
+
settings on your computer in order to be compliant.
0 commit comments