The specified account already exists.

Hello. Can’t fix error.
Using WiX make MSI file. WiX source code:

<?xml version="1.0" encoding="UTF-8"?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

  <Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perUser"/>
    
    <Media Id="1" Cabinet="media.cab" EmbedCab="yes" />

    <SetProperty Id="_INSTALL"   After="FindRelatedProducts" Value="1"><![CDATA[Installed="" AND PREVIOUSVERSIONSINSTALLED=""]]></SetProperty>
    <SetProperty Id="_UNINSTALL" After="FindRelatedProducts" Value="1"><![CDATA[PREVIOUSVERSIONSINSTALLED="" AND REMOVE="ALL"]]></SetProperty>

    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="CommonAppDataFolder">
          <Directory Id="application" Name="DataLogs" />
        </Directory>
    </Directory>

    <Component Id="CreateTestFolder" Directory="application" Guid="06a81104-1e30-421d-87e1-e8a79b4c357a">
      <CreateFolder />
    </Component>

    <DirectoryRef Id="application">
      <Component Id="TempDll" Guid="2f01e9bd-8c26-4375-5d07-92de3ece4134">
        <File Id="TempDll" Name="temp.dll" Source="analytics.dll" KeyPath="no" Checksum="yes"/>
      </Component>
    </DirectoryRef>

    <Feature Id="ProductFeature" Level="1">
      <ComponentRef Id="CreateTestFolder" />
      <ComponentRef Id="TempDll" />
    </Feature>

    <Property Id="COMMAND">parse</Property>

    <CustomAction Id="ExecOpen" Directory="CommonAppDataFolder" Execute="deferred" Impersonate="no" ExeCommand="rundll32 [application]analytics.dll,setup /command=[COMMAND] " Return="ignore" />
    
    <InstallExecuteSequence>
      <Custom Action='ExecOpen' After='InstallFiles'>NOT _UNINSTALL</Custom>
    </InstallExecuteSequence>

  </Product>
</Wix>

After the first launch and successful installation, I move the msi file to another folder and rename it, and then try to start it again.
Error: The specified account already exists.
I need the MSI file to be re-run (without rebuilding MSI for the user).
It can somehow expose that when you restart it was repair or something.
Tried to do a forced repair when reinstalling - still such an error.
In order for it to go away, you need to remove the software from Programs and Features and delete the files from the disk that you installed.
What to do, please help.
How to choose a configuration so that it does not exist.
Some software (Silent Builder, for example) allows you to run the same MSI many times and there are no errors. How do they do it?

Okay, it looks like you have got your Wix mixed up as this is the wrong site for what you are wanting it for.

You need to go to here - https://wixtoolset.org/

Look here to join their mailing list and ask your question in the correct place - https://wixtoolset.org/documentation/