Skip to content

Commit a2abadb

Browse files
authored
Merge version 1.2 into main (#11)
1 parent ef9ba84 commit a2abadb

File tree

4 files changed

+120
-33
lines changed

4 files changed

+120
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The user who uses the tool needs the following permissions:
5252
### Limitations
5353
- Currently search works only in computer's domain. ([#3](https://github.com/htcfreek/SimpleLapsGui/issues/3))
5454
- Requires an Active Directory joined machine to work properly.
55-
- Azure AD is not supported.
55+
- Microsoft Entra ID (Azure AD) is not supported.
5656

5757
## FAQ
5858

src/DummyData.ps1

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
1-
$pwds = @([pscustomobject] @{
2-
ComputerName = "test-pc"
3-
Password = "MySmallTestPassword#"
4-
PasswordUpdateTime = [datetime]::Now
5-
ExpirationTimestamp = [datetime]::Now
6-
})
7-
$pwds += [pscustomobject] @{
8-
ComputerName = "test-pc"
9-
Password = "MyHistoryTestPasswordWithManyCharacters#"
10-
PasswordUpdateTime = [datetime]::Parse("22.04.2023 10:40:56")
11-
ExpirationTimestamp = $null
12-
}
13-
$pwds += [pscustomobject] @{
14-
ComputerName = "test-pc"
15-
Password = "MyHistoryTestPassword#"
16-
PasswordUpdateTime = [datetime]::Parse("23.03.2023 10:10:23")
17-
ExpirationTimestamp = $null
18-
}
1+
$pwds = @([pscustomobject] @{
2+
ComputerName = "test-pc"
3+
Password = "MySmallTestPassword#"
4+
PasswordUpdateTime = [datetime]::Now
5+
ExpirationTimestamp = [datetime]::Now
6+
})
7+
$pwds += [pscustomobject] @{
8+
ComputerName = "test-pc"
9+
Password = "MyHistoryTestPasswordWithManyCharacters#"
10+
PasswordUpdateTime = [datetime]::Parse("22.04.2026 10:40:56")
11+
ExpirationTimestamp = $null
12+
}
13+
$pwds += [pscustomobject] @{
14+
ComputerName = "test-pc"
15+
Password = "MyHistoryTestPassword#"
16+
PasswordUpdateTime = [datetime]::Parse("23.03.2025 10:10:23")
17+
ExpirationTimestamp = $null
18+
}
19+
$pwds += @([pscustomobject] @{
20+
ComputerName = "test-pc"
21+
Password = $null
22+
PasswordUpdateTime = [datetime]::Parse("23.03.2000 10:10:23")
23+
ExpirationTimestamp = $null
24+
})

src/PS1Wrapper.au3

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#AutoIt3Wrapper_Outfile_x64=..\Release\SimpleLapsGui.exe
55
#AutoIt3Wrapper_UseX64=y
66
#AutoIt3Wrapper_Res_Description=Simple gui script for LAPS.
7-
#AutoIt3Wrapper_Res_Fileversion=1.1
7+
#AutoIt3Wrapper_Res_Fileversion=1.2
88
#AutoIt3Wrapper_Res_ProductName=Simple LAPS GUI
9-
#AutoIt3Wrapper_Res_ProductVersion=1.1
9+
#AutoIt3Wrapper_Res_ProductVersion=1.2
1010
#AutoIt3Wrapper_Res_CompanyName=htcfreek (Heiko Horwedel)
1111
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
1212
#cs ----------------------------------------------------------------------------

src/SimpleLapsGui.ps1

Lines changed: 93 additions & 12 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)