Skip to Main Content
Patch My PC Ideas & Feedback

A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize requests, please see:

4 VOTE
Status SUBMITTED
Created by S Muzamil
Created on Dec 15, 2025

Application Request: GnuPlot

  • Attach files
  • Andrew Boyd
    Mar 9, 2026

    Hi,

    we would like to see this in PMPC also we currently install via PS Script using the following

    INSTALLER

    $process = "$PSScriptRoot\gp603-win64-mingw.exe"

    Set any required installation file arguments

    $args = ' /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /ALLUSERS'

    Installation

    Start-Process $process -ArgumentList $args -Wait

    UNINSTALLER


    $process = "C:\Program Files\gnuplot\unins000.exe"
    $args = " /VERYSILENT /NORESTART /ALLUSERS"

    Uninstallation

    Start-Process $process -ArgumentList $args -Wait

    Exit


  • +2