Skip to content

Commit c650f67

Browse files
authored
PR review edit
1 parent abc2ad6 commit c650f67

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/active-directory/develop/scenario-desktop-acquire-token-wam.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,19 +155,19 @@ One solution is to not run the app as elevated, if possible. Another solution is
155155

156156
### "WAM Account Picker did not return an account" error message
157157

158-
This indicates that either the end-user of the application closed the dialog which displays accounts, or that the dialog itself crashed. A crash can occur if the AccountsControl, a Windows control, is badly registered in Windows. To repair this component, follow these steps:
158+
This message indicates that either the application user closed the dialog that displays accounts, or the dialog itself crashed. A crash might occur if AccountsControl, a Windows control, is registered incorrectly in Windows. To resolve this issue:
159159

160-
1. Right-click the Windows icon in your task bar, and then select Windows PowerShell (Admin).
161-
1. If you're prompted by a User Account Control (UAC) window, select Yes to start PowerShell.
162-
1. Copy and execute the followin script
160+
1. In the taskbar, right-click **Start**, and then select **Windows PowerShell (Admin)**.
161+
1. If you're prompted by a User Account Control (UAC) dialog, select **Yes** to start PowerShell.
162+
1. Copy and then run the following script:
163163

164-
```powershell
165-
if (-not (Get-AppxPackage Microsoft.AccountsControl)) { Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AccountsControl_cw5n1h2txyewy\AppxManifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown } Get-AppxPackage Microsoft.AccountsControl
166-
```
164+
```powershell
165+
if (-not (Get-AppxPackage Microsoft.AccountsControl)) { Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AccountsControl_cw5n1h2txyewy\AppxManifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown } Get-AppxPackage Microsoft.AccountsControl
166+
```
167167

168168
### Connection issues
169169

170-
The end-user of the application is displayed an error message along the lines of "Please check your connection and try again". If this issue occurs regularly, please [see the troubleshooting guide for Office](https://docs.microsoft.com/en-us/office365/troubleshoot/authentication/connection-issue-when-sign-in-office-2016), which also uses WAM.
170+
The application user sees an error message similar to "Please check your connection and try again". If this issue occurs regularly, see the [troubleshooting guide for Office](/office365/troubleshoot/authentication/connection-issue-when-sign-in-office-2016), which also uses WAM.
171171

172172
## Sample
173173

0 commit comments

Comments
 (0)