Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / How to Install Remote Server Administration Tools (RSAT) on Windows

June 26, 2023 PowerShellWindows 10Windows 11Windows Server 2019Windows Server 2022

How to Install Remote Server Administration Tools (RSAT) on Windows

The Remote Server Administration Tools (RSAT) allow you to remotely manage roles and features on Windows Server hosts from a Windows workstation. RSAT includes graphical MMC snap-ins, command line tools, and PowerShell modules. RSAT can be installed on Windows Server 2022/2019/2016 as well as on the desktop editions of Windows 10 or 11.

Contents:
  • Installing RSAT Tools on Windows 10 and 11
  • Use PowerShell to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Install Remote Server Administration Tools on Windows Server 2022, 2019, 2016
  • Fix RSAT Installation Error 0x800f0954 on Windows
  • Offline Install RSAT on Windows Using the FoD ISO Image

Installing RSAT Tools on Windows 10 and 11

On Windows 10 and 11, RSAT is installed via the graphical panel Settings -> Apps -> Optional Features -> Add an optional feature.

install rsat via optonal features in windows 10

The Windows optional features list includes components such as OpenSSH server for Windows, built-in SSH client, SNMP service, etc.

Type RSAT in the search bar to view available features. The following RSAT administration tools can be installed on Windows 10/11:

  • RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
  • RSAT: BitLocker Drive Encryption Administration Tools for AD
  • RSAT: Active Directory Certificate Services Tools
  • RSAT: DHCP Server Tools (used to configure and manage DHCP service on Windows Server)
  • RSAT: DNS Server Tools
  • RSAT: Failover Clustering Tools
  • RSAT: File Services Tools
  • RSAT: Group Policy Management Tools – GPO management console and the Group Policy module for PowerShell
  • RSAT: IP Address Management (IPAM) Client
  • RSAT: Data Center Bridging LLDP Tools
  • RSAT: Network Controller Management Tools
  • RSAT: Network Load Balancing Tools
  • RSAT: Remote Access Management Tools
  • RSAT: Remote Desktop Services Tools
  • RSAT: Server Manager
  • RSAT: Shielded VM Tools
  • RSAT: Storage Migration Service Management Tools
  • RSAT: Storage Replica Module for Windows PowerShell
  • RSAT: System Insights Module for Windows PowerShell
  • RSAT: Volume Activation Tools (KMS server console)
  • RSAT: Windows Server Update Services Tools.

Select the required RSAT components and click Install.

You can only install RSAT on Windows 10/11 Professional and Enterprise, not on Windows Home editions.

win10: installing rsat features online

Some RSAT components may require a reboot after installation.

RSAT components are not part of the Windows image and are available as Features on Demand. This means that your computer must be connected to the Internet in order to install RSAT. Windows downloads and installs RSAT binary files from Microsoft Update servers.

