Skip to content

Commit

Permalink
Fixes #3704
Browse files Browse the repository at this point in the history
  • Loading branch information
exchange12rocks committed Feb 14, 2024
1 parent 5ebf871 commit e1c3577
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This examples show setting the LAPS password expiration time to a specific date.
### Example 3

```powershell
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (DateTime::Now.AddDays(1))
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective ([DateTime]::Now.AddDays(1))
```

```Output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This examples show setting the LAPS password expiration time to a specific date.
### Example 3

```powershell
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (DateTime::Now.AddDays(1))
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective ([DateTime]::Now.AddDays(1))
```

```Output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This examples show setting the LAPS password expiration time to a specific date.
### Example 3

```powershell
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (DateTime::Now.AddDays(1))
Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective ([DateTime]::Now.AddDays(1))
```

```Output
Expand Down

0 comments on commit e1c3577

Please sign in to comment.