Hi Sinan Yıldırım,
Based on the install_log.txt you provided, the installation is hanging on the server-side process (Process ID 04:E8) specifically while querying Shell Folders. The log floods with SHELL32::SHGetFolderPath entries and then abruptly stops. This indicates the Windows Installer Service is attempting to resolve a User Profile directory (such as 'My Documents', 'AppData', or 'Start Menu') and is blocked waiting for a response.
This is a specific, known issue on Windows Server environments where Folder Redirection policies or Mapped Drives point to a network location that is currently unreachable or disconnected. The installer hangs indefinitely waiting for the network timeout.
Please perform the following steps to resolve this:
- Check User Shell Folders: Open the Registry Editor (
regedit.exe) and navigate to:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell FoldersReview the data column for all entries. If any path points to a network share (starts with\\or a mapped drive letter likeZ:\) that is disconnected or offline, temporarily modify it to a local path (e.g.,%USERPROFILE%\Documents). - Clear Disconnected Drives: Open an elevated Command Prompt and type
net use. If you see any mapped drives listed as "Disconnected" or "Reconnecting," remove them usingnet use * /delete /y. - Test with a Local Account (Recommended): To definitively bypass any Domain Group Policy or Profile issues causing this hang, create a new local administrator account on the server (not a Domain account). Log in with this fresh local account and run the installer. This uses a clean registry profile with no network redirections.
VP