2017-09-19 19:50:38 +02:00
# Monero GUI Wallet Windows Installer #
2017-06-11 08:28:54 +02:00
2018-01-07 06:20:45 +01:00
Copyright (c) 2014-2018, The Monero Project
2017-06-11 08:28:54 +02:00
## Introduction ##
2017-09-19 19:50:38 +02:00
This is a *Inno Setup* script `Monero.iss` plus some related files
that allows you to build a standalone Windows installer (.exe) for
the GUI wallet that comes with the Helium Hydra release of Monero.
2017-06-11 08:28:54 +02:00
2017-09-19 19:50:38 +02:00
This turns the GUI wallet into a more or less standard Windows program,
2017-06-11 08:28:54 +02:00
by default installed into a subdirectory of `C:\Program Files` , a
program group with some icons in the *Start* menu, and automatic
2017-09-19 19:50:38 +02:00
uninstall support. It helps lowering the "barrier to entry"
somewhat, especially for less technically experienced users of
Monero.
2017-06-11 08:28:54 +02:00
As the setup script in file [Monero.iss ](Monero.iss ) has to list every
2017-09-19 19:50:38 +02:00
single file of the GUI wallet package to install by name,
this version of the script only works with exactly the GUI wallet
for Monero release *Helium Hydra* that you find on
2017-06-11 08:28:54 +02:00
[the official download page ](https://getmonero.org/downloads/ ).
2017-09-19 19:50:38 +02:00
But of course it will be easy to modify the script for future
versions of the GUI wallet.
2017-06-11 08:28:54 +02:00
## License ##
See [LICENSE ](LICENSE ).
## Building ##
2017-09-19 19:50:38 +02:00
You can only build on Windows, and the result is always a
Windows .exe file that can act as a standalone installer for the
Helium Hydra GUI wallet.
2017-06-11 08:28:54 +02:00
The build steps in detail:
1. Install *Inno Setup* . You can get it from [here ](http://www.jrsoftware.org/isdl.php )
2017-09-19 19:50:38 +02:00
2. Get the Inno Setup script plus related files by cloning the whole [monero-core GitHub repository ](https://github.com/monero-project/monero-core ); you will only need the files in the installer directory `installers\windows` however
2017-10-23 19:58:14 +02:00
3. The setup script is written to take the GUI wallet files from a subdirectory named `bin` ; so create `installers\windows\bin` , get the zip file of the GUI wallet from [here ](https://getmonero.org/downloads/ ), unpack it somewhere, and copy all the files and subdirectories in the `monero-gui-0.11.1.0` directory to this `bin` subdirectory
2017-09-19 19:50:38 +02:00
4. Start Inno Setup, load `Monero.iss` and compile it
2017-06-11 08:28:54 +02:00
5. The result i.e. the finished installer will be the file `mysetup.exe` in the `installers\windows\Output` subdirectory