I cannot install the snow agent software.

Sinan Yıldırım 0 Reputation points
2026-02-05T11:11:48.15+00:00

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.enter image description here

Windows for business | Windows Server | Performance | Application technologies and compatibility

6 answers

Sort by: Newest
  1. VPHAN 43,565 Reputation points Independent Advisor
    2026-02-24T18:53:53.4333333+00:00

    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

    Was this answer helpful?

    0 comments No comments

  2. VPHAN 43,565 Reputation points Independent Advisor
    2026-02-09T15:22:32.09+00:00

    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:

    1. Check User Shell Folders: Open the Registry Editor (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).
    2. 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 using net use * /delete /y.
    3. 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

    Was this answer helpful?

    0 comments No comments

  3. Sinan Yıldırım 0 Reputation points
    2026-02-09T09:11:19.1633333+00:00

    The site doesn't allow me to paste all 15 lines here, so I'm uploading it as a file.

    install_log.txt

    Was this answer helpful?

    0 comments No comments

  4. Deleted

    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

  5. VPHAN 43,565 Reputation points Independent Advisor
    2026-02-07T06:41:04.93+00:00

    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

    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.