<?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: LISP Weird interaction with (Command ... ) on some workstations in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391799#M1508</link>
    <description>&lt;P&gt;Using English version on all workstations.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To re-focus, incase I was not clear, what would cause a workstation that previously accepted underscore and dot options to not work and throw errors?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "_.layer" "_make" "Testlayer" "") 

returns

Command: make Unknown command "MAKE". Press F1 for help.
Command: TESTLAYER Unknown command "TESTLAYER". Press F1 for help.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;To get the code to work on this workstation, the LISP needs to be changed to:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;(command "_.-Layer" "make" "TESTLAYER" "") or&amp;nbsp;&amp;nbsp;(command "-Layer" "make" "TESTLAYER" "")&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;All other workstations still work and accept the original code, with Underscore and Dot, no Dash.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(command "_.layer" "_make" "Testlayer" "")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Mar 2025 12:34:49 GMT</pubDate>
    <dc:creator>JGranata_GdB</dc:creator>
    <dc:date>2025-03-26T12:34:49Z</dc:date>
    <item>
      <title>LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391631#M1506</link>
      <description>&lt;P&gt;I have been running LISP routines with (command "_.COMMAND" etc.) perfectly fine until recently.&amp;nbsp;&lt;BR /&gt;On some workstation (AutoCAD2025) the routines had started throwing error messages such as below:&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left lia-indent-padding-left-30px"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command: (command "_.Layer" "make" "TESTLAYER" "") &lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;_.Layer &lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command: make Unknown command "MAKE". Press F1 for help.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-align-left lia-indent-padding-left-30px"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command: TESTLAYER Unknown command "TESTLAYER". Press F1 for help.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-align-left"&gt;or&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left lia-indent-padding-left-30px"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command: (command "_.menuload" "C:/LocalCUI/TEST.cuix")&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-align-left lia-indent-padding-left-30px"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;_.menuload&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command:C:/LocalCUI/TEST.cuix Unknown command "CUIX"&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;The initial patchwork solution was to change the ._ to a - , however I am not sure what other downstream issues that changing these will make for all our other routines or possible issues.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I have attempted to search the forums, but found nothing related (might just be searching for the wrong terms).&lt;/P&gt;&lt;P class="lia-align-left"&gt;I though it was a cmdecho issue, but that doesn't seem to solve anything.&lt;/P&gt;&lt;P class="lia-align-left"&gt;I tried resetting the User Profile For AutoCAD2025 (as those same workstations also have C3D and the original codes work file), that also does not resolve the issue.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I have talked with Lee-Mac, and the suggestion to use the combo ._- instead such as&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left lia-indent-padding-left-30px"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;(command "_.-Layer" "make" "TESTLAYER" "")&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-align-left"&gt;While this fixes the issue with Layer command, it does nothing with Menuload command and I have not done enough testing on the various other commands to see if the Menuload is a one off issue and I should be loading in the CUIX using a different method.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Has anyone encounter a similar issue and know how I could resolve the issue without modifying all my routines?&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Is there some variable (environmental or system) that controls if command-line version is used?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 11:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391631#M1506</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-26T11:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391758#M1507</link>
      <description>&lt;P&gt;If you use non-english version you should add underscore to all the options...&lt;/P&gt;
&lt;P&gt;(command "_.layer" "_make" "Testlayer" "")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: Tested in C3D 2025 without issues.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 12:29:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391758#M1507</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2025-03-26T12:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391799#M1508</link>
      <description>&lt;P&gt;Using English version on all workstations.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To re-focus, incase I was not clear, what would cause a workstation that previously accepted underscore and dot options to not work and throw errors?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "_.layer" "_make" "Testlayer" "") 

returns

