Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 566135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:56:44+00:00 2026-05-13T12:56:44+00:00

On our server (win 2008 r2) we enabled the setting force network authentication to

  • 0

On our server (win 2008 r2) we enabled the setting “force network authentication” to enforce that the client must support the NLA, because the port 3389 is directly reachable from the internet. But on Windows XP SP3 the NLA seems to be disabled per default. As I wrote an installer with WIX to distribute the rdp files, I’d also like to install these two registry-entries (one is a comma separated list of type REG_SZ and one is a list of type REG_MULTI_SZ) as descriped in http://support.microsoft.com/kb/951608.

I’ve already tried it with RegistrySearch and RegistryValue, but I haven’t succeded. The main difficulty is how I should handle these comma separated list of type REG_SZ.

Can anyone give me a hint? Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T12:56:45+00:00Added an answer on May 13, 2026 at 12:56 pm

    The standard way to solve this is by installing the hotfix using a bootstrapper mechanism, i.e. a separate “setup.exe” file that first installs the hotfix and then launches your WiX/MSI installer.

    The Visual Studio bootstrapper provides such a mechanism. The packages that can be installed by this bootstrapper need to be described by an XML manifest called package.xml. This file needs to be located in a subfolder of C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages (Visual Studio 2008).

    The following two pages describe how to author/create your own package manifest for KB951608:

    Authoring a Custom Bootstrapper Package (article is for VS 2005, but basically should work with VS 2008 as well)

    Add your own (custom) prerequisite to “ClickOnce” application

    A generator for creating the manifest can be downloaded from MSDN:

    Bootstrapper Manifest Generator

    You can use this tool to create a simple manifest like this:

    <?xml version="1.0" encoding="utf-8"?>
    <Package Name="KB952155" Culture="en-US" xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper">
      <PackageFiles CopyAllPackageFiles="false">
        <PackageFile Name="windowsxp-kb952155-x86-enu.exe" PublicKey="3082010A0282010100A2DB0A8DCFC2C1499BCDAA3A34AD23596BDB6CBE2122B794C8EAAEBFC6D526C232118BBCDA5D2CFB36561E152BAE8F0DDD14A36E284C7F163F41AC8D40B146880DD98194AD9706D05744765CEAF1FC0EE27F74A333CB74E5EFE361A17E03B745FFD53E12D5B0CA5E0DD07BF2B7130DFC606A2885758CB7ADBC85E817B490BEF516B6625DED11DF3AEE215B8BAF8073C345E3958977609BE7AD77C1378D33142F13DB62C9AE1AA94F9867ADD420393071E08D6746E2C61CF40D5074412FE805246A216B49B092C4B239C742A56D5C184AAB8FD78E833E780A47D8A4B28423C3E2F27B66B14A74BD26414B9C6114604E30C882F3D00B707CEE554D77D2085576810203010001" />
      </PackageFiles>
      <Commands Reboot="Defer">
        <Command PackageFile="windowsxp-kb952155-x86-enu.exe">
          <ExitCodes>
            <DefaultExitCode Result="Fail" String="Anunexpectedexitcodewasr" FormatMessageFromSystem="true" />
          </ExitCodes>
        </Command>
      </Commands>
      <Strings>
        <String Name="Culture">en</String>
        <String Name="DisplayName">KB952155</String>
        <String Name="Anunexpectedexitcodewasr">An unexpected exit code was returned from the installer. The installation failed.</String>
      </Strings>
    </Package>
    

    Using a bootstrapper is unfortunately not directly supported by WiX, but you can use a simple MSBuild script to generate one (this requires Visual Studio to be installed though):

    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <PropertyGroup>
        <WindowsSDKPath>$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\GenericBootstrapper\3.5@Path)</WindowsSDKPath>
      </PropertyGroup>
    
        <ItemGroup>
            <BootstrapperFile Include="KB952155">
                <ProductName>KB952155</ProductName>
            </BootstrapperFile>
        </ItemGroup>
    
        <Target Name="Bootstrapper">
            <GenerateBootstrapper ApplicationFile="mySetup.msi" Culture="en-US" ApplicationName="My RDP Setup" OutputPath="C:\myoutputfolder\en-US" BootstrapperItems="@(BootstrapperFile)" Path="$(WindowsSDKPath)" />
        </Target>
    </Project>
    

    This script can be called as a post-build step:

    %WINDIR%\Microsoft.NET\Framework\v3.5\msbuild.exe GenerateBootstrapper.msbuild
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There is a page on our server that's reachable via two different URLs. http://www.spotlight.com/6213-5613-0721
We have a magento 1.5.1 installed on our server. In that the default currency
A client noticed that one of our java applets wasn't working anymore. However, we
On our server, we have several periodical jobs that login to external accounts through
Our server (several Java applications on Debian) handles incoming data (GNSS observations) that should
Our server already has symantic anti-virus with autoprotect enabled w/ regular scans and updates.
In our server/client-setup we're experiencing some weird behaviour. The client is a C/C++-application which
My cofounder and I are setting up our server for our startup. We're using
We are looking to replace our normal Win2008 R2 File server with a Azure
On our production servers (win 2003 with IIS6 and load balanced with an F5

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.