Skip to content

Commit fd9c912

Browse files
authored
Merge pull request #177183 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/azure-docs (branch master)
2 parents f6e569a + 7ccc245 commit fd9c912

File tree

7 files changed

+24
-5
lines changed

7 files changed

+24
-5
lines changed

articles/active-directory/authentication/how-to-authentication-sms-supported-apps.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ SMS-based authentication is available to Microsoft apps integrated with the Micr
3232
| Microsoft Stream || |
3333
| Microsoft Power Apps || |
3434
| Microsoft Azure |||
35+
| Microsoft Authenticator | ||
3536
| Azure Virtual Desktop || |
3637

3738
*_SMS sign-in isn't available for office applications, such as Word, Excel, etc., when accessed directly on the web, but is available when accessed through the [Office 365 web app](https://www.office.com)_

articles/active-directory/authentication/multi-factor-authentication-faq.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,18 @@ sections:
247247
248248
A workaround for this error is to have separate user accounts for admin-related and non-admin operations. Later, you can link mailboxes between your admin account and non-admin account so that you can sign in to Outlook by using your non-admin account. For more details about this solution, learn how to [give an administrator the ability to open and view the contents of a user's mailbox](https://help.outlook.com/141/gg709759.aspx?sl=1).
249249
250+
- question: |
251+
What are the possible reasons why a user fails, with the error code "LsaLogonUser failed with NTSTATUS -1073741715 for MFA Server"?
252+
answer: |
253+
Error 1073741715 = Status Logon Failure -> The attempted logon is invalid. This is due to either a bad username or authentication.
254+
255+
A plausible reason for this error: If the primary credentials entered are correct, there might be a mismatch between the supported NTLM version on the MFA server and the domain controller. MFA Server supports only NTLMv1 (LmCompatabilityLevel=1 thru 4) and not NTLMv2 (LmCompatabilityLevel=5).
256+
250257
additionalContent: |
251258
## Next steps
252259
If your question isn't answered here, the following support options are available:
253260
254261
* Search the [Microsoft Support Knowledge Base](https://support.microsoft.com) for solutions to common technical issues.
255262
* Search for and browse technical questions and answers from the community, or ask your own question in the [Azure Active Directory Q&A](/answers/topics/azure-active-directory.html).
256263
* Contact Microsoft professional through [Azure Multi-Factor Authentication Server support](https://support.microsoft.com/oas/default.aspx?prid=14947). When contacting us, it's helpful if you can include as much information about your issue as possible. Information you can supply includes the page where you saw the error, the specific error code, the specific session ID, and the ID of the user who saw the error.
257-
* If you're a legacy PhoneFactor customer and you have questions or need help with resetting a password, use the [[email protected]](mailto:[email protected]) e-mail address to open a support case.
264+
* If you're a legacy PhoneFactor customer and you have questions or need help with resetting a password, use the [[email protected]](mailto:[email protected]) e-mail address to open a support case.

articles/automation/learn/powershell-runbook-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Remove-AzRoleAssignment `
263263

264264
## Next steps
265265

266-
In this tutorial, you created a [PowerShell runbook](../automation-runbook-types.md#powershell-runbooks) in Azure Automation that used [managed identities](../automation-security-overview.md#managed-identities-preview), rather than the Run As account to interact with resources. For a look at PowerShell workflow runbooks, see:
266+
In this tutorial, you created a [PowerShell runbook](../automation-runbook-types.md#powershell-runbooks) in Azure Automation that used [managed identities](../automation-security-overview.md#managed-identities-preview), rather than the Run As account to interact with resources. For a look at PowerShell Workflow runbooks, see:
267267

268268
> [!div class="nextstepaction"]
269269
> [Tutorial: Create a PowerShell Workflow runbook](automation-tutorial-runbook-textual.md)

articles/iot-edge/how-to-access-host-storage-from-module.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,25 @@ Replace `<HostStoragePath>` and `<ModuleStoragePath>` with your host and module
7171

7272
For example, on a Linux system, `"Binds":["/etc/iotedge/storage/:/iotedge/storage/"]` means the directory **/etc/iotedge/storage** on your host system is mapped to the directory **/iotedge/storage/** in the container. On a Windows system, as another example, `"Binds":["C:\\temp:C:\\contemp"]` means the directory **C:\\temp** on your host system is mapped to the directory **C:\\contemp** in the container.
7373

74-
Additionally, on Linux devices, make sure that the user profile for your module has the required read, write, and execute permissions to the host system directory. Returning to the earlier example of enabling IoT Edge hub to store messages in your device's local storage, you need to grant permissions to its user profile, UID 1000. (The IoT Edge agent operates as root, so it doesn't need additional permissions.) There are several ways to manage directory permissions on Linux systems, including using `chown` to change the directory owner and then `chmod` to change the permissions, such as:
74+
You can find more details about create options from [docker docs](https://docs.docker.com/engine/api/v1.32/#operation/ContainerCreate).
75+
76+
## Host system permissions
77+
78+
On Linux devices, make sure that the user profile for your module has the required read, write, and execute permissions to the host system directory. Returning to the earlier example of enabling IoT Edge hub to store messages in your device's local storage, you need to grant permissions to its user profile, UID 1000. There are several ways to manage directory permissions on Linux systems, including using `chown` to change the directory owner and then `chmod` to change the permissions, such as:
7579

7680
```bash
7781
sudo chown 1000 <HostStoragePath>
7882
sudo chmod 700 <HostStoragePath>
7983
```
8084

81-
You can find more details about create options from [docker docs](https://docs.docker.com/engine/api/v1.32/#operation/ContainerCreate).
85+
On Windows devices, you will also need to configure permissions on the host system directory. You can use PowerShell to set permissions:
86+
87+
```powershell
88+
$acl = get-acl <HostStoragePath>
89+
$ace = new-object system.security.AccessControl.FileSystemAccessRule('Authenticated Users','FullControl','Allow')
90+
$acl.AddAccessRule($ace)
91+
$acl | Set-Acl
92+
```
8293

8394
## Encrypted data in module storage
8495

-8.2 KB
Loading
2.34 KB
Loading

articles/logic-apps/send-related-messages-sequential-convoy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ This [**Until** loop](../logic-apps/logic-apps-control-flow-loops.md#until-loop)
288288

289289
* Check whether the `isDone` variable is set to `true`.
290290

291-
* If `isDone` is not set to `true`, the workflow is still processing messages, so the workflow renews the lock on the session in the queue, and checks the loop condition again.
291+
* If `isDone` is set to `true`, the workflow is still processing messages, so the workflow renews the lock on the session in the queue, and checks the loop condition again.
292292

293293
You need to provide the name for your Service Bus queue in the Service Bus action, [**Renew lock on the session in a queue**](#renew-lock-on-session).
294294

0 commit comments

Comments
 (0)