Is it possible to upgrade a WID (windows internal database) 2014 to 2016 and also how to apply security updates.

Anandhswarupp 125 Reputation points
2025-03-01T12:14:44.33+00:00

Is it possible to upgrade a WID (windows internal database) 2014 to 2016 and also how to apply security updates. provide details about 'WID' and also how to install 'WID'

please provide any documents using GUI.

SQL Server Migration Assistant
SQL Server Migration Assistant
A Microsoft tool designed to automate database migration to SQL Server from Access, DB2, MySQL, Oracle, and SAP ASE.
557 questions
0 comments No comments
{count} votes

Accepted answer
  1. Marcin Policht 38,155 Reputation points MVP
    2025-03-01T12:39:14.2266667+00:00

    WID 2014 is included in Windows Server 2012 R2, while WID 2016 is included in Windows Server 2016. AFAIK, WID upgrades are tied to Windows Server versions, so you cannot directly upgrade WID 2014 to 2016 without upgrading the Windows Server itself.

    1. Check Current WID Version
      • Open PowerShell as Administrator and run:
             Get-WmiObject -Namespace "root\Microsoft\SqlServer\ComputerManagement14" -Class SqlServiceAdvancedProperty | Where-Object {$_.PropertyName -eq "Version"}
        
      • If WID is 2014 (12.x.xxxx), you are on Windows Server 2012 R2.
      • If WID is 2016 (13.x.xxxx), you are on Windows Server 2016.
    2. Upgrade Windows Server
      • Since WID is tied to the OS version, upgrade Windows Server 2012 R2 to Windows Server 2016.
      • WID will automatically be upgraded during the process.
      • If WSUS is installed, you may need to reconfigure WSUS after the upgrade.

    Security updates for Windows Internal Database are delivered through Windows Update. To manually check for and install updates:

    1. Check for WID updates in Windows Update:
      • Open SettingsUpdate & SecurityWindows Update.
      • Click Check for updates.
      • If any WID security updates are available, install them.
    2. **Manually install WID security updates **

    To install WID via GUI

    1. Open Server Manager
      • Press Win + R, type servermanager.exe, and press Enter.
    2. Add the WID Feature
      • Click ManageAdd Roles and Features.
      • Choose Role-based or feature-based installation.
      • Select the local server.
      • In the Features section, scroll down and check Windows Internal Database.
    3. Confirm and Install
      • Click Next, then Install.
      • Wait for the installation to complete.
      • Restart the server if prompted.

    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.