#You can add more groups by adding names and values like below.
$PoliCys = @{"PassWordPolicyGroup1"="90";"PassWordPolicyGroup2"="120"}
#If not in the groups above, the default password experiation policy is used
$DefaultP = 180
#Show popup if possible experation is going below the following day count
$WarnDays = 14
$Searcher = [adsisearcher]::new()
$Searcher.Filter="SamAccountName=$($env:USERNAME)"
$object = $Searcher.FindOne().Properties
$Properties = @{
"Name" = $Object.name -as [string]
"PWLastSet" = $([datetime]::fromfiletime($object.pwdlastset[0]))
"MemberOf" = $Object.memberof
"CurrDate" = $(get-date)
}
# Output the info
$a = New-Object -TypeName PSObject -Property $Properties
$i = $null
$PoliCys.getEnumerator() | foreach {
If($a.MemberOf -match $_.name ){
$PopupSet = 1
$DaysLastPWSet = $a.CurrDate - $a.PWLastSet
$DaysLeft = $_.Value - $DaysLastPWSet.Days
$popuptext = "Your windows password will expire in about $Daysleft days. On $($a.PWLastSet.AddDays($_.Value)). `n`nUse CTRL + ALT + DEL and select 'Change Password... `n "
If($i -eq 1) {
$wshell = New-Object -ComObject Wscript.Shell
$wshell.Popup("More than one password Policys detected, ask the IT Helpdesk for more Info.",0,"Change WindowsPassword",0x1)
}
If($DaysLeft -le $WarnDays -and $i -ne 1){
$wshell = New-Object -ComObject Wscript.Shell
$wshell.Popup($popuptext,0,"Change WindowsPassword",0x1)
$i = 1
}
}
}
If(!$PopupSet){
$DaysLastPWSet = $a.CurrDate - $a.PWLastSet
$DaysLeft = $DefaultP - $DaysLastPWSet.Days
$popuptext = "Your windows password will expire in about $Daysleft days. On $($a.PWLastSet.AddDays($_.Value)). `n`nUse CTRL + ALT + DEL and select 'Change Password... `n "
If($DaysLeft -le $WarnDays -and $i -ne 1){
$wshell = New-Object -ComObject Wscript.Shell
$wshell.Popup($popuptext,0,"Change WindowsPassword",0x1)
$i = 1
}
}