Command: make Unknown command "MAKE". Press F1 for help.
Command: TESTLAYER Unknown command "TESTLAYER". Press F1 for help.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;To get the code to work on this workstation, the LISP needs to be changed to:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;(command "_.-Layer" "make" "TESTLAYER" "") or&amp;nbsp;&amp;nbsp;(command "-Layer" "make" "TESTLAYER" "")&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;All other workstations still work and accept the original code, with Underscore and Dot, no Dash.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(command "_.layer" "_make" "Testlayer" "")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 12:34:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391799#M1508</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-26T12:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391846#M1509</link>
      <description>&lt;P&gt;Unless you're using a major addon that changes commands (eg. Carlson), then it must be a bug in 2025. Have you done any updates recently?&lt;/P&gt;
&lt;P&gt;I certainly wouldn't recommend any mindless changes to prefixes. It might fix some issues, but more likely not all.&lt;BR /&gt;I don't know of any new sysvars that could be causing this.&lt;BR /&gt;If it's a 2025 issue, it should be thoroughly tested and reported.&lt;BR /&gt;I don't use 2025 on a regular basis, so I can't give advise based on my experience with 2025.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:01:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391846#M1509</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2025-03-26T13:01:51Z</dc:date>
    </item>
    <item>
      <title>Betreff: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391886#M1510</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it seems your ACAD has huge problems, i would run a clean uninstall and clean new install.&lt;/P&gt;&lt;P&gt;Your ACAD doesn't detect your command-run as "Script mode".&lt;/P&gt;&lt;P&gt;Try this: FILEDIA =0&lt;/P&gt;&lt;P&gt;Menuload works, right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would not try to find the issue, because I think there is not just one. ReInstall!&lt;/P&gt;&lt;P&gt;&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;P&gt;&lt;STRONG&gt;Off&lt;/STRONG&gt;topic Note:&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;Command: (command "&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;.Layer&lt;/FONT&gt;" "&lt;FONT color="#0000FF"&gt;make&lt;/FONT&gt;" "TESTLAYER" "") &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;doesn't make sense&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;make sense, works in all language versions&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;(command "&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;.Layer&lt;/FONT&gt;" "&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;make&lt;/FONT&gt;" "TESTLAYER" "") &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;make sense, works in englisch versions only&lt;BR /&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;EM&gt;(command "&lt;FONT color="#0000FF"&gt;.Layer&lt;/FONT&gt;" "&lt;FONT color="#0000FF"&gt;make&lt;/FONT&gt;" "TESTLAYER" "") &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:19:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391886#M1510</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-03-26T13:19:12Z</dc:date>
    </item>
    <item>
      <title>Betreff: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391926#M1511</link>
      <description>&lt;P&gt;Carlson is installed on this workstation, hence the hesitation to just revert back to a DASH command without the Underscore/Dot combo.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can test some more on 2025 to see what I can find and submit a report to AutoDesk.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following CADFFM's advice, I will uninstall and reinstall on the workstation. Was hoping it was something I overlooked - but an isolated issue like this would be easy to fix. After i do that, ill report back.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To answer the questions:&amp;nbsp;&lt;/P&gt;&lt;P&gt;FileDia was set to 1. Even when set to 0, the issues occur on both Layer and MenuLoad.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Correct - Menuload works when run and going through the popup window to find the appropriate CUIX. After loading or unloading the CUIX, those also work as expected.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:36:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13391926#M1511</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-26T13:36:31Z</dc:date>
    </item>
    <item>
      <title>Betreff: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392232#M1512</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;"Carlson is installed on this workstation"&lt;/P&gt;&lt;P&gt;In this case, you have to test AutoCAD WITHOUT Carlson first!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My answe was for Standard AutoCAD installation, without such plugIns&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;"Following CADFFM's advice, I will uninstall and reinstall on the workstation."&lt;/P&gt;&lt;P&gt;It' a good idea, but if the issue comes with carlson, it isn't a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;"FileDia - Even when set to 0, the issues occur on both Layer and MenuLoad"&lt;/P&gt;&lt;P&gt;Filedia=0 has nothing to do with a solution,&lt;/P&gt;&lt;P&gt;but since you have a workaround for LAYER, I mentioned this for menuload - to verify my idea about the internal issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With filedia=0, menuload should work find in your (command statement - with NO PopUp dialog.&lt;/P&gt;&lt;P&gt;You say the menuload dialog appears, also with filedia=0, that's strange like the original issue of this thread.&lt;/P&gt;&lt;P&gt;100% Buggy, nothing how it should works.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Waiting of your new install - test&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;" and submit a report to AutoDesk. "&lt;/P&gt;&lt;P&gt;If it is not a carlson issue, right. What I can say: It is not a general AutoCAD 2025 issue,&lt;/P&gt;&lt;P&gt;it sounds like an installation error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you install and start AutoCAD, without running anti-virus software and with admin rights,&lt;/P&gt;&lt;P&gt;do not use the offered MIGRATION option (if you have older AutoCAD versions installed too)&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 15:16:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392232#M1512</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-03-26T15:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392430#M1513</link>
      <description>&lt;P&gt;Yes - all testing was done with just plain AutoCAD WITHOUT Carlson. I even went as far as uninstalling Carlson so there was no accidental interaction. Granted, Carlson MAY have changed or corrupted something before the uninstall.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 17:11:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392430#M1513</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-26T17:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392486#M1514</link>
      <description>&lt;P&gt;Do you have the latest 2025.1.2 update installed?&lt;/P&gt;&lt;P&gt;Enter ABOUT command, do a screenshot and share that here.&lt;/P&gt;&lt;P&gt;Have you tried downloading and installing 2026 to see if this behavior is resolved on the latest release?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 17:43:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13392486#M1514</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-03-26T17:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394627#M1515</link>
      <description>&lt;P&gt;Performed a basic uninstall (Add/Remove Program through the Windows control panel) and re-install to 2025.1.2 did not resolve the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The computer also has a current install of Civil3D 2025 and Map 3D 2025 on the computer. When running the same routines, these instances do not demonstrate the issue.&lt;/P&gt;&lt;P&gt;The new install of AutoCAD 2026 does not demonstrate the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: This issue only seems to happen in the AutoCAD 2025 install, even after the reinstall.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JGranata_GdB_0-1743096162869.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1482706iDE779811D19EE1E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JGranata_GdB_0-1743096162869.png" alt="JGranata_GdB_0-1743096162869.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 17:39:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394627#M1515</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-27T17:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394716#M1516</link>
      <description>&lt;P&gt;There must be something triggering this since this is happening only on 2025.1.2 and on all your workstations but no one else outside of your office is encountering such problems.&amp;nbsp; Have you tried setting up a new workstation with just Windows OS and doing a clean 2025.1.2 install on that to test to see if the same problem occurs on that?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 18:17:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394716#M1516</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-03-27T18:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394821#M1517</link>
      <description>&lt;P&gt;This is happening only on ONE workstation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The user is happily working on Civil3D with no issues and all basic AutoCAD function is working.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Edit: There is not a LARGE need to resolve this, more so want to know how to incase it comes up again. I can do a Clean wipe of all AutoDesk products, deleting folders in addition to the uninstalls, however I was hoping to not go that route.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 19:20:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13394821#M1517</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-27T19:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13395193#M1518</link>
      <description>&lt;P&gt;Re menuload if menu exists must unload then reload. You need to set the values with the XXX.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(setq Menu_Path "C:\\XXX-CAD-TOOLS\\") ; Path to Menu file
