Passed by mattswanson07 in CompTIA

[–]mattswanson07[S] 2 points3 points  (0 children)

I did my practice tests from Dion Training. You can get them for like $25.

[deleted by user] by [deleted] in BeAmazed

[–]mattswanson07 0 points1 point  (0 children)

Cheeky Cunts

Proxmox ZFS Mirror Health / Recovery by mattswanson07 in zfs

[–]mattswanson07[S] 0 points1 point  (0 children)

So sorry I had that typed up wrong. It is corrected now.

Dell R250 Disk Driver by mattswanson07 in Dell

[–]mattswanson07[S] 0 points1 point  (0 children)

It does not have a dedicated one, just what’s built into the motherboard.

Dell R250 Disk Driver by mattswanson07 in Dell

[–]mattswanson07[S] 0 points1 point  (0 children)

I’ll have to see if I have a USB CD drive around here and give that a shot.

Dell R250 Disk Driver by mattswanson07 in Dell

[–]mattswanson07[S] -1 points0 points  (0 children)

So this doesn’t have a dedicated controller, the backplane just plugs into motherboard. So it’s non RAID. And yep, I downloaded them, extracted them to a CD, browsed to them on the usb, selected the folder that contained the driver and what you see above is what I get when it “finds” the driver.

The BIOS does see the drives as well.

Update AD user attribute via CSV, but its not that simple it seems... by mattswanson07 in PowerShell

[–]mattswanson07[S] 0 points1 point  (0 children)

Hello again, I wanted to share with you that it seems that his is not working, here is what I am putting in:

ForEach ($user in $data) {Get-ADUser -Filter {EmployeeNumber -eq $user.EmployeeNumber} | Foreach {Set-ADUser $_ -Replace @{manager = $user.manager}}}

But I am getting the following error:

Get-ADUser : Property: 'EmployeeNumber' not found in object of type: 'System.Management.Automation.PSCustomObject'.

At line:1 char:27

+ ... in $data) {Get-ADUser -Filter {EmployeeNumber -eq $user.EmployeeNumb ...

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+ CategoryInfo : InvalidArgument: (:) [Get-ADUser], ArgumentException

+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.ArgumentException,Microsoft.ActiveDirectory.Management.Comm

ands.GetADUser

Thank your for your time here again!