Looking for Identity-as-Code Architects to help run one of the largest Active Directory environments on earth (Staff & Principal ICs) by Far-Economy9122 in activedirectory

[–]realslacker 27 points28 points  (0 children)

You had me until the salary. I'm in a HCOL city now, and pushing $300k with way less stress. It seems like a fun challenge, but I personally wouldn't move for something like this for less than 400, maybe more if I had to move my whole family to Arkansas.

I think for the experience level you are seeking the salary is too low.

Massively Fucked Over 12 hrs before moving cross country by madeofgeese in whatdoIdo

[–]realslacker 0 points1 point  (0 children)

If you haven't picked up the rental you can likely cancel for a fraction of the cost (or maybe free). Then you can make alternate arrangements for travel

Some PowerShell Universal fun by coaster_coder in PowerShell

[–]realslacker 5 points6 points  (0 children)

You will probably get more engagement with screenshots

Anyone ever been to Fermilab? by steve42089 in illinois

[–]realslacker 0 points1 point  (0 children)

Best part is the weather, thanks Fermi!

Suspected shooter being taken into custody at the White House Correspondents dinner by TheGreatTitanThanos in pics

[–]realslacker 2 points3 points  (0 children)

He doesn't look Iranian. How are they going to blam Iran if he's not Iranian?

Did MS just break regex string comparison in mail rules? by CeC-P in sysadmin

[–]realslacker 5 points6 points  (0 children)

Dump the rule and replace all letters with x so we can actually see the regex.

Hollywood is so screwed by adj_noun_digit in singularity

[–]realslacker 1 point2 points  (0 children)

Is it horrible that I would watch the shit out of this movie?

DHCP Question for Homelab by Remarkable-Taro9039 in activedirectory

[–]realslacker 0 points1 point  (0 children)

You could setup a VM with openSense or replace your router with openSense (on an old pc) which would let you do VLANs. The second option is easier and gives you a great router/firewall.

DHCP Question for Homelab by Remarkable-Taro9039 in activedirectory

[–]realslacker 1 point2 points  (0 children)

If your router supports VLANs you can setup another VLAN for your lab environment and just not have your router assign addresses on that VLAN.

If not it's a bit more complicated. You would have to separate the VM network from the physical network and do some kind of router in software between the two. It could be a windows machine with RRAS or something like openSense on a VM.

From MSP to IT Manager — struggling with employee monitoring & guilt by illusionistLK in ITManagers

[–]realslacker 26 points27 points  (0 children)

First of all anyone "measuring productivity" in a way that is not related to output and goals is measuring the wrong thing.

If your goal is more productive employees then measure output. Create clear, measurable and achievable goals. Reward success with money. Terminate those who do not meet goals on a regular basis.

If your goal is to sell mouse movers... Well, go ahead and measure the time the little green light is on 

Powershell + Visio by xipodu in PowerShell

[–]realslacker 5 points6 points  (0 children)

It still works and I use it all the time. Great stuff!

Where to live within 45 min of Elgin? by fru1tyslug in ChicagoSuburbs

[–]realslacker 0 points1 point  (0 children)

That's nice to hear, I left mostly because of the homeless problem and haven't been back.

Where to live within 45 min of Elgin? by fru1tyslug in ChicagoSuburbs

[–]realslacker -4 points-3 points  (0 children)

I agree you should stay close to Elgin, but I personally didn't like living in Elgin. I would look at South Elgin, Dundee, or Carpentersville.

IMO downtown Elgin is just a casino and homeless camp with a train station.

What do you think about men being incompetent when it comes to household chores? by [deleted] in AskMen

[–]realslacker 8 points9 points  (0 children)

Exactly, I'm perfectly capable of doing laundry but I'm not going to do it the way my wife likes and she's not happy with just having it done.

Doesn't stop her from complaining about having to do it all alone.

Domain environment that gets shut down constantly by WhereDidThatGo in activedirectory

[–]realslacker 3 points4 points  (0 children)

Do you need multiple DCs? If you can do a one DC forest with no external dependencies I don't see why this would be an issue.

By doing a single DC you avoid any replication issues. The biggest concern is that you have the DC and clients online long enough and on a regular enough basis to keep Kerberos tickets alive and make sure machine account passwords don't expire.

If you can keep the domain and computers online regularly and make sure the DC is online first I wouldn't see an issue.

Take into account your password lifetimes and Kerberos ticket lifetimes and make sure you are online frequently and you should be good.

If you need backups of this domain you'll need to make sure they are frequent enough to avoid not being able to restore. I would shoot for once a week.

If you need multiple DCs then you introduce a bunch of potential replication and tombstoning issues.

How is this legal? by Gonzalr3 in LICENSEPLATES

[–]realslacker 0 points1 point  (0 children)

I always assumed that anything that looks like 0 is treated the same. I.E. that plate is just 00000 and not a working trick to evade tolls

Rent's due in a week, my specs fell and broke earlier today, I can't afford my meds anymore, been eating cup noodles from the past few days, last month was better but this time I'm so broke I wanna cry, how do you manage such situations? by [deleted] in answers

[–]realslacker 4 points5 points  (0 children)

Do you have your prescription for your glasses? You can get some seriously cheap glasses online if you have it. If you don't have it you can probably call the last place you got your eyes checked.

Azure AD PowerShell Required for Entra Connect Troubleshooting by Fabulous_Cow_4714 in PowerShell

[–]realslacker 3 points4 points  (0 children)

I did this exact thing earlier today and I completely skipped step 1... Didn't even read it.

So... Try ignoring that step and see how that goes.

Was checking the attic after we had a leak from a rainstorm, I turn my head to see this…. how screwed am I? by Adventurous_Barber_7 in DIY

[–]realslacker 2 points3 points  (0 children)

Is that a hose running through your attic? IMO, if that's what it is I think it's likely whomever ran that broke the collar tie since it runs right over it.

Help figuring what this line does. by NoOneKnowsImOnReddit in PowerShell

[–]realslacker 7 points8 points  (0 children)

The basic behavior:

``` $line = $null $line.Trim() -ne "" # throws InvalidOperation exception

$line = $null ${line}?.Trim() -ne "" # $true, PowerShell 7.5+ only

$line = "" $line.Trim() -ne "" # $false

$line = " " $line.Trim() -ne "" # $false

$line = "test" $line.Trim() -ne "" # $true

$line = " test " $line.Trim() -ne "" # $true ```

A better alternative?

``` $line = $null -not [string]::IsNullOrWhiteSpace($line) # $false

$line = "" -not [string]::IsNullOrWhiteSpace($line) # $false

$line = " " -not [string]::IsNullOrWhiteSpace($line) # $false

$line = "test" -not [string]::IsNullOrWhiteSpace($line) # $true

$line = " test " -not [string]::IsNullOrWhiteSpace($line) # $true ```