<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automatic deployment of GlobalProtect for Mac via Intune in GlobalProtect Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/509858#M3024</link>
    <description>&lt;P&gt;Has anyone had any luck with this? I am in the exact same situation, I see the app install and popup momentarily and then it uninstalls and disappears. Any help would be great, trying to get GP pushed out to Mac devices asap.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jul 2022 22:59:31 GMT</pubDate>
    <dc:creator>michaeljlee3</dc:creator>
    <dc:date>2022-07-25T22:59:31Z</dc:date>
    <item>
      <title>Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/395633#M1113</link>
      <description>&lt;P&gt;My Company uses Intune for Mac management, and we are trying to automate as many app deployments as we can. Right now, I am hung up on GlobalProtect. I have already created a line-of-business app using the .pkg provided by Paloalto for GlobalProtect. The issue I am running into however, is the fact that the installer has multiple options; 1. Install 2. Uninstall 3. Add Extensions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Intune deployment doesn't know what to do about it, so it runs all 3. So it installs, then uninstalls. Is there any way to get just the installer portion? Also, are there installer arguments to pre-populate the vpn server info, like you can do with the windows installer?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 20:30:07 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/395633#M1113</guid>
      <dc:creator>kinits</dc:creator>
      <dc:date>2021-04-02T20:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/445760#M2107</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you find any solution for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 11:53:24 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/445760#M2107</guid>
      <dc:creator>F.Khan071518</dc:creator>
      <dc:date>2021-11-05T11:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/485431#M2724</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@all,&lt;BR /&gt;I have exactly the same problem.&amp;nbsp;&lt;BR /&gt;Please provide your solution &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 13:49:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/485431#M2724</guid>
      <dc:creator>frederic.peter</dc:creator>
      <dc:date>2022-05-06T13:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/485446#M2725</link>
      <description>&lt;P&gt;I actually haven't run into this issue when ran through a script outside of the application staying in Pending and not actively showing as properly installed. I've viewed that as an annoyance, but it doesn't really effect anything the way the script is running.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;#!/bin/sh

plistBuddy='/usr/libexec/PlistBuddy'
GPplistFile='/Library/Preferences/com.paloaltonetworks.GlobalProtect.settings.plist'
DownloadLocation = 'https://YourPortal/global-protect/getmsi.esp?version=none&amp;amp;platform=mac'

if [ -f ${GPplistFile} ]
then
	echo "Plist already exists..."
else
	echo "Creating Plist"
	${plistBuddy} -c "print : 'Palo Alto Networks':'GlobalProtect':'PanSetup':'Portal'" ${GPplistFile}
	${plistBuddy} -c "add :'Palo Alto Networks' dict" ${GPplistFile}
	${plistBuddy} -c "add :'Palo Alto Networks':'GlobalProtect' dict" ${GPplistFile}
	${plistBuddy} -c "add :'Palo Alto Networks':'GlobalProtect':'PanSetup' dict" ${GPplistFile}
	${plistBuddy} -c "add :'Palo Alto Networks':'GlobalProtect':'PanSetup':'Portal' string 'YourPortal'" ${GPplistFile}
	${plistBuddy} -c "add :'Palo Alto Networks':'GlobalProtect':'PanSetup':'Prelogon' integer 0" ${GPplistFile}
fi
	
if [ -d "/Applications/GlobalProtect.app" ]
then
	echo "Already installed..."
	exit 0
else
	echo "Preparing..."
	curl -L ${DownloadLocation} &amp;gt; "/tmp/GlobalProtect.pkg"
	echo "Installing..."	
	sudo installer -pkg "/tmp/GlobalProtect.pkg" -target /
	echo "Cleaning..."
	rm "/tmp/GlobalProtect.pkg"
	exit 0
fi&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 06 May 2022 14:28:14 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/485446#M2725</guid>
      <dc:creator>BPry</dc:creator>
      <dc:date>2022-05-06T14:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/509858#M3024</link>
      <description>&lt;P&gt;Has anyone had any luck with this? I am in the exact same situation, I see the app install and popup momentarily and then it uninstalls and disappears. Any help would be great, trying to get GP pushed out to Mac devices asap.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2022 22:59:31 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/509858#M3024</guid>
      <dc:creator>michaeljlee3</dc:creator>
      <dc:date>2022-07-25T22:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/519376#M3378</link>
      <description>&lt;P&gt;This happens in our organization as well. In general, would be really nice if Paloalto could put some more resources to software delivery issues, especially on Intune and Jamf.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 11:45:56 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/519376#M3378</guid>
      <dc:creator>koskihen</dc:creator>
      <dc:date>2022-10-27T11:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/528586#M3638</link>
      <description>&lt;P&gt;I am very surprise this issue hasn't been resolved by Palo Alto.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 16:48:46 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/528586#M3638</guid>
      <dc:creator>SimonPoon</dc:creator>
      <dc:date>2023-01-25T16:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/550509#M4232</link>
      <description>&lt;P&gt;You will need to sign the package with a Developer Installer Certificate before you can deploy with a MDM. Apple is hard up about this and it is not clear at first. Only the owner of your Apple Development Enterprise can generate that Certificate as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 04:59:30 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/550509#M4232</guid>
      <dc:creator>David.Aultz</dc:creator>
      <dc:date>2023-07-22T04:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/567394#M4666</link>
      <description>&lt;P&gt;Do we have any solutions for this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 14:13:57 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/567394#M4666</guid>
      <dc:creator>rnzfr3</dc:creator>
      <dc:date>2023-11-28T14:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/567395#M4667</link>
      <description>&lt;P&gt;Does this have solutions already?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 14:14:22 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/567395#M4667</guid>
      <dc:creator>rnzfr3</dc:creator>
      <dc:date>2023-11-28T14:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/587474#M5374</link>
      <description>&lt;P&gt;Hello folks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, Intune + MacOS is not supported with GlobalProtect, here are the supported MDMs:&amp;nbsp;&lt;A href="https://docs.paloaltonetworks.com/globalprotect/10-1/globalprotect-admin/mobile-endpoint-management/supported-mdm-vendors" target="_blank"&gt;https://docs.paloaltonetworks.com/globalprotect/10-1/globalprotect-admin/mobile-endpoint-management/supported-mdm-vendors&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Mark answer as solution if that solves your doubt&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 22:08:54 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/587474#M5374</guid>
      <dc:creator>jfernandez1</dc:creator>
      <dc:date>2024-05-21T22:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic deployment of GlobalProtect for Mac via Intune</title>
      <link>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/1233735#M6891</link>
      <description>&lt;P&gt;FYI in the meanwhile they added some support (Intune and JAMF)&amp;nbsp;&lt;BR /&gt;&lt;A href="https://docs.paloaltonetworks.com/globalprotect/10-1/globalprotect-admin/mobile-endpoint-management/supported-mdm-vendors" target="_blank"&gt;https://docs.paloaltonetworks.com/globalprotect/10-1/globalprotect-admin/mobile-endpoint-management/supported-mdm-vendors&lt;/A&gt;&lt;BR /&gt;But atm I am still stuck on how to add PANGP to the System Keychain.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 14:28:25 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/globalprotect-discussions/automatic-deployment-of-globalprotect-for-mac-via-intune/m-p/1233735#M6891</guid>
      <dc:creator>B.Ose617428</dc:creator>
      <dc:date>2025-07-10T14:28:25Z</dc:date>
    </item>
  </channel>
</rss>

