I have build a setup via WIX that installs the font HKGrotesk on the C:/windows/fonts folder. When I execute the setup all is fine and the font is installed.
<Directory Id="..." Name="HK">
<Component Id="..." Guid="...">
<File Id="..." Source="(...)\fonts\HK\HKGrotesk-Black.otf" TrueType="yes" />
</Component>
</DirectoryRef>
The problem is when I try to delete the installation files. I get a message that says that my HKGrotesk-Black.otf is open in System.
How can I have my installation working and be able to delete the font file from my installation files folder?