Home
- Details
- Written by: Senka
- Category: Power Shell
- Hits: 1287
$group = Get-AdGroup "Users"
Get-ADUser -Filter {MemberOf -recursivematch $group.DistinguishedName} | select name,samaccountname
- Details
- Written by: Senka
- Category: Power Shell
- Hits: 1370
Import-Module ActiveDirectory
$computers = Get-ADComputer -filter * -Properties * | Select Name,OperatingSystem,OperatingSystemVersion,OperatingSystemServicePack,PrimaryGroup, IPv4Address,IPv6Address,CanonicalName,WhenCreated,LastlogonTimestamp, PasswordLastSet,@{Name="Disabled"; Exp={$_.useraccountcontrol -band 2}}| ?{$_.Disabled -eq 0}
- Details
- Written by: Senka
- Category: Power Shell
- Hits: 1241
Get-Content "filetest.txt" | ForEach-Object {$t1 = get-date -Format hh:mm:ss.fff; $content = Get-ChildItem $_ | Select-Object -First 1 *; $t2 = get-date -Format hh:mm:ss.fff; echo $t1`t$t2`t$_ }
- Details
- Written by: Senka
- Category: Exchange Server
- Hits: 1412
param ($i,$f,$mail)
$match = [regex]::Match($mail,"^([a-z]+\.[a-z]+)@.+$")
$alias = $match.groups[1].value
New-MailContact -ExternalEmailAddress SMTP:$mail -Name "$i $f" -Alias $alias -FirstName "$i" -Initials '' -LastName "$f" -OrganizationalUnit 'Domen/Mail_contacts/OU'
- Details
- Written by: Senka
- Category: Power Shell
- Hits: 1462
Import-Module ActiveDirectory
$date = (Get-Date).AddDays(-90)
$Departments = Get-ADUser -Filter {lastlogontimestamp -gt $date} -property * | Select SamAccountName,Name,CanonicalName,EmailAddress,PasswordLastSet,WhenCreated,PasswordExpired,PasswordNeverExpires,ProfilePath,Department,Title,Manager,@{Name="Disabled"; Exp={$_.useraccountcontrol -band 2}} |?{$_.Disabled -eq 0} | select Department | sort-object Department -Unique