forked from browserpass/browserpass-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
windows-setup.wxs
34 lines (30 loc) · 2.08 KB
/
windows-setup.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='Browserpass' Id='ABCDDCBA-86C7-4D14-AEC0-86416A69ABDE' UpgradeCode='ABCDDCBA-7349-453F-94F6-BCB5110BA4FD' Language='1033' Codepage='1252' Version='3.1.0' Manufacturer='Browserpass'>
<Package Id='*' Keywords='Installer' Manufacturer='Browserpass' InstallerVersion='200' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
<Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFiles64Folder' Name='PFiles'>
<Directory Id='INSTALLDIR' Name='Browserpass'>
<Component Id='MainExecutable' Guid='ABCDDCBA-83F1-4F22-985B-FDB3C8ABD471'>
<File Id='BrowserpassEXE' Name='browserpass-windows64.exe' Source='browserpass-windows64.exe' KeyPath='yes'/>
<File Id='ChromiumHostJSON' Name='chromium-host.json' Source='browser-files/chromium-host.json' />
<File Id='ChromiumPolicyJSON' Name='chromium-policy.json' Source='browser-files/chromium-policy.json' />
<File Id='FirefoxHostJSON' Name='firefox-host.json' Source='browser-files/firefox-host.json' />
<File Id='ReadmeMD' Name='README.md' Source='README.md' />
<File Id='LICENSE' Name='LICENSE' Source='LICENSE' />
<RegistryKey Id='ChromeNativeMessaging' Root='HKLM' Key='Software\Google\Chrome\NativeMessagingHosts\com.github.browserpass.native' >
<RegistryValue Type='string' Name='' Value='C:\Program Files\Browserpass\chromium-host.json'/>
</RegistryKey>
<RegistryKey Id='FirefoxNativeMessaging' Root='HKLM' Key='Software\Mozilla\NativeMessagingHosts\com.github.browserpass.native' >
<RegistryValue Type='string' Name='' Value='C:\Program Files\Browserpass\firefox-host.json'/>
</RegistryKey>
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id='Complete' Level='1'>
<ComponentRef Id='MainExecutable' />
</Feature>
</Product>
</Wix>