Skip to content

Commit 16a0b20

Browse files
authored
Update batch-user-accounts.md
1 parent 520ee27 commit 16a0b20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/batch/batch-user-accounts.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Run tasks under user accounts
33
description: Learn the types of user accounts and how to configure them.
44
ms.topic: how-to
5-
ms.date: 05/16/2023
5+
ms.date: 08/27/2024
66
ms.custom:
77
ms.devlang: csharp
88
# ms.devlang: csharp, java, python
@@ -159,8 +159,8 @@ pool = batchClient.PoolOperations.CreatePool(
159159
// Add named user accounts.
160160
pool.UserAccounts = new List<UserAccount>
161161
{
162-
new UserAccount("adminUser", "xyz123", ElevationLevel.Admin),
163-
new UserAccount("nonAdminUser", "123xyz", ElevationLevel.NonAdmin),
162+
new UserAccount("adminUser", "******", ElevationLevel.Admin),
163+
new UserAccount("nonAdminUser", "******", ElevationLevel.NonAdmin),
164164
};
165165

166166
// Commit the pool.
@@ -208,7 +208,7 @@ pool.UserAccounts = new List<UserAccount>
208208
{
209209
new UserAccount(
210210
name: "adminUser",
211-
password: "xyz123",
211+
password: "******",
212212
elevationLevel: ElevationLevel.Admin,
213213
linuxUserConfiguration: new LinuxUserConfiguration(
214214
uid: 12345,
@@ -217,7 +217,7 @@ pool.UserAccounts = new List<UserAccount>
217217
)),
218218
new UserAccount(
219219
name: "nonAdminUser",
220-
password: "123xyz",
220+
password: "******",
221221
elevationLevel: ElevationLevel.NonAdmin,
222222
linuxUserConfiguration: new LinuxUserConfiguration(
223223
uid: 45678,

0 commit comments

Comments
 (0)