The RSAT package was installed as a separate update (MSU file) in previous versions of Windows (before build Windows 10 1809). The KB2693643 update must be downloaded from the Microsoft website and installed manually (https://www.microsoft.com/en-us/download/details.aspx?id=45520).

After installing the KB2693643 update, you can enable the required RSAT components from Control Panel -> Programs and Features -> Turn Windows features on or off (optionalfeatures.exe). Expand the Remote Server Administration Tools and select the admin tools that you want to install.

Install RSAT features in old Windows versions

If you try to install KB2693643 on a newer build of Windows 10 or Windows 11, you will receive an error:

Windows Update Standalone Installer encountered and error: 0x8024001d

After installation, the RSAT graphical MMC snap-ins will be available in the Administrative Tools section of the Control Panel (Control Panel\System and Security\Administrative Tools) or under the folder %ProgramData%\Microsoft\Windows\Start Menu\Programs\Administrative Tools.

RSAT graphical snap-ins in Administrative tools of Control panel

Use PowerShell to Install Remote Server Administration Tools (RSAT) on Windows

You can install the RSAT management components on Windows 10 and 11 using PowerShell.

The following PowerShell command lists the RSAT components installed on your computer

Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State

In this example, the DHCP and DNS management tools are installed (Installed), and all other RSAT modules are missing (NotPresent).

get-windowscapability: list installed rsat items with powershell

You can use the Add-WindowsCapability cmdlet to install RSAT features on Windows.

To install a specific RSAT tool, such as AD management tools (including the ADUC console and the Active Directory module for Windows PowerShell), run the command:

Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

To install the DNS management console and the PowerShell DNSServer module, run:

Add-WindowsCapability –online –Name Rsat.Dns.Tools~~~~0.0.1.0

The following are sample commands for installing other RSAT components:

Add-WindowsCapability -Online -Name Rsat.FileServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.IPAM.Client.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.LLDP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkController.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.CertificateServices.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.DHCP.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.ServerManager.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.Shielded.VM.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.StorageReplica.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.SystemInsights.Management.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.VolumeActivation.Tools~~~~0.0.1.0
Add-WindowsCapability -Online -Name Rsat.WSUS.Tools~~~~0.0.1.0

The DISM.exe tool can also be used to install RSAT on Windows:

DISM.exe /Online /add-capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 /CapabilityName:Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0 /CapabilityName:Rsat.WSUS.Tools~~~~0.0.1.0

To install only the missing RSAT tools, run:

Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent | Add-WindowsCapability –Online

Add-WindowsCapability install rsat using powershell

Now check that the RSAT tools are installed (Installed state).

all rsat tools installed in windows 10 1809

In order to uninstall the RSAT feature on Windows, use the command:

Remove-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0

How to Install Remote Server Administration Tools on Windows Server 2022, 2019, 2016

No Internet access is required to install RSAT on Windows Server. The RSAT tools can be installed when you install the appropriate roles or features of Windows Server, or you can install them by using the Server Manager (Add Roles and Features -> Features -> Remote Server Administration Tools).  All RSAT components are divided into two sections: Feature Administration Tools and Role Administration Tools. Select the tools you want to install and click Next -> Next.

windows server: install remote server administration tools

Use the Install-WindowsFeature cmdlet to install RSAT on Windows Server. List RSAT tools available on Windows Server 2022, 2019, and 2016:

Get-WindowsFeature| Where-Object {$_.name -like "*RSAT*"}| ft Name,Installstate

Specify the name of the selected RSAT component to be installed. For example, let’s install the RDS Licensing Diagnosis console:

Install-WindowsFeature RSAT-RDS-Licensing-Diagnosis-UI

windows server 2022 and 2019: Install-WindowsFeature RSAT

Install the Hyper-V Manager remote management console and the Hyper-V PowerShell module:

Get-WindowsFeature | Where-Object {$_.Name -like "RSAT-Hyper-V-Tools"}| Install-WindowsFeature -IncludeAllSubFeature

You can access installed graphical RSAT consoles from Server Manager or through the Control Panel.

Fix RSAT Installation Error 0x800f0954 on Windows

If your Windows computer is configured to receive updates from a local update server (WSUS) or SCCM (Configuration Manager) SUP, you will receive an error message when you try to install RSAT using  the GUI, Add-WindowsCapability or DISM:

0x800f0954
No features to install

DISM add-capability rsat error 0x800f0954

In this case, Windows attempts to download the RSAT package from your local update server and returns 0x800f0954 error.

To ignore local WSUS during the installation of additional Windows features and Features On Demand (including RSAT), you must enable a special Group Policy option

  1. Open the local GPO editor gpedit.msc or use the domain Group Policy Management Console (gpmc.msc);
  2. Go to the  Computer Configuration -> Administrative Templates -> System;
  3. Enable the policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS);windows 10 1903 policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS)
  4. Save the changes and update Group Policy settings (gpupdate /force);
  5. Restart the Windows Update service:
    net stop wuauserv
    net start wuauserv

