<?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 Installing JMP 17 Via powershell to include license in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/662858#M85159</link>
    <description>&lt;P&gt;Hoping someone can help, I am trying to find a script that will install JMP 17 via network drive and also install the SID file and set the per file to a default location.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jul 2023 09:52:12 GMT</pubDate>
    <dc:creator>PoynomialMink80</dc:creator>
    <dc:date>2023-07-27T09:52:12Z</dc:date>
    <item>
      <title>Installing JMP 17 Via powershell to include license</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/662858#M85159</link>
      <description>&lt;P&gt;Hoping someone can help, I am trying to find a script that will install JMP 17 via network drive and also install the SID file and set the per file to a default location.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 09:52:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/662858#M85159</guid>
      <dc:creator>PoynomialMink80</dc:creator>
      <dc:date>2023-07-27T09:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Installing JMP 17 Via powershell to include license</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/662968#M85166</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/48944"&gt;@PoynomialMink80&lt;/a&gt;&amp;nbsp;, you could do this:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Reference &lt;A href="https://community.jmp.com/t5/JMP-Knowledge-Base/Preparing-JMP-to-Use-the-InstallShield-Silent-Installation/ta-p/629862" target="_self"&gt;this link&lt;/A&gt; to build a silent installation of JMP with your preferred preferences&lt;/LI&gt;
&lt;LI&gt;In your script, copy the installation media to a local drive&lt;/LI&gt;
&lt;LI&gt;Run the JMP install, you could include the license in the install and skip the next step but I find the next step makes it easier to renew the license in the future&lt;/LI&gt;
&lt;LI&gt;Copy the license file to the machine and create a preferences file that references a specific license file location&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;#Load the License File
$LicenseFile = $InstallDir+"\jmp.per"
Copy-Item $SourceDir"\jmp.per" $LicenseFile -Force

# Create directories if needed
New-Item -Path $Env:ALLUSERSPROFILE"/SAS" -ItemType Directory -Force
New-Item -Path $Env:ALLUSERSPROFILE"/SAS/JMPPRO" -ItemType Directory -Force
New-Item -Path $Env:ALLUSERSPROFILE"/SAS/JMPPRO/17" -ItemType Directory -Force
$AddinDir = $Env:ALLUSERSPROFILE+"/SAS/JMPPRO/addins"
New-Item -Path $AddinDir -ItemType Directory -Force

# Create preferences file that links to the license file
$fn = $Env:ALLUSERSPROFILE+"/SAS/JMPPRO/17/JMP.PFS"
New-Item -Force $fn
Set-Content $fn "Preferences(
	File Location Settings(
		License File Path( $LicenseFile )
	)
);"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;More info about installing the license and add-ins:&lt;/P&gt;
&lt;P&gt;&lt;LI-MESSAGE title="Anyone manage add-ins using a script or a centralized tool? Maybe a PowerShell script via Microsoft System Center Configuration Manager (SCCM)?" uid="593672" url="https://community.jmp.com/t5/Discussions/Anyone-manage-add-ins-using-a-script-or-a-centralized-tool-Maybe/m-p/593672#U593672" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 14:09:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/662968#M85166</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-07-27T14:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Installing JMP 17 Via powershell to include license</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/663174#M85189</link>
      <description>&lt;P&gt;Many thanks this is what I am looking for. Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 06:42:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/663174#M85189</guid>
      <dc:creator>PoynomialMink80</dc:creator>
      <dc:date>2023-07-28T06:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Installing JMP 17 Via powershell to include license</title>
      <link>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/736836#M91770</link>
      <description>&lt;P&gt;This scirpt is awesome! I'm deploying via intune / powershell and its exactly what I was looking for. One question, how are you updating yearly? Do you just need to delivery a new .per file to the machine and overwrite the old one? JMP's docs indicate a user-interactive procedure vs an ideal silent update.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My thinking is use intune to deliver a new per file and overwrite the old one, which is easy enough, but will JMP notice the new per file? I mean we can tell the users "yeah new per file's already there, just click it and go about your day" but that's less ideal&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 15:57:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Installing-JMP-17-Via-powershell-to-include-license/m-p/736836#M91770</guid>
      <dc:creator>BiasedElk9895</dc:creator>
      <dc:date>2024-03-20T15:57:37Z</dc:date>
    </item>
  </channel>
</rss>

