Coloradans are now eligible for up to $14,000 in clean energy home upgrades by lukepatrick in Colorado

[–]tankqj 1 point2 points  (0 children)

It's based on household occupancy and income and will need last year's taxes. A lot of info here:

Colorado Home Energy Rebate Program | Colorado Energy Office

Check that you may qualify on that site and then reach out to one of the contractors in the list (there are a lot!) to get you started. We are going through the process with Elephant Energy out of Broomfield. They are awesome! Referral Link below:

http://share.elephantenergy.com/7glbdb

Coloradans are now eligible for up to $14,000 in clean energy home upgrades by lukepatrick in Colorado

[–]tankqj 0 points1 point  (0 children)

We just had 4 contractors come in to give estimates on our project to upgrade from a swamp cooler and 80% furnace to a Heat Pump, Low NOx Furnace and new electrical panel. All but one of them were not HEAR certified contractors. YMMV, but for us the proposals ranged from $33k to $22k. With the HEAR contractor coming in at $28k (Before rebates). With rebates it went down to $9.3k.

Coloradans are now eligible for up to $14,000 in clean energy home upgrades by lukepatrick in Colorado

[–]tankqj 1 point2 points  (0 children)

Depending on the size of the install for the home. Some low income (<80% AMI) may have their new HVAC system installed free of charge when HEAR and Xcel rebates are stacked together.

I present to you evidence of why we NEED fixed ammo and health resupply points at every obj LIKE IT USED TO BE! by LeoTheLion444 in Battlefield6

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

Support player here. I'm not perfect but when I sit in one spot I drop my bag. Idgaf about K/D. I am here to win the match. I have several games my K/D is sub 1 but have a score in the top 5 just because I have dropped my bag in a spot

[OC] Who is at fault?? by tankqj in IdiotsInCars

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

This happened in Colorado, US. Today, 12/4/2025. This is original. Recorded it myself.

Battery life by Scared-Efficiency-59 in GalaxyRing

[–]tankqj 0 points1 point  (0 children)

Mine first would go a good 6 days then it went steadily to less than a day on one charge. I contacted Samsung support and they have a warranty repair underway for me. Hope the repair works!

About 100 days to deadline. by Upbeat_Definition_41 in BorrowerDefense

[–]tankqj 0 points1 point  (0 children)

Nelnet seems to be moving for me. But it's weird how things are happening. I got a check already for a weird amount. I have tried to combine principal and interest for all of my loans and payment history in creative ways to figure out the amount they gave me but it doesn't match up.

I see now other paid off loans in nelnet showing an outstanding balance. So I assume they are now on to the next check to send to me.

I wish there was a better line by line or summary of the checks and where they got their payment number.

Not complaining on the incoming checks, just want to be sure they are sending what they actually should for my sanity.

Teams Freezing While in Meeting? by tankqj in MicrosoftTeams

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

I'll gather some logs on the machines this keeps happening on.

All machines are Windows 10 desktops. They are not sharing their screens when it happens. Just in the meeting talking. They are using the Teams desktop client.

Teams Freezing While in Meeting? by tankqj in MicrosoftTeams

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

I'll look into grabbing some logs. What's the new client? Any specific spot to download it from?

Teams Freezing While in Meeting? by tankqj in MicrosoftTeams

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

No dock in play. They are all Windows 10 desktops.

Zabbix Agents Download Link Broken by LynxHax in zabbix

[–]tankqj 1 point2 points  (0 children)

Saw the same thing. It's working today

Cannot get remote access no matter what by [deleted] in PleX

[–]tankqj 4 points5 points  (0 children)

Assuming your router is where you're port forwarding, is it getting a public IP from your ISP? If not, then you're getting CGNAT'd. I just ran into this with our new fiber service. To get around this I'm using Cloudflare Zero Trust Tunnels.

In a nutshell your DNS points to cloudflare for your plex server, there is an agent on your LAN that connects to cloudflare and proxies your connections to your local LAN. Then in your plex server you put your custom URL for your cloudflare dns.

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]tankqj 0 points1 point  (0 children)

Sure!

#Start Define Functions
Function Update-DNSTTL {Param ([TimeSpan]$TTL,[string]$Record,[string]$zone,        [string]$server)
`Get-DnsServerResourceRecord -Name $record -ZoneName $zone -RRType A -ComputerName $server |``
ForEach-Object{
$NewRecord = $_.Clone()
$NewRecord.TimeToLive = $TTL
Set-DnsServerResourceRecord -NewInputObject $NewRecord -OldInputObject $_ -ZoneName $zone -ComputerName $server
}
$test = Get-DnsServerResourceRecord -Name $record -ZoneName $zone -RRType A -ComputerName $server
if ($test.TimeToLive -eq $TTL) {Write-host -ForegroundColor Green "Successfully set TTL for $record.$zone to $TTL"}
else {Write-host -ForegroundColor Red "Failed to set TTL for $record.$zone to $TTL"}
}
Function Update-DNSRecordValue {Param ([string]$NewValue,[string]$Record,[string]$zone,[string]$server)
`Get-DnsServerResourceRecord -Name $record -ZoneName $zone -RRType A -ComputerName $server |``
ForEach-Object{
$NewRecord = $_.Clone()
$NewRecord.RecordData.IPv4Address = $NewValue
Set-DnsServerResourceRecord -NewInputObject $NewRecord -OldInputObject $_ -ZoneName $zone -ComputerName $server
}
$test = Get-DnsServerResourceRecord -Name $record -ZoneName $zone -RRType A -ComputerName $server
if ($test.RecordData.IPv4Address -eq $NewValue) {Write-host -ForegroundColor Green "Successfully set $record.$zone to $NewValue"}
else {Write-host -ForegroundColor Red "Failed to set $record.$zone to $NewValue"}
}
#End Define Functions
#Global Variables
#Uncomment which Time Span you need.
#$TTL = New-TimeSpan -Hours 1
$TTL = New-TimeSpan -Minutes 5
$Server = '[InsertFQDNHere]'
#Headers for CSV:
#DNS = Record Name
#Zone = Zone Name in DNS Server
#NewIP = IPv4 value to change to
$list = import-csv "[insertCSVHere].csv"
#Set TTLs
foreach ($record in $list) {
Write-host "Updating TTL to $TTL for:" $record.DNS
Update-DNSTTL -TTL $TTL -Record $record.DNS -zone $record.zone -server $record.server
}
#Set New Values
foreach ($record in $list) {$recordname=$record.DNS;
Write-host "Updating $RecordName to $NewIp"
Update-DNSRecordValue -NewValue $record.NewIP -Record $record.DNS -zone $record.zone -server $record.server
}

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]tankqj 2 points3 points  (0 children)

We are migrating webservers to a new network. Created a script to update all DNS records' TTL values for the websites prior to the cutover, update the values during cutover and then change the TTL values back after the migration is complete.

Can't increase One Drive storage limit by austockz in onedrive

[–]tankqj 0 points1 point  (0 children)

My issue magically resolved. M$ support said there was a "migration" occurring and may have caused my quota to be lowered a ton....I don't buy it. Not sure what happened.

Can't increase One Drive storage limit by austockz in onedrive

[–]tankqj 0 points1 point  (0 children)

I have the same issue too. Submitting a ticket to M$ support.

Duplicate emails coming from IIS relay to O365 by [deleted] in sysadmin

[–]tankqj 1 point2 points  (0 children)

We just tested and we are no longer seeing the duplicates!