2023-01-23 22:59:18 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
|
|
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" >
|
|
|
|
|
|
|
|
<?include $(sys.CURRENTDIR)\Common.wxi?>
|
|
|
|
|
|
|
|
<Fragment>
|
2023-07-20 07:12:46 +08:00
|
|
|
<DirectoryRef Id="INSTALLFOLDER" FileSource="$(var.BinDir)">
|
2023-01-23 22:59:18 +08:00
|
|
|
<!-- !Warning! Make sure to change Component Guid if you update the file list -->
|
2023-03-31 18:23:57 +08:00
|
|
|
<Component Id="Module_VideoConference" Guid="CCE30DCC-AC6B-4A2D-9BD8-2E9598E5B785" Win64="yes">
|
2023-01-23 22:59:18 +08:00
|
|
|
<Condition>WINDOWSBUILDNUMBER >= 19041</Condition>
|
2023-03-31 18:23:57 +08:00
|
|
|
<RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components">
|
|
|
|
<RegistryValue Type="string" Name="Module_VideoConference" Value="" KeyPath="yes"/>
|
|
|
|
</RegistryKey>
|
2023-07-20 07:12:46 +08:00
|
|
|
<File Source="$(var.BinX32Dir)PowerToys.VideoConferenceProxyFilter_x86.dll" />
|
2023-01-23 22:59:18 +08:00
|
|
|
</Component>
|
|
|
|
</DirectoryRef>
|
2023-07-20 07:12:46 +08:00
|
|
|
<DirectoryRef Id="BaseApplicationsAssetsFolder">
|
|
|
|
<Directory Id="VideoConferenceAssetsFolder" Name="VCM"/>
|
|
|
|
</DirectoryRef>
|
|
|
|
<DirectoryRef Id="VideoConferenceAssetsFolder" FileSource="$(var.BinDir)\Assets\VCM">
|
2023-01-23 22:59:18 +08:00
|
|
|
<!-- !Warning! Make sure to change Component Guid if you update the file list -->
|
2023-03-31 18:23:57 +08:00
|
|
|
<Component Id="Module_VideoConferenceIcons" Guid="E78339BF-58D8-48F2-A1C3-E1C3DC72DCAE" Win64="yes">
|
2023-01-23 22:59:18 +08:00
|
|
|
<Condition>WINDOWSBUILDNUMBER >= 19041</Condition>
|
2023-03-31 18:23:57 +08:00
|
|
|
<RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components">
|
|
|
|
<RegistryValue Type="string" Name="Module_VideoConferenceIcons" Value="" KeyPath="yes"/>
|
|
|
|
</RegistryKey>
|
2023-07-20 07:12:46 +08:00
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-NotInUse Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-NotInUse Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-Off Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-Off Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-On Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\Off-On Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-NotInUse Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-NotInUse Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-Off Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-Off Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-On Dark.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\On-On Light.png" />
|
|
|
|
<File Source="$(var.BinDir)Assets\VCM\black.bmp" />
|
2023-01-23 22:59:18 +08:00
|
|
|
</Component>
|
|
|
|
</DirectoryRef>
|
|
|
|
|
2023-03-31 18:23:57 +08:00
|
|
|
<ComponentGroup Id="VideoConferenceComponentGroup">
|
2023-07-20 07:12:46 +08:00
|
|
|
<Component Id="RemoveVideoConferenceFolder" Guid="C6F2BE3D-FDE3-4CDB-BB51-A43E1B7B1606" Directory="INSTALLFOLDER" >
|
2023-03-31 18:23:57 +08:00
|
|
|
<RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components">
|
|
|
|
<RegistryValue Type="string" Name="RemoveVideoConferenceFolder" Value="" KeyPath="yes"/>
|
|
|
|
</RegistryKey>
|
2023-07-20 07:12:46 +08:00
|
|
|
<RemoveFolder Id="RemoveFolderVideoConferenceAssetsFolder" Directory="VideoConferenceAssetsFolder" On="uninstall"/>
|
2023-03-31 18:23:57 +08:00
|
|
|
</Component>
|
2023-01-23 22:59:18 +08:00
|
|
|
<ComponentRef Id="Module_VideoConference" />
|
|
|
|
<ComponentRef Id="Module_VideoConferenceIcons" />
|
|
|
|
</ComponentGroup>
|
|
|
|
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|