<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Intune SYSTEM account issue causing Windows Installer reconfigure msg in Installation &amp; Licensing Forum</title>
    <link>https://forums.autodesk.com/t5/installation-licensing-forum/intune-system-account-issue-causing-windows-installer/m-p/13240139#M833</link>
    <description>&lt;P&gt;I’ve created a PowerShell script that installs AutoCAD 2025 and deployed it to my pilot laptop for testing but I’m getting a 1st time error when launching the start menu shortcut where windows installer appears for a few secs and says reconfiguring or repairing which I thought was odd so checked event viewer and saw ID 1035 for windows installer reconfiguring it?&lt;/P&gt;&lt;P&gt;Any ideas of it might be a broken shortcut or something? I tested this on my VM too but didn’t experience this odd behaviour?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1040&lt;BR /&gt;Beginning a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 3548.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 10005&lt;BR /&gt;Product: AutoCAD 2025 - English -- Run Setup.exe to install AutoCAD 2025 - English.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 11729&lt;BR /&gt;Product: AutoCAD 2025 - English -- Configuration failed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1035&lt;BR /&gt;Windows Installer reconfigured the product. Product Name: AutoCAD 2025 - English. Product Version: 25.0.58.0. Product Language: 3081. Manufacturer: Autodesk. Reconfiguration success or error status: 1603.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1042&lt;BR /&gt;Ending a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 3548.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1040&lt;BR /&gt;Beginning a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 8572.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 11728&lt;BR /&gt;Product: AutoCAD 2025 - English -- Configuration completed successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1035&lt;BR /&gt;Windows Installer reconfigured the product. Product Name: AutoCAD 2025 - English. Product Version: 25.0.58.0. Product Language: 3081. Manufacturer: Autodesk. Reconfiguration success or error status: 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1042&lt;BR /&gt;Ending a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 8572.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: I've just tested this w/ an older 2024 pkg and same issue when deploying from Intune SYSTEM account? obviously not an issue for local ADM....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$msiPath = "C:\Windows\Installer\b69dc.msi"&lt;BR /&gt;$targetDirectory = "C:\Program Files\Autodesk\AutoCAD 2025\UserDataCache"&lt;/P&gt;&lt;P&gt;Ensure target directory exists&lt;BR /&gt;if (-not (Test-Path $targetDirectory)) {&lt;BR /&gt;New-Item -ItemType Directory -Path $targetDirectory -Force&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Set working directory and arguments&lt;BR /&gt;$processStartInfo = @{&lt;BR /&gt;FilePath = "msiexec.exe"&lt;BR /&gt;ArgumentList = @(&lt;BR /&gt;"/i"&lt;BR /&gt;""$msiPath""&lt;BR /&gt;"/qb"&lt;BR /&gt;"REINSTALL=UserData"&lt;BR /&gt;"REINSTALLMODE=uos"&lt;BR /&gt;"ACAD_SECONDARY_INSTALL=1"&lt;BR /&gt;"CURRENTDIRECTORY="$targetDirectory""&lt;BR /&gt;"CLIENTUILEVEL=2"&lt;BR /&gt;"CLIENTPROCESSID=$($PID)"&lt;BR /&gt;)&lt;BR /&gt;WorkingDirectory = $targetDirectory&lt;BR /&gt;Wait = $true&lt;BR /&gt;NoNewWindow = $true&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Execute with specific working directory&lt;BR /&gt;Start-Process @processStartInfo&lt;/P&gt;&lt;P&gt;After further testing came up with above code to reinstall the userdata as once I switched on Windows Installer logging it created a log under %TEMP% and I was able to see what the Windows Installer i.e 1035 error was doing from this log, it appears it was trying to reinstall the local userdata that was missing... interesting stuff but waste of time... looks like I'll have to leave it as badly designed app&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jan 2025 07:09:52 GMT</pubDate>
    <dc:creator>Jarrad_welshSPRUJ</dc:creator>
    <dc:date>2025-01-03T07:09:52Z</dc:date>
    <item>
      <title>Intune SYSTEM account issue causing Windows Installer reconfigure msg</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/intune-system-account-issue-causing-windows-installer/m-p/13240139#M833</link>
      <description>&lt;P&gt;I’ve created a PowerShell script that installs AutoCAD 2025 and deployed it to my pilot laptop for testing but I’m getting a 1st time error when launching the start menu shortcut where windows installer appears for a few secs and says reconfiguring or repairing which I thought was odd so checked event viewer and saw ID 1035 for windows installer reconfiguring it?&lt;/P&gt;&lt;P&gt;Any ideas of it might be a broken shortcut or something? I tested this on my VM too but didn’t experience this odd behaviour?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1040&lt;BR /&gt;Beginning a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 3548.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 10005&lt;BR /&gt;Product: AutoCAD 2025 - English -- Run Setup.exe to install AutoCAD 2025 - English.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 11729&lt;BR /&gt;Product: AutoCAD 2025 - English -- Configuration failed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1035&lt;BR /&gt;Windows Installer reconfigured the product. Product Name: AutoCAD 2025 - English. Product Version: 25.0.58.0. Product Language: 3081. Manufacturer: Autodesk. Reconfiguration success or error status: 1603.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1042&lt;BR /&gt;Ending a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 3548.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1040&lt;BR /&gt;Beginning a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 8572.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 11728&lt;BR /&gt;Product: AutoCAD 2025 - English -- Configuration completed successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1035&lt;BR /&gt;Windows Installer reconfigured the product. Product Name: AutoCAD 2025 - English. Product Version: 25.0.58.0. Product Language: 3081. Manufacturer: Autodesk. Reconfiguration success or error status: 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID 1042&lt;BR /&gt;Ending a Windows Installer transaction: {28B89EEF-8101-0409-2102-CF3F3A09B77D}. Client Process Id: 8572.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: I've just tested this w/ an older 2024 pkg and same issue when deploying from Intune SYSTEM account? obviously not an issue for local ADM....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$msiPath = "C:\Windows\Installer\b69dc.msi"&lt;BR /&gt;$targetDirectory = "C:\Program Files\Autodesk\AutoCAD 2025\UserDataCache"&lt;/P&gt;&lt;P&gt;Ensure target directory exists&lt;BR /&gt;if (-not (Test-Path $targetDirectory)) {&lt;BR /&gt;New-Item -ItemType Directory -Path $targetDirectory -Force&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Set working directory and arguments&lt;BR /&gt;$processStartInfo = @{&lt;BR /&gt;FilePath = "msiexec.exe"&lt;BR /&gt;ArgumentList = @(&lt;BR /&gt;"/i"&lt;BR /&gt;""$msiPath""&lt;BR /&gt;"/qb"&lt;BR /&gt;"REINSTALL=UserData"&lt;BR /&gt;"REINSTALLMODE=uos"&lt;BR /&gt;"ACAD_SECONDARY_INSTALL=1"&lt;BR /&gt;"CURRENTDIRECTORY="$targetDirectory""&lt;BR /&gt;"CLIENTUILEVEL=2"&lt;BR /&gt;"CLIENTPROCESSID=$($PID)"&lt;BR /&gt;)&lt;BR /&gt;WorkingDirectory = $targetDirectory&lt;BR /&gt;Wait = $true&lt;BR /&gt;NoNewWindow = $true&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Execute with specific working directory&lt;BR /&gt;Start-Process @processStartInfo&lt;/P&gt;&lt;P&gt;After further testing came up with above code to reinstall the userdata as once I switched on Windows Installer logging it created a log under %TEMP% and I was able to see what the Windows Installer i.e 1035 error was doing from this log, it appears it was trying to reinstall the local userdata that was missing... interesting stuff but waste of time... looks like I'll have to leave it as badly designed app&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 07:09:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/intune-system-account-issue-causing-windows-installer/m-p/13240139#M833</guid>
      <dc:creator>Jarrad_welshSPRUJ</dc:creator>
      <dc:date>2025-01-03T07:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Intune SYSTEM account issue causing Windows Installer reconfigure msg</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/intune-system-account-issue-causing-windows-installer/m-p/13240271#M834</link>
      <description>&lt;P&gt;looks like I'll have to try this?&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/autodesk-technology-managers/using-intune-for-installations/m-p/12732035" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/autodesk-technology-managers/using-intune-for-installations/m-p/12732035&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/installation-licensing/packaging-autodesk-applications-in-intune-updated-10-05-2024/m-p/11853676#M272070" target="_blank"&gt;https://forums.autodesk.com/t5/installation-licensing/packaging-autodesk-applications-in-intune-updated-10-05-2024/m-p/11853676#M272070&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 07:15:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/intune-system-account-issue-causing-windows-installer/m-p/13240271#M834</guid>
      <dc:creator>Jarrad_welshSPRUJ</dc:creator>
      <dc:date>2025-01-03T07:15:03Z</dc:date>
    </item>
  </channel>
</rss>