The installation of RSAT using PowerShell or DISM should now be completed without any errors.

Connection to Microsoft Update when retrieving RSAT components may be blocked by some Windows registry settings. Change the values of the following registry parameters in the HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate key if you get error 0x8024002e when installing RSAT:

  • DoNotConnectToWindowsUpdateInternetLocations = 0
  • DisableWindowsUpdateAccess = 0

Then restart the wuauserv service.

Offline Install RSAT on Windows Using the FoD ISO Image

If you cannot access the Microsoft Update servers directly from your workstation, you can use the offline installation of RSAT (recommended for disconnected networks without Internet access).

windows10 fod offline: No features to install

You must download the ISO image containing the FoD components for your version of Windows from the Microsoft website (or from the Volume Licensing Service Center, VLSC) in order to install RSAT offline.

  • For Windows 10 2004 and newer — https://learn.microsoft.com/en-us/azure/virtual-desktop/language-packs (FOD Disk 1 ISO)
  • For Windows 11 21H2/22H2– https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs (Language and Optional Features ISO)

For example, for Windows 10 22H2 x64 you need to download the image file 19041.1.191206-1406.vb_release_amd64fre_FOD-PACKAGES_OEM_PT1_amd64fre_MULTI.iso (about 5 GB). Extract the contents of the ISO image to the shared network folder. You will get a set of *.CAB files, including RSAT components.

Now, to install RSAT components on a Windows workstation, specify the path to this shared network directory with FoD in the -Source parameter:

Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -LimitAccess -Source \\fs01\Windows-FOD\Win102004x64\

Add-WindowsCapability install rsat from shared folder FOD source

You can also use the above Group Policy option to specify the path to the directory containing the FoD image components. Specify the UNC path to the directory containing the FoD files in the Alternative source file path parameter.

windows 10 1903 fod source path via gpo

Or, you can set this parameter in the registry with a GPP by specifying the path to the FoD directory in the LocalSourcePath parameter (REG_Expand_SZ) under the registry key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Servicing.
Users will now be able to install the RSAT components in Windows on their own using the graphical interface of Manage Optional Features.

Common Remote Server Administration Tools Installation Errors on Windows:

  • 0x8024402c, 0x80072f8f – Windows cannot access the Microsoft Update servers to download RSAT files. Check that you have Internet access or install the components from a local FoD image: Add-WindowsCapability -Online -Name Rsat.Dns.Tools~~~~0.0.1.0 -LimitAccess -Source E:\RSAT\
  • 0x800f081f – check the path to the directory containing the RSAT components specified in the  –Source parameter;
  • 0x800f0950 – the error is similar to 0x800f0954;
  • 0x80070490 – check and repair your Windows image using DISM: DISM /Online /Cleanup-Image /RestoreHealth

33 comments
22
Facebook Twitter Google + Pinterest
previous post
How to Reset the Group Policy Settings on Windows
next post
Find Inactive (Unused) Distribution Lists in Exchange/Microsoft 365

Related Reading

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

October 15, 2023

How to Query and Change Teams User Presence...

October 8, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

33 comments

Vandrey Trindade October 4, 2018 - 1:41 pm

What I did in my work computer was: Try to install all RSAT features using PowerShell, error 0x800f0954 showed up, then I wen to settings, Windows Update, search online for updates. Then it downloaded and installed all RSAT tools for me, without having to disable WSUS.

Reply
Xajuan October 16, 2019 - 5:10 pm

Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent |select name| Add-WindowsCapability -Online

Reply
Michael Patterson October 4, 2018 - 4:29 pm

just a few typos in there otherwise good work.
You have the following in a few spots
Add-WindowsCapacity

Should be
Add-WindowsCapability

Reply
admin October 5, 2018 - 1:09 pm

Thanks! I fixed the error

Reply
Daniel_Laixer February 28, 2022 - 11:14 am

You’re missing one, guys:

