Issue in the Installing the SQL Server

Dhivya Krishnan 0 Reputation points
2026-07-30T17:17:19.8333333+00:00

Hi Team,

I'm using the Window 11 OS and the Processor - Intel(R) Core(TM) i3-10110U CPU @ 2.10GHz, 2592 Mhz, 2 Core(s), 4 Logical Processor(s).

When i tried to install Microsoft SQL I was getting this error, please help me to resolve the issue.

User's image

User's image

SQL Server Database Engine

4 answers

Sort by: Most helpful
  1. Dhivya Krishnan 0 Reputation points
    2026-07-31T10:03:08.05+00:00

    1.     Uninstalled OLE

    2.     Uninstalled SQL

    3.     I downloaded everything will be shown

    4.     Rebooting the system,

    5.     Moved to C: drive

    6.     Installing msoledbsql as Adminstrator

    7.     OLE DB Driver installation is completed

    8.     Now will begin the installation of SQL2025-SSEI-StdDev.

    9.     Will use “Download Media” on these option Basic / Custom / Download Media

    10.  Choosen only these feature

    If I cancel(Multiple) it, it will throws error

     

    When I checked the logs in the path “D:\Program Files\Microsoft SQL Server\170\Setup Bootstrap\Log\20260731_143622” I found the issue was

     

    (18) 2026-07-31 14:36:53 SQLArcOnboard: IsItAzureVM cannot reach IMDS, exception System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 169.254.169.254:80

       at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult)

       at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)

       at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)

       --- End of inner exception stack trace ---

       at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)

       at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)

       --- End of inner exception stack trace ---

       at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

       at Microsoft.SqlServer.Configuration.InstallWizard.AzureDetailsHelper.<IsItAzureVM>d__5.MoveNext()

    (16) 2026-07-31 14:36:53 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid

    (16) 2026-07-31 14:36:53 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid

    Was this answer helpful?

    0 comments No comments

  2. Deepesh Dhake 735 Reputation points
    2026-07-30T20:33:03.0566667+00:00

    The real error in your log is the last line: setup can't write to its log folder on the D: drive.

    Please try, in order:

    Confirm the D: drive exists and has free space. If it's missing, full, or read-only, that's your cause.

    Test write access - open Command Prompt as Administrator and run:

     echo test > "D:\Program Files\Microsoft SQL Server\170\Setup Bootstrap\Log\test.txt"
    

    Fails then it's a D: access/space issue (the root cause).

    Succeeds then D: is fine; likely admin rights.

    Run setup as Administrator, or point it to a writable path:

    setup.exe /INSTALLPATH="C:\Program Files\Microsoft SQL Server"

    Was this answer helpful?

    0 comments No comments

  3. Deepesh Dhake 735 Reputation points
    2026-07-30T18:02:58.14+00:00

    Your setup is failing on the step that installs the OLE DB Driver 18 (Install_msoledbsql18_Cpu64_Action). The most common cause is a newer version of that driver already being on the machine.

    Please try this in order:

    Uninstall existing OLE DB drivers - Control Panel then Programs and Features then remove any "Microsoft OLE DB Driver for SQL Server" (18 or 19), then reboot.

    Run setup as Administrator (right-click then Run as administrator). SQL 2025 will reinstall its own driver cleanly.

    If it still fails, check the real cause here:

       findstr /S /I /C:"msoledbsql" /C:"return value 3" "D:\Program Files\Microsoft SQL Server\170\Setup Bootstrap\Log\20260729_165856\*.log"
    

    Was this answer helpful?


  4. AI answer

    2026-07-30T17:17:47.64+00:00

    The screenshot shows the SQL Server installer failing very early with "Unable to install SQL Server (setup.exe)". The log snippet also shows a write attempt to the SQL Server setup bootstrap log path. On Windows 11, the supported path depends on the SQL Server version, and the next step is to identify the exact setup failure from the setup logs.

    Use this path first:

    1. Open File Explorer.
    2. Go to: C:\Program Files\Microsoft SQL Server\170\Setup Bootstrap\Log
    3. Open the latest dated folder.
    4. Check Summary.txt and Detail.txt / Details.txt.

    If the failure is "Wait on the Database Engine recovery handle failed" or similar:

    1. Open the SQL Server error log at: C:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\LOG\ERRORLOG or for Express: C:\Program Files\Microsoft SQL Server\MSSQL16.SQLEXPRESS\MSSQL\LOG\ERRORLOG
    2. Look for a message about "256 misaligned log IOs" or misaligned reads.
    3. If that message exists, the failure matches the known Windows 11 disk sector size issue described in Microsoft guidance.

    If the setup media is damaged or corrupted, use these fixes:

    1. Download the SQL Server image again from the original location, then rerun Setup.
    2. If installing from a network location, copy the installation files to a local drive and run Setup from there.
    3. If the log or error mentions Setup.rll, rename this file and rerun Setup: C:\Program Files\Microsoft SQL Server\1XX\Setup Bootstrap\SQLXXX\resources\1033\Setup.rll Rename it to setup.rll.old.
    4. If using a localized SQL Server version, verify the operating system language settings are compatible. Different language versions of SQL Server instances on the same computer aren’t supported.

    Also verify version support on Windows 11:

    • SQL Server 2025: supported on Windows 11
    • SQL Server 2022: supported on Windows 11
    • SQL Server 2019: supported on Windows 11
    • SQL Server 2017: supported on Windows 11
    • SQL Server 2016 and earlier: not supported on Windows 11

    The processor shown is not the problem based on the provided information.

    The most useful next action is to inspect Summary.txt and the SQL ERRORLOG for the exact failure point. If the error log contains the misaligned IO / sector size message, follow the disk sector size troubleshooting guidance. If not, the failure is more likely corrupted setup media or another setup-specific issue shown in Summary.txt.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

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