From 7f5da6c9cc402ee8ddd31a71bd461fe81259c2e5 Mon Sep 17 00:00:00 2001 From: Nikos Minogiannis Date: Fri, 29 Jul 2016 17:03:11 +0300 Subject: [PATCH] Autostart properties --- README.md | 1 + setup/Product.wxs | 62 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 62 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a5ee809..f95fe48 100644 --- a/README.md +++ b/README.md @@ -61,5 +61,6 @@ The list of possible properties include: | GPII_SHORTCUTS
GPII_DESKTOP_SHORTCUTS
GPII_START_MENU_SHORTCUTS | `0` or `1` **(Default)** | Whether or not to create shortcuts for the main GPII platform | | USB_LISTENER_SHORTCUTS
USB_LISTENER_DESKTOP_SHORTCUTS
USB_LISTENER_START_MENU_SHORTCUTS | `0` or `1` **(Default)** | Whether or not to create shortcuts for the USB Listener | | RFID_LISTENER_SHORTCUTS
RFID_LISTENER_DESKTOP_SHORTCUTS
RFID_LISTENER_START_MENU_SHORTCUTS | `0` or `1` **(Default)** | Whether or not to create shortcuts for the RFID Listener | +| GPII_AUTOSTART
RFID_LISTENER_AUTOSTART
USB_LISTENER_AUTOSTART | `0` **(Default)** or `1` | Whether or not to autostart the respective component on Windows sign in | An exhaustive list of other properties can be found at the [Windows Installer Guide](https://msdn.microsoft.com/en-us/library/windows/desktop/aa370905(v=vs.85).aspx). \ No newline at end of file diff --git a/setup/Product.wxs b/setup/Product.wxs index 63ef461..beb8aa4 100644 --- a/setup/Product.wxs +++ b/setup/Product.wxs @@ -31,20 +31,24 @@ + + + + @@ -54,12 +58,14 @@ + + @@ -186,7 +192,60 @@ /> - + + + + GPII_AUTOSTART="1" + + + + + + USB_LISTENER_AUTOSTART="1" + + + + + RFID_LISTENER_AUTOSTART="1" + + + + + + \ No newline at end of file