Why does winapps.InstalledApplication return an installed_location of None for Edge?

213 views Asked by At

I'm trying to extract file location using winapps but the result is always None

 from winapps import *
 name="Microsoft Edge"
 cc=InstalledApplication(name)
 vv=cc.install_location
 print(vv)
0

There are 0 answers