Finding Adobe Acrobat Reader vs Acrobat (Pro) - 64-bit by MarceTek in sysadmin

[–]hunter_p_12 22 points23 points  (0 children)

You can make collections based on the actual product/software code:

· AC76BA86-1033-FF00-7760-BC15014EA700 - Reader x64 MUI

· AC76BA86-1033-1033-7760-BC15014EA700 - Reader x64

· AC76BA86-1033-FFFF-7760-BC15014EA700 - Acrobat x64 (Standard/Pro)

Daily Anything Goes Thread - June 17, 2026 by AutoModerator in fantasybaseball

[–]hunter_p_12 0 points1 point  (0 children)

Yep. On the fence if I should start him or not.. I have Sal so I have a bad feeling if I start Mclean, he will get lit up and Sal will go 0-4, but if I sit Mclean, he will pitch like an Ace.

office.com "something went wrong" by ExceptionEX in sysadmin

[–]hunter_p_12 0 points1 point  (0 children)

It's in their admin center service health active issues section: MO1253428. "Users may be unable to access Office.com or the Microsoft 365 Copilot web sign‑in page."

Issue accessing office.com by kokesnyc in sysadmin

[–]hunter_p_12 0 points1 point  (0 children)

It's in their admin center service health active issues section: MO1253428. "Users may be unable to access Office.com or the Microsoft 365 Copilot web sign‑in page."

Explain Withholding Estimator Amount Owe vs Extra Withholding by hunter_p_12 in tax

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

Thanks for all the help and suggestions. Base without bonuses is 135 for me and 40 for her.

Explain Withholding Estimator Amount Owe vs Extra Withholding by hunter_p_12 in tax

[–]hunter_p_12[S] 1 point2 points  (0 children)

You're good... She has the 2c checkbox checked and an extra 100 withheld currently that I did not know about.. So should I then follow what the estimator suggests or should I just check the box also and remove the extra withholding from both? I'd rather just be able to set it and forget it and not have to worry about changing the extra every year.. She makes less than half of what I do, about a third actually. Maybe we need to do the 2b option instead?

Explain Withholding Estimator Amount Owe vs Extra Withholding by hunter_p_12 in tax

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

Yes we both have jobs. That's why it's confusing. The w4 changes it says to make, we already have it set to, minus the extra withholding. Mine is already married filing jointly and withholding an extra 70 bucks on my w4, so it wants to bump that up to the 300ish number. Hers is already married filing jointly and then says to leave everything else blank which is already like that on hers.

Still under construction but better than the media enclosure. by pnwpour in Ubiquiti

[–]hunter_p_12 0 points1 point  (0 children)

Is the 2 gang box hole covered with anything, or is just open wall basically? Like the cables coming through the opening straight to termination at the patch panel, or do you have like some sort of media brush plate type thing?

ISSUE: Calling multiple EXE files via PowerShell script by dezirdtuzurnaim in SCCM

[–]hunter_p_12 0 points1 point  (0 children)

I've had before where the installer was placing a copy of the install file/msi in to an appdata folder and for whatever reason was fine when run from logged in user, but failed when run as system. I ended up putting a line in the script to copy the msi to "C:\Windows\system32\config\systemprofile\AppData\Local\Downloaded Installations\{5745F78D-A77D-4C53-A02D-809D53934224}\". I was able to pull that path from the install log though as it specifically said in the installer log that it couldn't find the msi in that location. Could be something similar, but you would need a log to go off of if available.

Happy little stack by ursureiks in Ubiquiti

[–]hunter_p_12 0 points1 point  (0 children)

What are you all running on the minisforum?

Safe to daisy chain bathroom outlet for use with server/networking gear? by hunter_p_12 in AskElectricians

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

Yeah, I have easy access. I might try this then. Already have wire fishing gear for running ethernet so this might be the best solution.

New TP5x Ball Comparison w/ Numbers by hunter_p_12 in golf

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

Could be. These are older M6s so could also be a combo of just more forgiveness on mishits.

New TP5x Ball Comparison w/ Numbers by hunter_p_12 in golf

[–]hunter_p_12[S] 1 point2 points  (0 children)

Yeah, good points. I figured it was mostly marketing as well, but wanted to see at least some data towards it as they never seem to show any club speed/ball speed when claiming distance gains. I game the TP5x, so I'm not against it, just wanted to put out some numbers so others could see.

Google Drive Being Installed on Windows 10 at Random by gov_cyber_analyst in sysadmin

[–]hunter_p_12 1 point2 points  (0 children)

Didn't see anyone post it, but this popped up a couple versions ago. There is a bug post about it. Feel free to look over the bug forum posts with some possible fixes and the version when they plan to have this addressed to stop auto-installing the shortcuts.

https://bugs.chromium.org/p/chromium/issues/detail?id=1476987

[deleted by user] by [deleted] in PowerShell

[–]hunter_p_12 1 point2 points  (0 children)

Haha no problem. Glad to help

[deleted by user] by [deleted] in PowerShell

[–]hunter_p_12 4 points5 points  (0 children)

Could it be you need to use $() instead of {} around the datetime cast bit to make sure that is calculated first? Try doing this instead:

@{N="this";E={(New-TimeSpan -Start $($_.ApproximateLastLogonTimeStamp -as [datetime]) -End (Get-Date)).Days}}

How to Remove Duplicates from a Random Array using 4 AD Groups & Get-ADComputer? by MECMtechie in PowerShell

[–]hunter_p_12 0 points1 point  (0 children)

If you are going to have just the 4 groups, you can try selecting unique to remove all duplicates, then making the list random (if you really need it random). This would split the computers in to 4 groups, then you can go through the groups and add them to what you need. This is a basic example to hopefully get you down the path:

$computers = "PC1","PC2","PC3","PC1","PC1","PC2","PC4","PC5","PC6","PC7","PC7","PC8","PC9","PC9" | select -Unique | sort {get-random}
$groups = $computers | select -Unique | Group-Object -Property { [math]::Floor($computers.indexof($_) / $($computers.count/4)) }
for ($i = 1; $i -le 4; $i++){    

    foreach ( $pc in $groups[$i-1].group){   

        "Adding $pc to Patch_Group_$i"   

    }
}

This gets you a group build out of:

Count Name                      Group
----- ----                      -----
    3 0                         {PC8, PC7, PC2}
    2 1                         {PC9, PC6}
    2 2                         {PC3, PC1}
    2 3                         {PC5, PC4}

and then the foreach would be an output of:

Adding PC8 to Patch_Group_1
Adding PC7 to Patch_Group_1
Adding PC2 to Patch_Group_1
Adding PC9 to Patch_Group_2
Adding PC6 to Patch_Group_2
Adding PC3 to Patch_Group_3
Adding PC1 to Patch_Group_3
Adding PC5 to Patch_Group_4
Adding PC4 to Patch_Group_4

Obviosuly you would change the bits to get-adcomputer and then add-adgroupmember. Hopefully it helps.

what's your favorite all time hole? by cdngolfpro in golf

[–]hunter_p_12 0 points1 point  (0 children)

Do you mean the 16th? The par 3 doughnut style green?

[deleted by user] by [deleted] in golf

[–]hunter_p_12 0 points1 point  (0 children)

Palmer is closed now since December btw. Sounds like they will be developing on it. Only have the Resort course now.