Forum Discussion
SeanBuckle45
Jun 10, 2021Copper Contributor
Unable to install Windows Server Backup on Windows 2019 Essentials
Trying to install Windows Server Backup feature on a newly installed Windows 2019 Essentials server. When trying to install it comes back with the below error: Install-WindowsFeature : The reques...
- Feb 21, 2024
I have gotten this to work simply by doing the following in PowerShell.
Get-WindowsFeature *backup*
Dism /Online /Disable-Feature /FeatureName:WindowsServerBackup
Dism /Online /Enable-Feature /FeatureName:WindowsServerBackup
Now it opens fine.
HavenHospiceMike
Feb 21, 2024Copper Contributor
I have gotten this to work simply by doing the following in PowerShell.
Get-WindowsFeature *backup*
Dism /Online /Disable-Feature /FeatureName:WindowsServerBackup
Dism /Online /Enable-Feature /FeatureName:WindowsServerBackup
Now it opens fine.