<?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 Re: Sort Navisworks Model Tree through CommandLine in Navisworks API Forum</title>
    <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12789871#M572</link>
    <description>or here: &lt;A href="https://badecho.com/index.php/2024/01/13/external-window-messages/" target="_blank"&gt;https://badecho.com/index.php/2024/01/13/external-window-messages/&lt;/A&gt;</description>
    <pubDate>Wed, 22 May 2024 12:07:27 GMT</pubDate>
    <dc:creator>alexisDVJML</dc:creator>
    <dc:date>2024-05-22T12:07:27Z</dc:date>
    <item>
      <title>Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12774290#M555</link>
      <description>&lt;P&gt;&lt;U&gt;Sort Navisworks Model Tree through CommandLine&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We export RVM files from other software and want to merge all those rvm files together and then SORT them alphabetically and publish them as nwd format for Navisworks Freedom.&lt;/P&gt;&lt;P&gt;Sorting works fine from the menus Scene-&amp;gt;Sort, whereas we like to do in a batch script using the commandline functions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Found an API on Navisworks Community and made few changes to the suit latest .net Framework.(4.7)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Old code is under message 2 of 13 of the below link.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/navisworks-api/autodesk-navisworks-api-application-activedocument-models/m-p/4373341#M1089" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/navisworks-api/autodesk-navisworks-api-application-activedocument-models/m-p/4373341#M1089&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;My .NET code is&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;using System;&lt;/P&gt;&lt;P&gt;using System.Collections.Generic;&lt;/P&gt;&lt;P&gt;using System.Linq;&lt;/P&gt;&lt;P&gt;using ComBridge = Autodesk.Navisworks.Api.ComApi.ComApiBridge;&lt;/P&gt;&lt;P&gt;using Autodesk.Navisworks.Api.Plugins;&lt;/P&gt;&lt;P&gt;using Autodesk.Navisworks.Api;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;namespace NavisSortTreeMembers&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [PluginAttribute("NavisSortTreeMembers", "TEST", DisplayName = "NavisSortTreeMembers")]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public class Class1:AddInPlugin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public override int Execute(params string[] parameters)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Document oDoc = Autodesk.Navisworks.Api.Application.ActiveDocument;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //sorting the names of the models&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IEnumerable&amp;lt;Model&amp;gt; oNewSortedModels = oDoc.Models.OrderBy(per =&amp;gt; per.RootItem.DisplayName);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;string&amp;gt; fileArray = new List&amp;lt;string&amp;gt;();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Model oEachModel in oNewSortedModels)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileArray.Add(oEachModel.FileName);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //delete all files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Model oEachModel in oDoc.Models)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // State.DeleteSelectedFiles failed to delete&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // all files at one time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // so have to delete them one by one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ModelItemCollection oMC = new ModelItemCollection();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oMC.Add(oEachModel.RootItem);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;oDoc.CurrentSelection.CopyFrom(oMC);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ComBridge.State.DeleteSelectedFiles();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //append them again with the new order&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.AppendFiles(fileArray);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I have compiled and copied the dll file to the installation folder.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Any sample RVM file which got some elements is good to test.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;My command in powershell is&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;amp;&amp;nbsp;'C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe' -log&amp;nbsp;"C:\MyData\temp\NW_log.txt"&amp;nbsp;-OpenFile&amp;nbsp;"C:\MyData\temp\a.rvm"&amp;nbsp;-ExecuteAddInPlugin ("NavisSortTreeMembers.TEST") &amp;nbsp;-NoGui -Exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;While executing the above code, it opens the Navisworks Manage but then we get an error message as “The Plugin was not found”&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 07:40:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12774290#M555</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-15T07:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12776871#M556</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15500475"&gt;@KRISHNAN_SESHADRI7V4SS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The "The Plugin was not found" error occurs when parentheses are erroneously used with the "-ExecuteAddInPlugin" command. To resolve this issue, refrain from including "(" and ")" when utilizing the command.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Old :&lt;/STRONG&gt;&amp;nbsp;'C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe' -log&amp;nbsp;"C:\MyData\temp\NW_log.txt"&amp;nbsp;-OpenFile&amp;nbsp;"C:\MyData\temp\a.rvm"&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;-ExecuteAddInPlugin ("NavisSortTreeMembers.TEST")&lt;/STRONG&gt;&lt;/EM&gt; &amp;nbsp;-NoGui -Exit&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;New :&lt;/STRONG&gt;&amp;nbsp;'C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe' -log&amp;nbsp;"C:\MyData\temp\NW_log.txt"&amp;nbsp;-OpenFile&amp;nbsp;"C:\MyData\temp\a.rvm"&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;-ExecuteAddInPlugin "NavisSortTreeMembers.TEST"&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp; -NoGui -Exit&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 06:12:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12776871#M556</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2024-05-16T06:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12776988#M557</link>
      <description>&lt;P&gt;Hi, I tried your new command but it also gave the same error, "The PLugin was not found".&lt;/P&gt;&lt;P&gt;So tried this,&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN&gt; 'C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe' -log &lt;/SPAN&gt;&lt;SPAN&gt;"C:\MyData\temp\NW_log.txt"&lt;/SPAN&gt;&lt;SPAN&gt; -OpenFile &lt;/SPAN&gt;&lt;SPAN&gt;"C:\MyData\temp\a.rvm"&lt;/SPAN&gt;&lt;SPAN&gt; -AddPluginAssembly &lt;/SPAN&gt;&lt;SPAN&gt;"C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins\NavisSortTreeMembers.dll"&lt;/SPAN&gt;&lt;SPAN&gt; -ExecuteAddInPlugin &lt;/SPAN&gt;&lt;SPAN&gt;"NavisSortTreeMembers.KRIS"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;-NoGui -Exit&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Which did not throw any error,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;where as i do not see any sorting on the rvm file or the rvm file is untouched.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Could it be any errors on my API?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please clarify and thanks in advance.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please find the log file attached herewith and it shows some error.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LcUSysError::PostFixed: LcUMemory: "11936 arena bytes still allocated at LcUMemory::Terminate. Not terminating."&lt;BR /&gt;*** Component LcUSysError still initialised&lt;BR /&gt;*** Component LcUSysMemory still initialised&lt;BR /&gt;LcOwApplication::Terminate ErrorTerminate&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 May 2024 07:06:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12776988#M557</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-16T07:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777036#M558</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15500475"&gt;@KRISHNAN_SESHADRI7V4SS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please send me a non-confidential sample RVM file for testing?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 07:34:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777036#M558</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2024-05-16T07:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777154#M559</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the sample. rvm zipped and attached herewith.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Selection Tree hierarchy under /ZONE-PIPING-AREA03, is sorted in desending order which i am trying to sort using the API code. FYI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 08:07:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777154#M559</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-16T08:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777353#M560</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attempted to utilize the code provided below. &lt;/P&gt;
