mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
18 lines
972 B
Plaintext
18 lines
972 B
Plaintext
|
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:Fire="http://wixtoolset.org/schemas/v4/wxs/firewall">
|
||
|
|
|
||
|
|
<?include $(sys.CURRENTDIR)\Common.wxi?>
|
||
|
|
|
||
|
|
<Fragment>
|
||
|
|
<ComponentGroup Id="MouseWithoutBordersComponentGroup">
|
||
|
|
<Component Id="MouseWithoutBordersFirewallComponent" Directory="INSTALLFOLDER" Guid="FEA59459-EC0E-4636-8E76-4C168235982B">
|
||
|
|
<RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components">
|
||
|
|
<RegistryValue Type="string" Name="MouseWithoutBordersFirewall_Component" Value="" KeyPath="yes" />
|
||
|
|
</RegistryKey>
|
||
|
|
<!-- The program name used here will be generated by generateFileComponents.ps1 -->
|
||
|
|
<Fire:FirewallException Id="MouseWithoutBordersFirewallException1" Name="PowerToys.MouseWithoutBorders" Scope="localSubnet" IgnoreFailure="yes" Program="[#BaseApplicationsFiles_File_PowerToys.MouseWithoutBorders.exe]" />
|
||
|
|
</Component>
|
||
|
|
</ComponentGroup>
|
||
|
|
|
||
|
|
</Fragment>
|
||
|
|
</Wix>
|