Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion articles/setup-experience.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ To sign the package we need a valid Developer ID Installer certificate:

You can install software during first time macOS, iOS, iPadOS, Android, and [Windows and Linux setup](https://fleetdm.com/guides/windows-linux-setup-experience).

Currently, for macOS hosts, software is only installed on hosts that automatically enroll to Fleet via Apple Business (AB). For iOS and iPadOS hosts, software is only installed on hosts that enroll via ABM and hosts that manually enroll via the `/enroll` link (profile-based device enrollment).
Currently, for macOS hosts, software is only installed on hosts that automatically enroll to Fleet via Apple Business (AB).

Add setup experience software:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ describe("InstallSoftware", () => {
expect(screen.getByText(/Turn on Android MDM/)).toBeInTheDocument();
});
expect(
screen.getByText(/Install software on hosts that automatically enroll/)
screen.getByText(/Install software on hosts that enroll to Fleet/)
).toBeVisible();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,9 @@ const InstallSoftware = ({
<PageDescription
variant="right-panel"
content={
selectedPlatform === "windows" || selectedPlatform === "linux"
? "Install software on hosts that enroll to Fleet."
: "Install software on hosts that automatically enroll to Fleet."
selectedPlatform === "macos"
? "Install software on hosts that automatically enroll to Fleet."
: "Install software on hosts that enroll to Fleet."
}
/>
<SetupExperienceContentContainer>
Expand Down
Loading