Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows 10 - how to launch rate and review popup/view?

Tags:

windows-10

uwp

Is there still possible on Universal Windows Platform (UWP) to launch 'rate and review' app windows?

On Win8 the line below worked fine, but it doesn't anymore on Win10

await Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId));

like image 644
tomo Avatar asked Oct 26 '15 08:10

tomo


People also ask

Where is the All Programs menu in Windows 10?

Your apps and programs—right at your fingertips Open File Explorer, Settings, and other apps you use often from the left side of the Start menu. Scroll down the app list to see all apps and programs alphabetically, from A to Xbox.

How do I write a review on the Windows Store?

Open the app. Press the WinKey+I to display the menu and select the Rate and Review option. After the app is installed, open the Store, click the app to open the description page and look for the Write a Review or Feedback link.


1 Answers

You can use the package family name of the APP to launch the rate and review section.

   await Launcher.LaunchUriAsync(new Uri(string.Format("ms-windows-store:REVIEW?PFN={0}", Windows.ApplicationModel.Package.Current.Id.FamilyName)));
like image 138
Bells Avatar answered Oct 21 '22 13:10

Bells