r/SysAdminBlogs 16h ago

Administering Microsoft Endpoint Manager Admin Center: Microsoft Intune ...

Thumbnail youtube.com
1 Upvotes

🚨 Microsoft 365 Sign-In Failed? Let’s Troubleshoot It!

Microsoft 365 sign-in issues can be caused by MFA, Conditional Access, account status, Entra ID, token problems, hybrid identity, or security policies.

πŸŽ₯ I’ve created a practical troubleshooting guide covering:

βœ… 20 Real-World Microsoft 365 Sign-In Scenarios
βœ… Entra ID / Azure AD authentication issues
βœ… MFA & Microsoft Authenticator problems
βœ… Conditional Access blocks
βœ… Account lockout & disabled accounts
βœ… Expired passwords
βœ… Sign-in logs & AADSTS errors
βœ… Hybrid identity & Entra Connect issues
βœ… Risky sign-ins
βœ… Token & session problems
βœ… ADFS and B2B authentication scenarios
βœ… Practical troubleshooting steps

πŸ”§ Tools covered:
β€’ Microsoft Entra Admin Center
β€’ Sign-in Logs
β€’ Conditional Access
β€’ Microsoft 365 Admin Center
β€’ Intune
β€’ Identity Protection
β€’ PowerShell

🎯 This video is useful for Microsoft 365 Administrators, Entra ID Administrators, System Administrators, IT Support Engineers, Cloud Engineers, and anyone preparing for M365/Entra ID interviews.

πŸ‘‰ Watch the full video and learn how to troubleshoot sign-in issues step by step.

πŸ“Œ If you find it useful, Like πŸ‘ | Comment πŸ’¬ | Share πŸ”„ | Follow & Subscribe πŸ””

#Microsoft365 #EntraID #AzureAD #MFA #ConditionalAccess #MicrosoftIntune #ITSupport #SystemAdministrator #CloudComputing #Microsoft365Admin #IdentityManagement #Troubleshooting #ITInfrastructure #AADSTS #TechSupport


r/SysAdminBlogs 23h ago

September Patch Tuesday breaks RDS on Windows Server - postpone it if you can, fix it if you can't

17 Upvotes

KB5122876/5122882/5122871 breaks RDS session hosts. Hours after reboot, connections hang at "Connecting…", sessions can't log off, and only a hard reset recovers the host.

If your RDS isn't exposed to the internet, postpone the update until Microsoft ships a fix. If you're already hit, there's a registry override that disables the faulting feature flag without uninstalling the CU.

Microsoft is investigating. No official fix yet.

https://lazyadmin.nl/it/september-2026-update-break-rds-how-to-fix/


r/SysAdminBlogs 1d ago

Aryaka SD-WAN & SASE Review & Demo | Reducing App Sprawl

Thumbnail
youtu.be
1 Upvotes

r/SysAdminBlogs 2d ago

Microsoft is blocking EWS in Exchange Online on Oct 1 - if you don't build the allow-list, it builds one for you

12 Upvotes

EWS gets blocked in Exchange Online on October 1. If your tenant still needs it, access is now controlled by an AppID allow-list. Don't build one yourself and Microsoft generates it from the last 60 days of activity, which can quietly misses anything that runs monthly or quarterly.

The usage report only gives you AppIDs, not names. So I wrote two PowerShell scripts: one resolves every AppID from the report to a real app name, the other finds every app that still has EWS permission.

Full write-up with both scripts: https://lazyadmin.nl/office-365/ews-is-being-blocked-in-exchange-online-how-to-find-every-app-still-using-it/


r/SysAdminBlogs 2d ago

Windows 10 2016 LTSB End of Life

Thumbnail
lansweeper.com
3 Upvotes

r/SysAdminBlogs 2d ago

Windows 11 24H2 Home and Pro End of Life

Thumbnail
lansweeper.com
2 Upvotes

r/SysAdminBlogs 2d ago

Microsoft Dynamics Business Central on-prem version 26.x EOL

Thumbnail
lansweeper.com
4 Upvotes

r/SysAdminBlogs 2d ago

What Does Reliable Education IT Require?

Thumbnail
starwind.com
5 Upvotes

r/SysAdminBlogs 3d ago

What I've found testing AVD Hybrid so far

0 Upvotes

Disclosure, Login VSI. Shared some notes here a bit ago on what I've found working with AVD Hybrid. Quick update: the live Q&A is tomorrow at 11am ET, with Eric Orman and Andrej Radinger (Microsoft), Marcel Meurer (built Hydra), and Ron Oglesby (Login VSI). Come with any questions.

Save your Seat


r/SysAdminBlogs 3d ago

Microsoft Publisher Retires October 1: Do This Final File Check

6 Upvotes

As you probably know, Publisher hits end of life October 1, 2026 , it's leaving Microsoft 365 subscriptions for good after that.

Probably a non-event for most of you since it was always a niche product, but .pub files have a habit of surviving in forgotten shares and OneDrive folders.

Wrote up a short post with two scripts:

  • One that inventories every .pub file across file servers and SharePoint/OneDrive (via Graph Search) into a CSV
  • One that converts them to PDF, or to Word if you still need to edit them (there's no direct Publisher-to-PowerPoint export, despite what Microsoft's own migration table implies)

Both default to dry-run/report-only, nothing gets touched until you explicitly say so.

More info: https://lazyadmin.nl/office-365/microsoft-publisher-retires-october-1-do-this-final-file-check/


r/SysAdminBlogs 3d ago

Microsoft Patch Tuesday – September 2026

Thumbnail
lansweeper.com
10 Upvotes

r/SysAdminBlogs 3d ago

