Skip to content

Commit

Permalink
Fix invalid characters
Browse files Browse the repository at this point in the history
  • Loading branch information
EivindLokseth committed Jul 19, 2018
1 parent 88db762 commit fddf72b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Publish-BiztalkBtdfApplication.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -334,12 +334,12 @@ function Get-AppUninstallCommand(){
[string]$appDisplayName
)
$app = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\** | Where-Object {
$_.DisplayName -like “$appDisplayName*”
$_.DisplayName -like "$appDisplayName*"
}

if ($app -eq $null){
$app = Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\** | Where-Object {
$_.DisplayName -like “$appDisplayName*”
$_.DisplayName -like "$appDisplayName*"
}
}

Expand Down

0 comments on commit fddf72b

Please sign in to comment.