Hello Sinan Yıldırım,
Has your issue been solved? If it has, please accept the answer so that it could be spread further to those in need too. If not, is there anything I can help you with? Please let me know. :)
VP
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello everyone, my server is running Windows Server 2025 Standard 24h2 with all updates installed. I'm having trouble installing the 64-bit .msi program called Snow Agent. It gets stuck on the "Please wait while Windows configures Snow Inventory Agent for Windows" screen and doesn't install. I've contacted the Snow Agent developers, and they haven't been able to resolve the issue. Maybe the problem is with Windows.
Hello Sinan Yıldırım,
Has your issue been solved? If it has, please accept the answer so that it could be spread further to those in need too. If not, is there anything I can help you with? Please let me know. :)
VP
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:
regedit.exe) and navigate to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders Review the data column for all entries. If any path points to a network share (starts with \\ or a mapped drive letter like Z:\) that is disconnected or offline, temporarily modify it to a local path (e.g., %USERPROFILE%\Documents).net use. If you see any mapped drives listed as "Disconnected" or "Reconnecting," remove them using net use * /delete /y.VP
The site doesn't allow me to paste all 15 lines here, so I'm uploading it as a file.
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more
Hello again Sinan Yıldırım,
Just following up. While the previous recommendation to generate a verbose log using msiexec /i "path" /L*v is technically sound, we currently lack the specific output from that log to pinpoint the failure. The Windows Installer service on Server OS versions frequently encounters a race condition when the "Remote Desktop Session Host" compatibility layer attempts to coordinate the installation session, even if the RDS role is not fully active. You should bypass this mechanism immediately.
Open the Local Group Policy Editor (gpedit.msc) and navigate to Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Application Compatibility. Locate the policy named Turn off Windows Installer RDS Compatibility and set it to Enabled. After applying this policy and running gpupdate /force in an elevated command prompt, retry the installation. If the installation still hangs, I require the last 15 lines of the verbose log file mentioned previously to determine if a specific custom action in the Snow Agent MSI is failing to return a success code to the main installer thread.
If the issue has been successfully resolved, please consider accepting the answer as it helps other people sharing the same question benefit too. Thank you!
VP