&lt;LI-CODE lang="general"&gt;namespace Navisworks_2024
{   
    [PluginAttribute("Navisworks2024","ADSK",ToolTip = "NW-2024",DisplayName = "My Plugin")]     
    public class Class1 : AddInPlugin
    {
        public override int Execute(params string[] parameters)
        {
            
            Document oDoc = Autodesk.Navisworks.Api.Application.ActiveDocument;
            try
            {
                string commandId = "RoamerGUI_EDIT_SORT";
                Autodesk.Navisworks.Api.Interop.LcUCIPExecutionContext av = Autodesk.Navisworks.Api.Interop.LcUCIPExecutionContext.eTOOLBAR;
                try
                {
                    Autodesk.Navisworks.Api.Interop.LcRmFrameworkInterface.ExecuteCommand(commandId, av);
                    Autodesk.Navisworks.Api.Interop.LcRmFrameworkInterface.ExecuteCommand(commandId, av);
                }
                catch
                {
                    System.Windows.Forms.MessageBox.Show("This tool does not appear to be supported");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

            return 0;           
        }
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;I am executing the following command.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;“C:\Program Files\Autodesk\Navisworks Manage 2024\Roamer.exe” -log "C:\Users\NW_log.txt" -OpenFile "C:\Users\Sample.rvm" -AddPluginAssembly “C:\Users\Navisworks 2024\bin\Debug\Navisworks 2024.dll” -ExecuteAddInPlugin "Navisworks2024.ADSK" &lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Here is the result that I am receiving.&lt;/P&gt;
&lt;DIV class="flex-1 overflow-hidden"&gt;
&lt;DIV class="react-scroll-to-bottom--css-pbrst-79elbk h-full"&gt;
&lt;DIV class="react-scroll-to-bottom--css-pbrst-1n7m0yu"&gt;
&lt;DIV class="flex flex-col text-sm pb-9"&gt;
&lt;DIV class="w-full text-token-text-primary" dir="auto" data-testid="conversation-turn-3" data-scroll-anchor="true"&gt;
&lt;DIV class="py-2 juice:py-[18px] px-3 text-base md:px-4 m-auto md:px-5 lg:px-1 xl:px-5"&gt;
&lt;DIV class="mx-auto flex flex-1 gap-3 text-base juice:gap-4 juice:md:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]"&gt;
&lt;DIV class="group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn"&gt;
&lt;DIV class="flex-col gap-1 md:gap-3"&gt;
&lt;DIV class="flex flex-grow flex-col max-w-full"&gt;
&lt;DIV class="min-h-[20px] text-message flex flex-col items-start whitespace-pre-wrap break-words [.text-message+&amp;amp;]:mt-5 juice:w-full juice:items-end overflow-x-auto gap-2" dir="auto" data-message-author-role="assistant" data-message-id="c04db039-77ee-46f8-ad81-bdb7eb3cfa52"&gt;
&lt;DIV class="flex w-full flex-col gap-1 juice:empty:hidden juice:first:pt-[3px]"&gt;
&lt;DIV class="markdown prose w-full break-words dark:prose-invert light"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Result.png" style="width: 482px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1363207i4C0A3F9644186BFA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Result.png" alt="Result.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 09:40:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777353#M560</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2024-05-16T09:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777686#M561</link>
      <description>&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;It works fine.&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 12:21:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777686#M561</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-16T12:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777755#M562</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I executed your command but how to save the file after sorting using the API with -NoGui option.&lt;/P&gt;&lt;P&gt;I need to say YES to save it seems.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;“C:\Program Files\Autodesk\Navisworks Manage 2024\Roamer.exe” -log &lt;/SPAN&gt;&lt;SPAN&gt;"C:\Users\NW_log.txt"&lt;/SPAN&gt;&lt;SPAN&gt; -OpenFile &lt;/SPAN&gt;&lt;SPAN&gt;"C:\Users\Sample.rvm"&lt;/SPAN&gt;&lt;SPAN&gt; -AddPluginAssembly “C:\Users\Navisworks 2024\bin\Debug\Navisworks 2024.dll” -ExecuteAddInPlugin &lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;"Navisworks2024.ADSK"&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;-SaveFile &lt;/SPAN&gt;&lt;SPAN&gt;"C:\MyData\temp\Sample.nwd"&lt;/SPAN&gt;&lt;SPAN&gt; -NoGui &amp;nbsp;-Exit&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 16 May 2024 12:50:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777755#M562</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-16T12:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777825#M563</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15500475"&gt;@KRISHNAN_SESHADRI7V4SS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Everything seems to be working fine at my end. I am able to save file without any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;“C:\Program Files\Autodesk\Navisworks Manage 2024\Roamer.exe” -log "C:\Users\NW_log.txt" -OpenFile "C:\Users\Sample.rvm" -AddPluginAssembly “C:\Users\Navisworks 2024\bin\Debug\Navisworks 2024.dll” -ExecuteAddInPlugin "Navisworks2024.ADSK" -SaveFile "C:\Users\Desktop\Output.nwd" -NoGui -Exit&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 13:17:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777825#M563</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2024-05-16T13:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777932#M564</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I copied your commandline syntax and only changed the manage 2024 to 2022.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I give the command as below, the nwd file is not created&lt;/P&gt;&lt;P&gt;"C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe" -log "C:\MyData\temp\NeW_log.txt" -OpenFile "C:\MyData\temp\Sample.rvm" -AddPluginAssembly "C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins\NavisSortTreeMembers.dll" -ExecuteAddInPlugin "Navisworks2024.ADSK" -SaveFile "C:\MyData\temp\Output.nwd" -NoGui -Exit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where as when&amp;nbsp;I give the command as below,&lt;/P&gt;&lt;P&gt;"C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe" -log "C:\MyData\temp\NeW_log.txt" -OpenFile "C:\MyData\temp\Sample.rvm" -AddPluginAssembly "C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins\NavisSortTreeMembers.dll" -ExecuteAddInPlugin "Navisworks2024.ADSK" -SaveFile "C:\MyData\temp\Output.nwd"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It opens navis manage and I get a warning message that&lt;/P&gt;&lt;P&gt;"You will not be able to undo this operation. Are you sure you want to sort the selection tree? " with options to click Yes or NO. If i say Yes, It sorts and saves a nwd file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i think running the commandline is waiting for an answer yesor no for sorting command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please clarify.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishnan&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 14:01:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12777932#M564</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-16T14:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12778140#M565</link>
      <description>&lt;P&gt;hi, is there a list of all command line available ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you explain those line splease ?&lt;/P&gt;&lt;P&gt;Autodesk.Navisworks.Api.Interop.LcUCIPExecutionContext av = Autodesk.Navisworks.Api.Interop.LcUCIPExecutionContext.eTOOLBAR;&lt;BR /&gt;Autodesk.Navisworks.Api.Interop.LcRmFrameworkInterface.ExecuteCommand(commandId, av);&lt;BR /&gt;Autodesk.Navisworks.Api.Interop.LcRmFrameworkInterface.ExecuteCommand(commandId, av);&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 15:20:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12778140#M565</guid>
      <dc:creator>lanneauolivier</dc:creator>
      <dc:date>2024-05-16T15:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12778471#M566</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15500475"&gt;@KRISHNAN_SESHADRI7V4SS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked with Navisworks Engineering team.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you've set &lt;/SPAN&gt;&lt;CODE&gt;-NoGui&lt;/CODE&gt;&lt;SPAN&gt;, that dialog shouldn't pop up, So it looks like a bug. Unfortunately, there's no workaround for it. Regrettably, there's no method to suppress the&amp;nbsp; dialog via the command line.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7328331"&gt;@lanneauolivier&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please take a look at this below link&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.houseofbim.com/posts/naviworks-net-executecommand-method/" target="_blank" rel="noopener"&gt;https://www.houseofbim.com/posts/naviworks-net-executecommand-method/&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 17:27:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12778471#M566</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2024-05-16T17:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12782794#M567</link>
      <description>Same interest here &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Also calling twice maybe to invert the sort?</description>
      <pubDate>Sun, 19 May 2024 01:42:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12782794#M567</guid>
      <dc:creator>alexisDVJML</dc:creator>
      <dc:date>2024-05-19T01:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12783149#M568</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The API given by &lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5661631" target="_self"&gt;&lt;SPAN class=""&gt;naveen.kumar.t&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;works and it sorts on normal mode but the problem is with NoGUI option while running on commandline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When running like this,&lt;/P&gt;&lt;P&gt;C:\&amp;gt;"C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe" -log "C:\MyData\temp\NW_log.txt" -OpenFile "C:\MyData\temp\Sample.rvm" -AddPluginAssembly "C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins\NavisSortTreeMembers.dll" -ExecuteAddInPlugin "Navisworks2024.ADSK"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It opens Navisworks and loads the Sample.rvm file and then a popup is shown(as per the attachment), if we are sure to Sort the selection tree. Choosing YES sorts the tree.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where as, running with -NoGui option.&lt;/P&gt;&lt;P&gt;C:\&amp;gt;"C:\Program Files\Autodesk\Navisworks Manage 2022\Roamer.exe" -log "C:\MyData\temp\NW_log.txt" -OpenFile "C:\MyData\temp\Sample.rvm" -AddPluginAssembly "C:\Program Files\Autodesk\Navisworks Manage 2022\Plugins\NavisSortTreeMembers.dll" -ExecuteAddInPlugin "Navisworks2024.ADSK" -NoGUI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This does not do anything. May be its waiting for answer if it should Sort or not.&lt;/P&gt;&lt;P&gt;I tried to pass on Yes on command line after -NoGui as Y or "Y" or /Y and many other but it throws errors when given Yes in any formats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i have no solutions for now to run this Sort on script, which is my requirement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 May 2024 10:25:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12783149#M568</guid>
      <dc:creator>KRISHNAN_SESHADRI7V4SS</dc:creator>
      <dc:date>2024-05-19T10:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12783161#M569</link>
      <description>If you can run this in debugger mode with -NoGui, maybe try to hack the window creation using Win32 API?&lt;BR /&gt;Or if Naveen can tell us which internal Navisworks class they use to bring this dialog maybe hack this class just the time of these calls?&lt;BR /&gt;Crazy stuff I know...</description>
      <pubDate>Sun, 19 May 2024 10:47:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12783161#M569</guid>
      <dc:creator>alexisDVJML</dc:creator>
      <dc:date>2024-05-19T10:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12786788#M570</link>
      <description>&lt;P&gt;Sending a "Enter" key hopping to clic "Yes" ? ...&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 09:10:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12786788#M570</guid>
      <dc:creator>lanneauolivier</dc:creator>
      <dc:date>2024-05-21T09:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12789866#M571</link>
      <description>&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; that would be a last resort option, yes &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Would prefeably have to detect window creation, than send correct meesage.&lt;BR /&gt;&lt;BR /&gt;Maybe something like done here:&lt;BR /&gt;&lt;A href="https://www.codeproject.com/Articles/24066/Intercept-and-Manage-Windows-Originated-by-Third-p" target="_blank"&gt;https://www.codeproject.com/Articles/24066/Intercept-and-Manage-Windows-Originated-by-Third-p&lt;/A&gt;</description>
      <pubDate>Wed, 22 May 2024 12:05:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12789866#M571</guid>
      <dc:creator>alexisDVJML</dc:creator>
      <dc:date>2024-05-22T12:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Navisworks Model Tree through CommandLine</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12789871#M572</link>
      <description>or here: &lt;A href="https://badecho.com/index.php/2024/01/13/external-window-messages/" target="_blank"&gt;https://badecho.com/index.php/2024/01/13/external-window-messages/&lt;/A&gt;</description>
      <pubDate>Wed, 22 May 2024 12:07:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/sort-navisworks-model-tree-through-commandline/m-p/12789871#M572</guid>
      <dc:creator>alexisDVJML</dc:creator>
      <dc:date>2024-05-22T12:07:27Z</dc:date>
    </item>
  </channel>
</rss>

