Fix creation of the Thunderbird association
This commit is contained in:
parent
205970f441
commit
4871c66e71
1 changed files with 2 additions and 2 deletions
|
@ -19,13 +19,13 @@ $defaultAssociations.Load($reader);
|
||||||
$reader.Dispose();
|
$reader.Dispose();
|
||||||
|
|
||||||
foreach ($association in $defaultAssociations.SelectNodes("/DefaultAssociations/Association")) {
|
foreach ($association in $defaultAssociations.SelectNodes("/DefaultAssociations/Association")) {
|
||||||
$association.ApplicationName = "Thunderbird";
|
|
||||||
|
|
||||||
switch ($association.Identifier) {
|
switch ($association.Identifier) {
|
||||||
"mailto" {
|
"mailto" {
|
||||||
|
$association.ApplicationName = "Thunderbird";
|
||||||
$association.ProgId = "Thunderbird.Url.mailto";
|
$association.ProgId = "Thunderbird.Url.mailto";
|
||||||
};
|
};
|
||||||
".eml" {
|
".eml" {
|
||||||
|
$association.ApplicationName = "Thunderbird";
|
||||||
$association.ProgId = "ThunderbirdEML";
|
$association.ProgId = "ThunderbirdEML";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue