tkel
tkel

Reputation: 11

Silent Install of Haskell Platform

I'm trying to deploy Haskell platform to 3 University labs. Although the installer is only 90mb the extracted Haskell is almost 1gb. I've repackaged, but its still too big. Are there any command line arguments that can be used with HaskellPlatform-2011.2.0.1-setup.exe so I can script the install?

Thanks

Upvotes: 1

Views: 865

Answers (1)

Lambda Fairy
Lambda Fairy

Reputation: 14724

According to the Windows Haskell Platform page, the installer uses NSIS.

From the NSIS documentation:

  • /S runs the installer silently
  • /D=foo sets the installation directory
  • /NCRC disables the CRC check

Upvotes: 5

Related Questions