ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Texkonc
    3. Posts
    T
    • Profile
    • Following 5
    • Followers 10
    • Topics 29
    • Posts 1,043
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Non-IT News Thread

      @scottalanmiller said in Non-IT News Thread:

      Just found out that the world's busiest airport is now DFW.

      Cant say I am not surprised, it is massive, so the volume they can handle....

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      Rebooted our Helpdesk and then Texted the developer that I broke it. but I didnt.
      I am Pure evil.

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      What to do.....what to do....

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      @scottalanmiller said in What Are You Doing Right Now:

      City of Arlington did a no-mask fireworks show last night apparently. Which might sound bad, but even in the DFW no one really wants any extra Arlington going on. So not to be morbid, but thinning out the population down there isn't of the greatest concern to the rest of the metroplex, if you know what I mean.

      It's clear that areas of more "problems" aren't being told to wear masks like better areas of the city are. Tarrant Co does really want to have to deal with them.

      Check my Facebook, hurrah me!

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      The great debate. A new 10" or 12.9 iPad? hmmmmm

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      @travisdh1 said in What Are You Doing Right Now:

      @Texkonc said in What Are You Doing Right Now:

      Rebuilding WSUS...

      How often do you have to rebuild yours? Seems it works for anywhere between 3-6 months before borking itself here.

      This 2019 install lasted about a year.

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      Rebuilding WSUS...

      posted in Water Closet
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      @dbeato said in Exchange Database and User Login Report Marriage:

      @Texkonc So you don't need the Mailbox status and all that? I just don't understand that requirement?

      Yes I do, but I also need these other attributes.

      posted in IT Discussion
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      OK, so Management wants these AD Attributes in the report.
      In the List below
      Attribute Management wants=What I think I need to call in the script

      Name=Displayname
      Company=Company
      Description=Description
      Department=Department
      Title=Title
      employeeID=Our only Custom Attribute.
      Mail=EmailAddress
      phyiscalDeliveryOfficeName=Office

      Line 15, I added this string.
      SAMaccountname,EmailAddress,GivenName,Surname,DisplayName,Description,Title,Department,Office,Company,employeeID

      It made the Database file blank. I cant seem to see what it is that is making it barf.

      posted in IT Discussion
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      I ran it, but not a chance to review it yet. I should have time tomorrow.

      posted in IT Discussion
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      @dbeato said in Exchange Database and User Login Report Marriage:

      I will get you something tomorrow, dealing with something important this week.

      If it works, Beer is on me!
      Second thought, I will let SAM pay.... 🙂

      posted in IT Discussion
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      @stacksofplates said in Exchange Database and User Login Report Marriage:

      @Texkonc said in Exchange Database and User Login Report Marriage:

      How can I marry these two scripts?

      You need to be ordained and then have them exchange rings.

      Someone....had to go there...

      posted in IT Discussion
      T
      Texkonc
    • RE: Exchange Database and User Login Report Marriage

      @dbeato said in Exchange Database and User Login Report Marriage:

      @Texkonc So you basically want to know which users have not logged in on their Domain login for the last 90 days and match their mailbox and provide the usage of that said mailbox or mailboxes ?

      Bingo

      posted in IT Discussion
      T
      Texkonc
    • Exchange Database and User Login Report Marriage

      How can I marry these two scripts?

      Get-Mailbox -ResultSize Unlimited -ErrorAction SilentlyContinue | Select DisplayName,Database,WindowsEmailAddress,@{n="Size(MB)";e={[int]$(Get-MailboxStatistics $_.Alias).TotalItemSize.Value.ToMB()}} | Sort-Object "Size(MB)" -Descending | Export-Csv -Path C:\Scripts\MailboxStatistics-05042020.csv -NoTypeInformation
      
      #Define a work folder for the report
      $WorkFolder="C:\Scripts"
      #Define # of days to search for users that have not logged in
      $Days=90
      #Report file
      $ExportedReport = "$WorkFolder\$DaysDayEnabledUsers.csv"
      #Search for users
      Get-ADUser -Filter {Enabled -eq $TRUE} -SearchBase $OU -Properties EmailAddress,GivenName,Surname,DisplayName,Description,Title,Department,Office,LastLogonDate,homeMDB | Where {($_.LastLogonDate -lt (Get-Date).AddDays(-$Days)) -and ($_.LastLogonDate -ne $NULL)} | Sort | Select EmailAddress,GivenName,Surname,DisplayName,Description,Title,Department,Office,LastLogonDate | export-csv $ExportedReport -nti
      

      Goal is get User login status, Mailbox DB, and Mailbox size to give to management and to use for baseline to start cleaning up exchange accounts. I am a google powersheller not the one that builds one. 🙂
      I can cleanup the columns once in Excel.

      posted in IT Discussion
      T
      Texkonc
    • RE: Random Thread - Anything Goes

      @PhlipElder said in Random Thread - Anything Goes:

      @wirestyle22 said in Random Thread - Anything Goes:

      Super close now. Only a few more inspections and we're done

      IMG_20200516_122536_01.jpg

      Wow, it looks really good!

      Yeah, that house looks awesome!

      posted in Water Closet
      T
      Texkonc
    • RE: Random Thread - Anything Goes

      Ticket from Sales
      Subject: Sophos Antivirus Requires Reboot
      Body: Empty

      Helpdesk Tech: Please reboot.

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      WFH water usage...Damn....
      89fa751f-af23-448d-aa64-8f599684ec8c-image.png

      posted in Water Closet
      T
      Texkonc
    • RE: What Are You Doing Right Now

      One of our sister companies had a DC fail, and I had to get them to create me Spiceworks app login so I can change the AD authentication. I forgot how much I do not prefer this software....And it requires a writable DC and can not use one of our RODC's. Gross. I need a shower.

      posted in Water Closet
      T
      Texkonc
    • Veeam B&R push Installs from Enterprise Console

      I have googled until my fingers are blue, and opened a ticket with support but we have the basic support, so I am still waiting.
      B&R at two different Datacenters, and we have Enterprise Manager running from a different VM.
      I have updated Enterprise Manager to v10, so now I am trying to update the B&R Servers that run the jobs.
      When I mount the ISO on the B&R server it wont let me update the backup server as it is tied to the Enterprise Console.

      I have dug through the enterprise console and I am not seeing the option to update the Backup Servers I have listed.
      According to #6, it will let me update the backup servers after the Enterprise Manger is updated, but I did Ent Mgr weeks ago.
      https://helpcenter.veeam.com/docs/backup/em/em_upgrading.html?ver=100
      Can not find any KB that says here is how you do the push install from Ent Mgr.

      What am I missing?

      posted in IT Discussion
      T
      Texkonc
    • RE: What Are You Doing Right Now

      Sorting through personal emails and bills and prepping for some Veeam Updates to v10 from 9.5

      posted in Water Closet
      T
      Texkonc
    • 1 / 1