How would I check, in PowerShell, if a specific Windows Store App is installed?
Specifically, I need to test whether the Microsoft "Terminal" app is currently installed.
Thanks. My understanding of .appx packages is very primitive. I've now used if ((Get-AppPackage).Name -like "*Terminal*") { <do-stuff> } and that seems ok (unless you have a more efficient syntax?).
Get-AppPackage?.appxpackages is very primitive. I've now usedif ((Get-AppPackage).Name -like "*Terminal*") { <do-stuff> }and that seems ok (unless you have a more efficient syntax?).