(setq Menu_Name "XXX-CAD-TOOLS") ; pop menu to load
(setq Group_Name "XXXMENU") ; groupname assigned in .mnu or .mns file

(if (menugroup menu_Name)
(command "_MENUUNLOAD" menu_Name)
)
(setq cnt (vla-get-count(vla-get-menuGroups (vlax-get-acad-object))))
(if  (&amp;gt; (vl-string-search  "BRICSCAD" (strcase(getvar 'product))) 0)
(progn
(command "MENULOAD" (strcat Menu_Path Menu_Name ".mnu"))
(menucmd (strcat "P" (rtos (+ cnt 1) 2 0) "=+" menu_Name ".POP1"))
)
(progn
(command "MENULOAD" (strcat Menu_Path Menu_Name ".mnu"))
(menucmd (strcat "P" (rtos (+ cnt 1) 2 0) "=+" menu_Name ".POP1"))
)
)
(setvar "menubar" 1)

(alert "\n Menu loaded \n \n XXX CAD Tools now installed")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 00:26:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13395193#M1518</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-03-28T00:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13396146#M1519</link>
      <description>&lt;P&gt;The "weird" issue I have is that when running the LISP (or just copying code to the command line) using the (COMMAND ... ) code it does not work as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your example here:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(command "MENULOAD" (strcat Menu_Path Menu_Name ".mnu"))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;On the workstation AutoCAD will stop the code and open the popup box, no matter if I have FILEDIA set to 0 or 1 and will stop the code in its tracks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like this situation is a one-off corruption/bug on that computer and not anything related to the existing LISP, ACAD Version or a new SYSTEM or ENVIORNMENTAL variable that I was unaware of.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Current options/paths:&lt;/P&gt;&lt;P&gt;1) I am talking with the user to see if a deep uninstall (Uninstalling all products and then manually deleting all ACAD related projects, folders, register) is needed since an Uninstall/Reinstall of only ACAD2025 is not working,.&lt;BR /&gt;2) Checking with the user to see if moving to ACAD2024 or ACAD2026 is an option, or can they survive using MAP3D and Civil3D only.&amp;nbsp;&lt;BR /&gt;3) Less ideal for me, is to revisit all codes with COMMAND and test if "&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;_.-&lt;/FONT&gt;&lt;/STRONG&gt;"&amp;nbsp; option works on all codes, including adding&amp;nbsp; "&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;/STRONG&gt;" on the option steps [as CADFFM suggested with&amp;nbsp;&lt;EM&gt;(command "&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;.Layer&lt;/FONT&gt;" "&lt;FONT color="#FF0000"&gt;_&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;make&lt;/FONT&gt;" "TESTLAYER" "") ].&amp;nbsp;&lt;/EM&gt;In the process of testing these, I would find the codes that wont work for this user. The least likely option I would do right now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 12:54:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13396146#M1519</guid>
      <dc:creator>JGranata_GdB</dc:creator>
      <dc:date>2025-03-28T12:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13397196#M1520</link>
      <description>&lt;P&gt;For the menuload I am loading the source menu file a mnu, if you used CUI to make a menu then use CUI "Bricscad", CUIX "Acad"&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 23:27:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13397196#M1520</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-03-28T23:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: LISP Weird interaction with (Command ... ) on some workstations</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13397440#M1521</link>
      <description>&lt;P&gt;It sounds you still not on point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My try:&lt;/P&gt;&lt;P&gt;He has a general issue, not just a menuload problem.&lt;/P&gt;&lt;P&gt;Layer command for example. While in automation&amp;nbsp; &amp;gt; menu macro, script, or (send)commands&lt;/P&gt;&lt;P&gt;AutoCAD would start command "-LAYER" instead of sended "LAYER",&lt;/P&gt;&lt;P&gt;but there is on PC that don't follow this rule and open the palette (or dialog),&lt;/P&gt;&lt;P&gt;instead of offering the -layer options in command line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3461002"&gt;@JGranata_GdB&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Installed and started without antivirus software, with addmin rights, okay - I have no idea then.&lt;/P&gt;&lt;P&gt;You tried different windows users, not just the profile every test?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Mar 2025 08:06:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-weird-interaction-with-command-on-some-workstations/m-p/13397440#M1521</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-03-29T08:06:07Z</dc:date>
    </item>
  </channel>
</rss>

