Remote Server Administration Tools

Winsage
March 11, 2026
Microsoft has released the March 2026 Patch Tuesday update, KB5079473, for all supported versions of Windows 11 (25H2 and 24H2). Key changes include: - A Network Speed Test Tool in the Taskbar for measuring Ethernet, Wi-Fi, and cellular performance. - New pan and tilt options for supported cameras in the Settings menu. - Built-in System Monitor (Sysmon) available as an optional feature; users should uninstall previous versions before enabling it. - Remote Server Administration Tools (RSAT) support for Windows 11 Arm64 devices. - Quick Machine Recovery tool enabled for Windows Professional devices not domain-joined or enrolled in enterprise management. - Ability to use .webp image files for desktop backgrounds. - Introduction of new emojis from Emoji 16.0, including a face with bags under the eyes and a fingerprint. - BitLocker improvements for device responsiveness after entering a recovery key. - Enhanced reliability of search functions in File Explorer. Additionally, Microsoft is publishing patch notes for the upcoming version 26H1, which is currently available to Windows Insiders on the Canary Channel but not yet public. The KB5079466 patch for version 26H1 includes features already seen in earlier Windows 11 versions.
Winsage
February 26, 2026
Microsoft has released a non-security feature preview update for Windows 11, designated as version KB5077241, which introduces performance and visual enhancements. This optional update is available for all Windows 11 users and is not yet part of the stable channel, with a full release expected on March 10. Key features of the update include: 1. A built-in network speed test accessible via the taskbar, allowing users to evaluate their network connection's performance. 2. Improvements to the taskbar search function, enabling result previews without opening additional windows. 3. Minor system upgrades, including backup and restore options for select Windows Professional devices, new emojis, an updated accounts menu, a built-in system monitor, and a revamped widgets settings menu. 4. Enhancements to printing services, nearby sharing features, and Windows Update, along with new camera settings for supported devices. 5. Performance improvements in File Explorer, including more reliable window opening using shortcuts and the introduction of an "Extract All" option for non-ZIP archived folders. 6. Optimizations in the Network page of File Explorer for better device display and improvements in display responsiveness after sleep.
Winsage
February 25, 2026
Microsoft has released optional February updates for Windows 11 versions 25H2 and 24H2, which include several enhancements: - A network speed test tool accessible from the taskbar for measuring Ethernet, Wi-Fi, and cellular connections. - Enhanced camera settings with new pan and tilt options for supported cameras. - A built-in version of the System Monitor (Sysmon) tool, available as an optional feature. - Improvements to Remote Server Administration Tools (RSAT) for Windows 11 Arm64 devices. - A new automatic recovery tool for Windows 11 Professional devices not domain-joined. - Support for .webp images as desktop backgrounds. - Introduction of new emojis in the Emoji 16.0 release. - BitLocker improvements to prevent devices from becoming unresponsive after entering a recovery key. Additionally, Microsoft has shared release notes for an upcoming optional update for Windows 11 version 26H1, which is currently only available to Insiders on the Canary Channel and is expected to debut on new devices with advanced silicon.
Winsage
August 12, 2024
Microsoft PowerShell is a command-line tool integrated into Windows 11 that replaces the traditional Command Prompt and enhances automation capabilities. - PowerShell can back up drivers and integrate them into a Windows ISO for reinstalls. - It simplifies the management of Remote Server Administration Tools (RSAT) with a single command. - PowerShell can remove bloatware from Windows to optimize system performance. - Users can back up device drivers using the command: Export-WindowsDriver -Online -Destination "full path of the backup folder". - Server administrators can install RSAT tools with the command: Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online. - PowerShell can remove unwanted applications through a script. - Users can disable Hyper-V virtualization with the command: bcdedit /set hypervisorlaunchtype off. - Administrators can delete user accounts using the command: Remove-LocalUser -Name "USERNAME". - Users can generate a battery health report with the command: powercfg /batteryreport /output "C:battery_report.html". - The Windows Package Manager (Winget) is integrated into PowerShell for managing software installations.
Winsage
August 7, 2024
Remote Server Administration Tools (RSAT) are integrated into Windows and require activation for use. In Windows 11, RSAT can be installed via the Windows Settings app or Windows PowerShell. To install RSAT from Windows Settings: 1. Open Settings from the Start menu. 2. Select System. 3. Click on Optional features. 4. Click on View features in the "Add an optional feature" section. 5. Search for "rsat" to find available RSAT features. 6. Select desired tools and click Next, then Add. To install RSAT using Windows PowerShell: 1. Open Windows PowerShell as Administrator. 2. Enter the command: Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State 3. To install a specific tool, use: Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Add-WindowsCapability -Online To uninstall RSAT: 1. Navigate to Settings > System > Optional Features. 2. Search for the installed RSAT tool, select it, and click Remove. Alternatively, to uninstall using PowerShell: 1. Open PowerShell as Administrator. 2. Execute the command: Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Remove-WindowsCapability -Online
Search