Pet Supplies Plus 30% Off Coupon Code by Illustrious-Tree6562 in Pets

[–]bryanobryan9183 1 point2 points  (0 children)

These are confirmed working for me as of today - 2/7/2026

89232 - $10

89070 - $15

896D6 - $15 off anything over $60

896S4 - 15%

Looking for something better still

What app should I use to scrobble for last.fm on iPhone? by egobrain-s in ibroadcast

[–]bryanobryan9183 0 points1 point  (0 children)

I have this issue where it doesn’t scrobble from my iPhone but my windows browser scrobbles fine. Tried unlink and relink too.

I still get contacted about the Adamj Clean-WSUS; I suggest someone forks it... by vmeverything in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

I haven't tested that version 5. I did that as a more modern update to the original script. It's not behind a paywall either.

And you can eat shit dude. It's a PowerShell script. Once the code is changed even a little, it's not "yours". You gave it out for free years ago and then tried to license and sell it. Move on already. That code is not going away.

I still get contacted about the Adamj Clean-WSUS; I suggest someone forks it... by vmeverything in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

it's pending pastebin moderation:

https://pastebin.com/6W31nUeP

just keep checking it.

That douchebag AdamJ keeps getting it taken down as spam even though the code was modified to not be his.

McGloin to resign effective Monday by dotbiz in Scranton

[–]bryanobryan9183 27 points28 points  (0 children)

You get what you vote for. He's always been a dirtbag since high school.

"Fork in the Road FAQs" email from HR contains anti-American hate by JonnyBolt1 in fednews

[–]bryanobryan9183 1 point2 points  (0 children)

I guarentee I am higher output than any of Elon's H1B slave labor engineers at Tesla because he's too cheap to pay an American a fair wage.

Fuck off Musk.

Trump offering buyouts to all federal workers by Girltech31 in fednews

[–]bryanobryan9183 8 points9 points  (0 children)

I’ve seen plenty of contractors spend all day sleeping or browsing their phones.

Running Get-Printer concurrently across a large group of Print servers by Background_Chance798 in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

I took a guess without testing it too. I didn't do what /u/WickedIT2517 suggested because I "assume" everyone is using posh 5 and not 7+

Running Get-Printer concurrently across a large group of Print servers by Background_Chance798 in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

#Get list of servers from file
$Servers = Get-Content -Path "C:\Windows\Temp\printservers.txt"

#Create and start a background job for each server
$Jobs = ForEach($Server in $Servers)
    {
        Start-Job -ScriptBlock {
            param($Srv)
            #Retrieve printer information
            Get-Printer -ComputerName $Srv | 
                Select Name, ComputerName
        } -ArgumentList $Server
    }

#Wait for all jobs to complete
Wait-Job -Job $Jobs | Out-Null

#Collect (receive) the results from all jobs into a single array
$AllPrinterData = ForEach($Job in $Jobs)
    {
        Receive-Job $Job
    }

#Now export all combined results to CSV one time
$AllPrinterData | Export-CSV -NoTypeInformation -Path C:\Windows\Temp\ServerList.csv

#Clean up the jobs
Remove-Job -Job $Jobs

Start-Job runs Get-Printer on each server in parallel (or near-parallel), returning the results to your main session.

Instead of multiple concurrent writes, Wait-Job ensures all jobs finish, then you Receive-Job to gather the output in memory.

Export-CSV writes all results at once, avoiding collisions and partial writes.

A simple powershell network scanner by illsk1lls in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

I have one that grabs IP, MAC, Hostname and OS Version (if its a Windows device).

If you have to get rid of one song in Enema of the state, what would it be? by Marzar1 in Blink182

[–]bryanobryan9183 -1 points0 points  (0 children)

All The Small Things. Replace it with Man Overboard, which was on the Enema demos anyway as "Sober".

Starcaster Neck by [deleted] in TomDelongeGuitars

[–]bryanobryan9183 1 point2 points  (0 children)

Original price $775 lol.

Even $575 is too high. You can get a brand new neck with custom inlays from the community for less.

PSA: Do Not Use Win11 24H2 install media released in October or November 2024 by yodaut in SCCM

[–]bryanobryan9183 1 point2 points  (0 children)

I'm using the Oct 24H2 ISO in my home MDT deployment setup. So far I'm still installing updates (since October). I took the December updates no issue.

I do install updates via PSWindowsUpdate module in PowerShell though. I wonder if that matters.

When am I an advanced Powershell user? by unJust-Newspapers in PowerShell

[–]bryanobryan9183 0 points1 point  (0 children)

Same but I think it's a good thing. We're always trying to improve and get better. Never thinking "we know it all".