From: David B. <dav...@gm...> - 2010-09-22 20:36:52
|
Hi Daniel, > Digging around the Git repository for TuxMath, it looks like it > might use NSIS (which it looks like Tux Paint used to use, until > late 2005). It looks like NSIS has a "/S" (for silent) option. Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the NSIS docs, it looks like NSIS itself has support for silent install, but our use of NSIS doesn't support it because our simple NSIS setup doesn't provide defaults for the user selections. So for now, I'm afraid tuxmath isn't set up for scripted install, but it is definitely something we can put in our next release (which btw is getting long overdue). Best, David Bruce |
From: Brendan L. <bm...@ri...> - 2010-09-22 23:09:20
|
Hi folks, > > Digging around the Git repository for TuxMath, it looks like it > might use NSIS (which it looks like Tux Paint used to use, until > > late 2005). It looks like NSIS has a "/S" (for silent) option. > > Hmm, What does Tux Paint use now? > Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the > NSIS docs, it looks like NSIS itself has support for silent install, > but our use of NSIS doesn't support it because our simple NSIS setup > doesn't provide defaults for the user selections. > > So for now, I'm afraid tuxmath isn't set up for scripted install, but > it is definitely something we can put in our next release (which btw > is getting long overdue). > > One of these days, I'll squeeze a couple of hours in to get the ball rolling. =P Is this for a school deployment, or something else? -Brendan |
From: Bill K. <nb...@so...> - 2010-09-22 23:29:20
|
On Wed, Sep 22, 2010 at 07:09:14PM -0400, Brendan Luchen wrote: > Hi folks, > > > > Digging around the Git repository for TuxMath, it looks like it > > > might use NSIS (which it looks like Tux Paint used to use, until > > late 2005). It looks like NSIS has a "/S" (for silent) option. > > Hmm, What does Tux Paint use now? David pulled the conversation onto the tuxmath list, so sorry the context was missing. Tux Paint uses InnoSetup these days. And apparently it works well with the "/SILENT" switch for these folks. <snip> > Is this for a school deployment, or something else? I believe it is, yes. -- -bill! Sent from my computer |
From: Baker, D. <db...@vu...> - 2010-09-22 23:12:42
|
This is for a school deployment. Daniel Baker Micro Computer Technician I, Technological Services Visalia Unified School District Tel: 559-730-7627 From: che...@gm... [mailto:che...@gm...] On Behalf Of Brendan Luchen Sent: Wednesday, September 22, 2010 4:09 PM To: David Bruce Cc: Bill Kendrick; Tux Math; John Popplewell; Baker, Daniel Subject: Re: [Tuxmath-devel] TuxMath [script install on Windows?] Hi folks, > Digging around the Git repository for TuxMath, it looks like it > might use NSIS (which it looks like Tux Paint used to use, until > late 2005). It looks like NSIS has a "/S" (for silent) option. Hmm, What does Tux Paint use now? Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the NSIS docs, it looks like NSIS itself has support for silent install, but our use of NSIS doesn't support it because our simple NSIS setup doesn't provide defaults for the user selections. So for now, I'm afraid tuxmath isn't set up for scripted install, but it is definitely something we can put in our next release (which btw is getting long overdue). One of these days, I'll squeeze a couple of hours in to get the ball rolling. =P Is this for a school deployment, or something else? -Brendan |
From: David B. <dav...@gm...> - 2010-09-23 13:59:57
|
Hi Daniel, > Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the > NSIS docs, it looks like NSIS itself has support for silent install, > but our use of NSIS doesn't support it because our simple NSIS setup > doesn't provide defaults for the user selections. I take that back - it looks like we do support it after all, looking at our actual NSIS-related code. We only use the built-in dialogs, and NSIS provides defaults for those. I tested a command-line silent install on a windows XP system, and it worked fine: tuxmath-1.7.2-win32-installer.exe /S If you need to be able to pass arguments (e.g. install location), AFAICT we don't support that, but it seems that a basic silent install with the defaults can be done from the command line already. Best, David Bruce |
From: Baker, D. <db...@vu...> - 2010-09-23 14:59:03
|
David, Thank you, I tested it as well and it worked great, I tired with a lowercase "s" but is has to be capital. Daniel Baker Micro Computer Technician I, Technological Services Visalia Unified School District Tel: 559-730-7627 -----Original Message----- From: David Bruce [mailto:dav...@gm...] Sent: Thursday, September 23, 2010 7:00 AM To: Bill Kendrick Cc: Baker, Daniel; John Popplewell; Tux Math Subject: Re: TuxMath [script install on Windows?] Hi Daniel, > Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the > NSIS docs, it looks like NSIS itself has support for silent install, > but our use of NSIS doesn't support it because our simple NSIS setup > doesn't provide defaults for the user selections. I take that back - it looks like we do support it after all, looking at our actual NSIS-related code. We only use the built-in dialogs, and NSIS provides defaults for those. I tested a command-line silent install on a windows XP system, and it worked fine: tuxmath-1.7.2-win32-installer.exe /S If you need to be able to pass arguments (e.g. install location), AFAICT we don't support that, but it seems that a basic silent install with the defaults can be done from the command line already. Best, David Bruce |
From: Baker, D. <db...@vu...> - 2010-09-22 20:55:21
|
Thanks guys, I really appreciate the feedback and look forward to any new releases you guys put out, the kids and teachers love your software, and I will continue to use and recommend your products in the future. Daniel Baker Micro Computer Technician I, Technological Services Visalia Unified School District Tel: 559-730-7627 -----Original Message----- From: David Bruce [mailto:dav...@gm...] Sent: Wednesday, September 22, 2010 1:37 PM To: Bill Kendrick Cc: Baker, Daniel; John Popplewell; Tux Math Subject: Re: TuxMath [script install on Windows?] Hi Daniel, > Digging around the Git repository for TuxMath, it looks like it might > use NSIS (which it looks like Tux Paint used to use, until late 2005). > It looks like NSIS has a "/S" (for silent) option. Yes, TuxMath (and Tux Typing) uses NSIS. Looking briefly through the NSIS docs, it looks like NSIS itself has support for silent install, but our use of NSIS doesn't support it because our simple NSIS setup doesn't provide defaults for the user selections. So for now, I'm afraid tuxmath isn't set up for scripted install, but it is definitely something we can put in our next release (which btw is getting long overdue). Best, David Bruce |