diff --git a/changes/22527-policy-automation-ui-improvements b/changes/22527-policy-automation-ui-improvements
new file mode 100644
index 0000000000..6d56f7efa6
--- /dev/null
+++ b/changes/22527-policy-automation-ui-improvements
@@ -0,0 +1 @@
+- Update help text for policy automation Install software and Run script modals
diff --git a/frontend/pages/policies/ManagePoliciesPage/components/InstallSoftwareModal/InstallSoftwareModal.tsx b/frontend/pages/policies/ManagePoliciesPage/components/InstallSoftwareModal/InstallSoftwareModal.tsx
index 0d9681c203..d21cc7a6c3 100644
--- a/frontend/pages/policies/ManagePoliciesPage/components/InstallSoftwareModal/InstallSoftwareModal.tsx
+++ b/frontend/pages/policies/ManagePoliciesPage/components/InstallSoftwareModal/InstallSoftwareModal.tsx
@@ -20,6 +20,7 @@ import TooltipTruncatedText from "components/TooltipTruncatedText";
import CustomLink from "components/CustomLink";
import Button from "components/buttons/Button";
import { ISoftwareTitle } from "interfaces/software";
+import TooltipWrapper from "components/TooltipWrapper";
const getPlatformDisplayFromPackageExtension = (ext: string | undefined) => {
switch (ext) {
@@ -223,6 +224,16 @@ const InstallSoftwareModal = ({
);
}
+ const compatibleTipContent = (
+ <>
+ .pkg for macOS.
+
+ .msi or .exe for Windows.
+
+ .deb for Linux.
+ >
+ );
+
return (