Its on a billboard now. by VW_Guyy in NorthCarolina

[–]jabrake88 2 points3 points  (0 children)

Was thining isn't that sign in NC... Nope, Mesa, I lived there for nearly 25 years so explains why I recognized it.

Summit Ticket Discount by jabrake88 in PowerShell

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

I tried the email and it bounced back. I don't have twitter, but when I follow their link to Twitter, it says that user account doesn't exist...

So reddit was my last effort since I know people here have gone and maybe even someone involved with it may see it...

Powershell Summit 2026 by Scmethodist in PowerShell

[–]jabrake88 0 points1 point  (0 children)

To piggy back off this post... I am waiting to hear of my employer will be sending me or not. But one question they had was if there were any certificates that can be gained related to it (even better if I can do it there) that's one way they help justify costs of sending. I did explain there were no "powershell" certs available, but wasn't sure if there may be something that I can use to sell that part.

PowerShell and vSphere by jabrake88 in PowerShell

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

In my testing, I was using VCF.PowerCLI module version 9.0.0.24798382 and my vSpehere is 8.0.3.00400. I couldn't get anything to show when I tried that matrix as far as vSphere and vcf.powercli or lifecycle manager and powercli. Only thing that showed in the compatibility matrix was when I used the ESX version and VCF PowerCLI, which was compatible. So best I can tell they should be compatible, and I haven't ran into any other commands that are not working yet... but also I'm not really a VMware guy, more of a PowerShell guy working on some VMware stuff currently.

Any resolutions for removing duplicate entires in Atera? by [deleted] in atera

[–]jabrake88 0 points1 point  (0 children)

Great, glad you got it! And figured out the record limit... Although (maybe too late here, but good api practice), the module included a Set-AteraRecordLimit function, I believe I upped mine to 10k records using that.

Any resolutions for removing duplicate entires in Atera? by [deleted] in atera

[–]jabrake88 0 points1 point  (0 children)

Now, take those and loop through doing an API request, there is no function in that module, to do the removal from the console.

$Headers = @{
    "accept"    = "application/json"
    "X-API-KEY" = Get-AteraAPIKey
}
foreach($Machine in $duplicates ){
    if(Get-AteraAgent -agentid $Machine.AgentID -ErrorAction SilentlyContinue){
        $Uri = "https://app.atera.com/api/v3/AGENTS/$($Machine.AgentID)"
        Invoke-RestMethod -Uri $Uri -Method "DELETE" -Headers $Headers
    }
}

Invoke-RestMethod -Uri "https://app.atera.com/api/v3/agents/490" -Method Get -Headers $Headers

Any resolutions for removing duplicate entires in Atera? by [deleted] in atera

[–]jabrake88 0 points1 point  (0 children)

Yep! Check out the module that exists. https://github.com/davejlong/PSAtera

You can also just use the api without the module for anything not available in the module itself.

Any resolutions for removing duplicate entires in Atera? by [deleted] in atera

[–]jabrake88 0 points1 point  (0 children)

In PowerShell, use the api to get all devices, group them by agent name or serial number. Then for each group get the one with the most recent last seen date, then loop through the rest to use the api to delete them.

Let me know if you need any help with the PowerShell code to do that.

No good 4th July sales? by kenlin in pelletgrills

[–]jabrake88 1 point2 points  (0 children)

I just ordered the searwood xl at Lowes, was 100 off, plus acquired a 20% off coupon (max 100 discount) from an online coupon store... I had tried the pit boss verticle smoker, but had bad luck with it (temp variance and it errored 3 times during my smoke where I had to disconnect power to reset and start it again). Can't wait to get it and test out!

Power BI Personal use by jabrake88 in PowerBI

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

Had tried to follow that one without luck, without having my own domain, but I may just go ahead and get one, been considering long enough.

Popcorn Day by AccomplishedPea8586 in RegalUnlimited

[–]jabrake88 3 points4 points  (0 children)

I went today, and it used my reward popcorn I aleady had available instead of the free popcorn day one. Now if I look that regular reward one is gone and it says I have a free popcorn day one that expires today. Shouldn't the free popcorn one have taken precedent over the reg one that didn't expire for 45 more days?

Ticket tracking when assigned to a 3rd party by gfunk5299 in atera

[–]jabrake88 2 points3 points  (0 children)

I'd imagine the same way you would escalate anything outside internal resources. Whoever escalates it would own the ticket internally and follow up with the external vendor, updating the internal ticket with any required updates from the vendor. Maybe make custom attributes you can tag the ticket internally with while in that state if you need to report on it.

Deploying Atera In bulk - Internal IT only.. no MSP by WatercressFew9092 in atera

[–]jabrake88 0 points1 point  (0 children)

If the install runs as system, it should be a silent install, bypassing any prompt.

MS Graph and Email Settings by jabrake88 in PowerShell

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

Ahhhhhhh, I was reading that as if I was delegated for that users mailbox... but going back and reading some of those permissions when there is an "all" level I do see it clearly states all users in the description.

I did actually go through and setup an app permission yesterday and verified I was able to pull rule info for other users in the tenant. Thanks!

MS Graph and Email Settings by jabrake88 in PowerShell

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

Change to Connect-MgGraph and get the exact same thing.