“You can use the Add-WindowsCapacity cmdlet to install RSAT features on Windows.”

Reply
admin February 28, 2022 - 11:37 am

Thanks!

Reply
Eduardo Chou October 10, 2018 - 3:08 pm

I can’t see BitLocker Recovery Key or BitLocker tab even tough it’s installed. I wondering if is it a bug?!

Reply
kevin January 3, 2019 - 6:39 pm

Love the article!

Reply
Henning C. Nielsen January 28, 2019 - 11:27 am

The command to install only disabled RSAT components can be made simpler. Like this:
Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent | Add-WindowsCapability -Online

Reply
Nathan April 22, 2019 - 2:00 am

[My New Blog Post]: Quick Start Guide RSAT Windows 10 1903 Offline Feature On Demand – SCCM-MDT OSD.

Use this quick guide to install RSAT tools for Windows 10 1903 (or 1809) without the need for an internet connection when using an SCCM or MDT OS Deployment task sequence.

Sure you can find ONLINE PowerShell scripts but that requires an internet connection. This blog post removes that need for customers. #Windows10 #MDT #WaaS #SCCM

Reply
Установка Remote Server Administration Tools (RSAT) в Windows 10 v1903 в Offline-режиме - Блог IT-KB May 31, 2019 - 10:50 am

[…] этой ситуации администраторы используют разные пути. Некоторые идут по пути наименьшего сопротивления, не заморачиваясь при этом вопросами удобства и […]

Reply
J June 9, 2019 - 7:59 am

“(…) starting from Windows 10 1809 (17763), it is no longer necessary to download the latest version of RSAT from Microsoft. Now, the Remote Server Administration Tools package is built into the Windows 10 image (…)”
It’s incorrect – you still have to download RSAT from Microsoft (if it were already in the Windows 10 image, why the need to connect to Windows Update?). If you are offline it seems that a iso from VLSC is needed to add this feature.

Reply
Graham July 11, 2019 - 10:24 am

Thanks for you post – it helped me to eventually get these tools installed. As a dinosaur not yet well-versed in using PowerShell, your script was very useful.

Reply
Mike C July 15, 2019 - 12:22 pm

This is the best write up/article i have come across for this topic!

Thanks for taking the time to share, its a very valuable reference.

Reply
yahol July 30, 2019 - 7:37 am

Finally a solution that works (without need to download iso image).
Thank you!

Reply
Jos August 26, 2019 - 1:09 pm

Very useful post! Thanks mate! I needed to read until the bottom. The WSUS regkey finally made my day.

Reply
Sabir April 2, 2020 - 8:50 pm

Getting the following error while installing RSAT for 1809 via PS:
Any suggestions?
=============
Add-WindowsCapability : Add-WindowsCapability failed. Error code = 0x8024402c
At line:1 char:1
+ Add-WindowsCapability –online –Name Rsat.ActiveDirectory.DS-LDS.Tools …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand
=========
Thanks,

Sabir

Reply
admin April 14, 2020 - 8:18 am

Open the Group Policy Editorr (gpedit.msc) -> Computer Configuration -> Admin. Templates -> Windows Components -> Windows Update -> Specify intranet Microsoft update service location -> Disabled
Reboot your computer and try to install RSAT components.

Reply
Brenton April 16, 2020 - 10:04 am

Thanks this was very useful and just what i needed

Reply
hasan September 8, 2020 - 6:00 pm

I get the installation completed successfully. But when I check the status its in “staged” and not “installed” status. How to get these in installed status? Since they are in “Staged” I cannot see any tools.

Reply
ksjdbfd October 25, 2020 - 6:33 am

Hi Hasan,

RSAT does not work for Windows 10 Home (I had this issue) It works only for Professional versions.
Ref: https://docs.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/remote-server-administration-tools

Hope that helps.

Reply
Morten February 3, 2021 - 8:47 am

Great post! Really got around the subject – thanks!