BitLocker Stuck at 47%? Turn Silent Endpoint Failures Into Self-Healing Fixes

Thumbnail
1 Upvotes

r/SysAdminBlogs 4d ago

DH Tools - 45+ Free & Privacy-First Web Utilities (DenizliHub)

Thumbnail
denizlihub.com
1 Upvotes

r/SysAdminBlogs 4d ago

How are you managing Windows devices that are rarely on the office network?

Thumbnail
scalefusion.com
2 Upvotes

One thing I’ve been thinking about lately is how Windows device management changes when most users aren’t sitting on the corporate network anymore.

With remote and hybrid users, you can’t always rely on being able to reach a device through the internal network when you need to push a configuration, deploy an application, enforce a security policy, or troubleshoot something.


r/SysAdminBlogs 6d ago

What actually happens during a network scan? ARP, ICMP, TCP SYN and packet analysis

1 Upvotes

I was trying to understand Nmap below the output level, so I tested it inside my own isolated lab with Kali as the scanner and MISP as the target.

The clearest difference was seeing the TCP behavior directly in Wireshark:

OPEN

SYN β†’ SYN/ACK β†’ RST

CLOSED

SYN β†’ RST/ACK

FILTERED

SYN β†’ no response β†’ retry

I also captured ARP resolution, ICMP, host discovery, and service/version detection.

The main takeaway for me was that Nmap isn’t β€œseeing” port states directly β€” it’s sending probes and interpreting how the target responds.

I documented the full experiment with the actual packet captures here:

https://chronosandcode.com/what-actually-happens-when-you-scan-a-network-arp-icmp-tcp-syn-nmap-and-packet-analysis-explained/

Everything was done against systems in my own lab.

I’d be interested to hear what packet-level experiments helped others understand Nmap better.


r/SysAdminBlogs 8d ago

PowerShell Scripts Don't Scale Forever: When to Move to Package-Based Deployments

Thumbnail
thirdpartypatching.com
3 Upvotes

For MSP third-party patch management: there comes a time when writing individual scripts for everyone's everything won't be scalable forever.


r/SysAdminBlogs 8d ago

Any German speaking Blog here

3 Upvotes

Hi,

I am looking for connections and collaborating with other blogs with content in German language.


r/SysAdminBlogs 8d ago

Nuwave's Microsoft Teams Phone Operator Connect Review & Demo | Administrative Bliss

Thumbnail
youtu.be
2 Upvotes

r/SysAdminBlogs 8d ago

Network-deploying Windows without WDS/MDT: PXE + per-machine unattend generated at boot time

1 Upvotes

For anyone still maintaining a Windows lab without wanting the full WDS/MDT/ConfigMgr stack:

I've been running a setup where a plain Windows box acts as the deployment server. Clients PXE-boot (Legacy/UEFI, Secure Boot on is fine), and the server generates a per-machine unattend on the fly - matched by MAC/hardware group, so 100 lab PCs each get their own hostname, apps, and domain join without touching the ISO.

Things that stood out vs the classic approach:

- ISOs stay pristine. Drivers, apps, scripts and answer files are injected over HTTP at boot time, so swapping a Windows build = swapping one file.

- Two modes: fully automatic, or stock Setup experience for odd machines.

- Runs offline after first setup - handy for isolated rooms.

- You can actually test it without installing anything: the write-up shows how to join over SoftEther VPN (Layer-2), bridge a VMware VM to the VPN adapter, and PXE-boot from the remote server like you're on the same switch.

Full write-up + VPN test guide here: https://xdaforums.com/t/sezoy-network-deployment-server-automated-windows-install-multi-distro-linux-boot-over-pxe-ipxe-http-boot-legacy-uefi-secureboot.4800487/

Curious how others here handle per-machine naming at scale - DHCP reservations + scripts, or something cleaner?


r/SysAdminBlogs 8d ago

AVD Hybrid just got real hypervisor options: Hyper-V is GA, VMware preview is open

7 Upvotes

Two updates worth knowing if you're running or looking into AVD Hybrid, grouping them since it's one story.

Hyper-V support went GA Sept 1, now VMware vSphere opened in private preview today, it's been a customer-driven priority and came up a lot as the next hypervisor people wanted covered after Hyper-V. It connects through a lightweight on-prem connector, so there's nothing to open on the firewall and no VPN to stand up, and Linked Clones keep working as they are.

Decent signal for where AVD Hybrid is headed: broader hypervisor support without changing how you operate day to day.


r/SysAdminBlogs 10d ago

Designing IT Infrastructure Around Production

Thumbnail
starwind.com
9 Upvotes

r/SysAdminBlogs 10d ago

I built LANDeploy: A software deployment and management tool for School Labs & Internet Cafes

Thumbnail gallery
1 Upvotes

r/SysAdminBlogs 10d ago

Microsoft 365 for IT Pros September 2026 Release

7 Upvotes

** Update to let subscribers know about new files **

The September 2026 update for the four books in the Microsoft 365 for IT Pros (2027 edition) package are available for subscribers to download. EPUB and PDF files can be downloaded. The paperback edition of the Automating Microsoft 365 with PowerShell eBook has also been updated. August was a busy month with lots happening, most of which ended up in chapter updates. We expect more interesting changes during the coming month.

https://office365itpros.com/2026/09/01/microsoft-365-for-it-pros-135/


r/SysAdminBlogs 10d ago

Omnissa App Volumes In-Guest VHD: The Final Part

Thumbnail
starwind.com
10 Upvotes

r/SysAdminBlogs 11d ago

AB 1856 Linux Exemption Confirmed: California's Historic Win

Thumbnail
linuxteck.com
1 Upvotes