mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-16 20:48:07 +08:00
35 lines
2.0 KiB
Plaintext
35 lines
2.0 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
||
|
xmlns:Fire="http://schemas.microsoft.com/wix/FirewallExtension"
|
||
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||
|
|
||
|
<?include $(sys.CURRENTDIR)\Common.wxi?>
|
||
|
|
||
|
<?define MouseWithoutBordersFiles=?>
|
||
|
<?define MouseWithoutBordersFilesPath=$(var.BinDir)modules\$(var.MouseWithoutBordersProjectName)\?>
|
||
|
|
||
|
<Fragment>
|
||
|
<DirectoryRef Id="MouseWithoutBordersInstallFolder" FileSource="$(var.BinDir)modules\$(var.MouseWithoutBordersProjectName)">
|
||
|
<!-- Generated by generateFileComponents.ps1 -->
|
||
|
<!--MouseWithoutBordersFiles_Component_Def-->
|
||
|
</DirectoryRef>
|
||
|
|
||
|
<ComponentGroup Id="MouseWithoutBordersComponentGroup">
|
||
|
<Component Id="RemoveMouseWithoutBordersFolder" Guid="303F02A7-7E90-486F-8558-BB1A1BEC39E1" Directory="MouseWithoutBordersInstallFolder" >
|
||
|
<RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components">
|
||
|
<RegistryValue Type="string" Name="RemoveMouseWithoutBordersFolder" Value="" KeyPath="yes"/>
|
||
|
</RegistryKey>
|
||
|
<RemoveFolder Id="RemoveFolderMouseWithoutBordersFolder" Directory="MouseWithoutBordersInstallFolder" On="uninstall"/>
|
||
|
</Component>
|
||
|
<Component Id="MouseWithoutBordersFirewallComponent" Directory="MouseWithoutBordersInstallFolder" 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="[#MouseWithoutBordersFiles_File_PowerToys.MouseWithoutBorders.exe]" />
|
||
|
</Component>
|
||
|
</ComponentGroup>
|
||
|
|
||
|
</Fragment>
|
||
|
</Wix>
|