Reply
Rodrigo Fuoco April 28, 2021 - 1:42 pm

Hi, Getting the following error while installing RSAT for 20H2 via PS:
Any suggestions?
Add-WindowsCapability -online -Name “Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0” Add-WindowsCapability : Error de Add-WindowsCapability. Código de error = 0x80240438
En línea: 1 Carácter: 1
+ Add-WindowsCapability –online –Name “Rsat.GroupPolicy.Management.Tool …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand

Reply
Artur May 7, 2021 - 8:33 am

I get this after when I try to install AD components. ALready did trick with regkey and gpedit.msc

Add-WindowsCapability : Add-WindowsCapability failed. Error code = 0x80072f8f
At line:1 char:1
+ Add-WindowsCapability –online –Name “Rsat.ActiveDirectory.DS-LDS.Tool …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-WindowsCapability], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsCapabilityCommand

Any suggestions ? Need AD directory ASAP but cant add it :/

Reply
Artur May 10, 2021 - 10:08 am

Ok, problem solved.
Problem was in domain policy / LAN blocking installation. Connecting workstation to hotspot solved the issue. RSAT finally installed 🙂

Reply
Allen Suski October 4, 2021 - 10:30 pm

Thank you for the very clear and useful information. Using the PS option to disable WSUS helped me through the installation of these tools in an enterprise environment where I do not manage the WSUS server.

Reply
ITGUY March 28, 2022 - 7:57 pm

For people with gpo set wsus servers and a local computer admin account, you can do the following form an elevated powershell prompt.

Open up the registry editor by typing regedit, navigate to the following path.

HKLM/Software/Policies/Microsoft/Windows/WindowsUpdate/AU/

Change the value from 1 to 0 for the UseWUServer key.

Restart the WSUS Service with the following command.

restart-service “windows update”

Open up a administrative powershell prompt and run the following command.

Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online

In the open registry editor, navigate to the following path.

HKLM/Software/Policies/Microsoft/Windows/WindowsUpdate/AU/

Change the value from 0 to 1 for the UseWUServer key.

Restart the WSUS Service with the following command.

restart-service “windows update”

This changes the setting back to original.

Reply
cheers May 17, 2022 - 3:24 pm

no such key in my registry

Reply
Daylon April 6, 2022 - 8:07 pm

Installation Error 0x800f0954 on Windows 10, Saving with the same steps for windows 11.
Thx!!

Reply
Sonia Singh June 8, 2022 - 6:33 am

Error 0x800f0954 usually occurs at the time of installing the .NET Framework or sub-components on Windows 10.

Reply
Tchoupi September 28, 2022 - 6:56 am

Thanks you very mutch for this post.
It’s a very good memento for PowerShell CLI.

Reply
Nalin March 13, 2023 - 12:18 pm

I was getting a 0x8024002E error trying to install this DSA and GPMC. Had to set a a regkey HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate –DisableWindowsUpdateAccess key to 0 and then run the powershell commands on administrative powershell window. That got them installed.

The add feature operation didn’t work. Thanks for this page. really helpful.

Reply
Hotshot March 24, 2023 - 3:19 pm

Thanks a lot, it worked.

Reply

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023
  • How to Use Ansible to Manage Windows Machines

    September 25, 2023
  • Installing Language Pack in Windows 10/11 with PowerShell

    September 15, 2023
  • Configure Email Forwarding for Mailbox on Exchange Server/Microsoft 365

    September 14, 2023
  • How to View and Change BIOS (UEFI) Settings with PowerShell

    September 13, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Configuring Port Forwarding in Windows
  • Manage Windows Updates with PSWindowsUpdate PowerShell Module
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • How to Delete Old User Profiles in Windows
  • Configuring SFTP (SSH FTP) Server on Windows
  • Adding Drivers into VMWare ESXi Installation Image
Footer Logo

@2014 - 2023 - Windows OS Hub. All about operating systems for sysadmins


Back To Top