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:
Criteria Used to Prioritize New Applications and Features?
View the Public Roadmap for Patch My PC
http://www.gnuplot.info/
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"
$args = ' /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /ALLUSERS'
Start-Process $process -ArgumentList $args -Wait
UNINSTALLER
$process = "C:\Program Files\gnuplot\unins000.exe"$args = " /VERYSILENT /NORESTART /ALLUSERS"
Exit
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