-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind-Win10RollOutInfo.ps1
42 lines (34 loc) · 1.52 KB
/
Find-Win10RollOutInfo.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Function Find-Win10RollOutInfo {
[CmdletBinding()]
Param (
[ValidateSet("EmployeeID", "EmployeeName")]
[Parameter(Mandatory=$True,
HelpMessage="Enter the user's employee id.")]
[String]$SearchBy,
[Parameter(Mandatory=$False)]
[String]$EmployeeID,
[Parameter(Mandatory=$False)]
[String]$EmployeeName
)
if($SearchBy -eq "EmployeeID") {
$IDDN = Get-ADUser -Identity $EmployeeID -Properties *
Get-ADComputer -Filter "Description -Like '*$($IDDN.Displayname)*'" -Properties * |
Select Description, Name, DistinguishedName, IPv4Address, msDS-AuthenticatedAtDC, LastLogonDate -outvariable adcomputer | out-null
foreach ($computer in $adcomputer.name) {
Get-ADComputer -identity $computer -Properties * |
Select Description, Name, DistinguishedName, IPv4Address, msDS-AuthenticatedAtDC, LastLogonDate -outvariable adcomputer2 | out-null
$props = @{'Name'="$($IDDN.displayname)";
'Department'="$($iddn.department)";
'ComputerName'=$($adcomputer2.Name);
'IPAddress'=$($adcomputer2.IPv4Address);
'Description'=$($adcomputer2.description);
}
$obj = New-Object -TypeName psobject -property $props
Write-output $obj
}
}
if ($Searchby -eq 'EmployeeName') {
Get-AdComputer -Filter "Description -like '*$EmployeeName*'" -Properties * |
Select Description, DNSHostname, DistingushedName, Ipv4Address, msDS-AuthenticatedatDC, LastlogonDate
}
}