AI

ChatGPT, Copilot, and Other AI Tools: How to Use Them at Work Today

08.06.2026  ·  Evgeny Gorun

AI tools have gone from experimental technology to everyday workhorses. Here’s what actually helps in the work of a system administrator.

Tools I Use Every Day

1. ChatGPT / Claude — a universal assistant

Where it really saves time:

2. Microsoft Copilot in Office 365

If you have corporate Microsoft 365, Copilot is already built in:

3. GitHub Copilot for automation

Indispensable for writing scripts. Just write a comment — and Copilot suggests the code.

# Find all computers in AD that haven't logged in for more than 90 days
# and disable their accounts
$cutoffDate = (Get-Date).AddDays(-90)
Get-ADComputer -Filter {LastLogonDate -lt $cutoffDate -and Enabled -eq $true} |
    Disable-ADAccount -WhatIf

Important Limitations

What’s Next

By the end of 2026, we can expect AI agents capable of independently performing multi-step tasks: monitoring the network, creating incidents, and even proposing solutions. It’s worth learning these technologies now.

Bottom line: AI won’t replace a specialist, but a specialist with AI will replace one without. Start small — try ChatGPT for writing your next script.

← Zero Trust in 2026: A Practical Guide to Securing Your Corporate Network PowerShell 7.6: New Features and Practical Tips for System Administrators →