<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nRF Connect Terminal won&amp;#39;t start</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/127506/nrf-connect-terminal-won-t-start</link><description>I followed Lesson 1, exercises 1 and 2 of https://academy.nordicsemi.com/courses/nrf-connect-sdk-fundamentals/ and successfully built and flashed the blinky sample on a nRF54L15-DK. Installations were done according to exercise 1 in the guide. 
 I would</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 19 Mar 2026 11:47:20 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/127506/nrf-connect-terminal-won-t-start" /><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563662?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 11:47:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:22d5d45e-6564-4e79-a160-8e3f31bc455c</guid><dc:creator>Odiug</dc:creator><description>&lt;p&gt;I just realized that the WORKDIR is hardcoded in the script. Better would be:&lt;/p&gt;
&lt;p&gt;set &amp;quot;WORKDIR=%~dp0&amp;quot;&lt;/p&gt;
&lt;p&gt;Then it always opens the shell in the directory from where the script was started.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563660?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 11:29:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:43d5e092-653b-48d3-b65a-f192e3f6a13b</guid><dc:creator>Odiug</dc:creator><description>&lt;p&gt;But it would be very much appreciated if Nordic would fix the issue. ;-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563657?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 10:59:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:77659c70-f4b2-4536-a11e-7d770153a862</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;I can confirm this is a workaround for starting a cmd window with the correct nRF Connect environment variables set&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563653?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 10:35:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a492aaa2-5cc7-4b0e-bb25-eb45783aac9e</guid><dc:creator>Odiug</dc:creator><description>&lt;p&gt;Yesterday, Copilot provided me with a workaround .bat. You can use this to open a cmd.exe with the correct paths and environment set and then start VScode from there with &amp;quot;code .&amp;quot;.&lt;/p&gt;
&lt;p&gt;Beware!!! You have to adapt it to your SDK and toolchain!!!&lt;/p&gt;
&lt;p&gt;Unfortunately, it does not work to add it with Insert-&amp;gt;Code here. So here it&amp;#39;s in text:&lt;/p&gt;
&lt;p&gt;@echo off&lt;br /&gt;setlocal&lt;/p&gt;
&lt;p&gt;rem --- Configure these if your installation paths differ ---&lt;br /&gt;set &amp;quot;NCS_ROOT=C:\ncs\v3.2.3&amp;quot;&lt;br /&gt;set &amp;quot;TOOLCHAIN_ROOT=C:\ncs\toolchains\fd21892d0f&amp;quot;&lt;br /&gt;set &amp;quot;WORKDIR=C:\DEV\Nordic\nrf5340_audio&amp;quot;&lt;/p&gt;
&lt;p&gt;if not exist &amp;quot;%NCS_ROOT%\zephyr&amp;quot; (&lt;br /&gt; echo [ERROR] NCS path not found: %NCS_ROOT%\zephyr&lt;br /&gt; pause&lt;br /&gt; exit /b 1&lt;br /&gt;)&lt;/p&gt;
&lt;p&gt;if not exist &amp;quot;%TOOLCHAIN_ROOT%\opt\bin\python.exe&amp;quot; (&lt;br /&gt; echo [ERROR] Toolchain path not found: %TOOLCHAIN_ROOT%\opt\bin\python.exe&lt;br /&gt; pause&lt;br /&gt; exit /b 1&lt;br /&gt;)&lt;/p&gt;
&lt;p&gt;set &amp;quot;NCS_PATH=%TOOLCHAIN_ROOT%;%TOOLCHAIN_ROOT%\mingw64\bin;%TOOLCHAIN_ROOT%\bin;%TOOLCHAIN_ROOT%\opt\bin;%TOOLCHAIN_ROOT%\opt\bin\Scripts;%TOOLCHAIN_ROOT%\opt\nanopb\generator-bin;%TOOLCHAIN_ROOT%\nrfutil\bin;%TOOLCHAIN_ROOT%\opt\zephyr-sdk\arm-zephyr-eabi\bin;%TOOLCHAIN_ROOT%\opt\zephyr-sdk\riscv64-zephyr-elf\bin&amp;quot;&lt;br /&gt;set &amp;quot;NCS_PYTHONPATH=%TOOLCHAIN_ROOT%\opt\bin;%TOOLCHAIN_ROOT%\opt\bin\Lib;%TOOLCHAIN_ROOT%\opt\bin\Lib\site-packages&amp;quot;&lt;br /&gt;set &amp;quot;NCS_ENV=set PATH=%NCS_PATH%;%%PATH%%&amp;amp;&amp;amp; set PYTHONPATH=%NCS_PYTHONPATH%&amp;amp;&amp;amp; set NRFUTIL_HOME=%TOOLCHAIN_ROOT%\nrfutil\home&amp;amp;&amp;amp; set TOOLCHAIN_ROOT=&amp;amp;&amp;amp; set ZEPHYR_BASE=%NCS_ROOT%\zephyr&amp;amp;&amp;amp; set ZEPHYR_SDK_INSTALL_DIR=%TOOLCHAIN_ROOT%\opt\zephyr-sdk&amp;amp;&amp;amp; set ZEPHYR_TOOLCHAIN_VARIANT=zephyr&amp;quot;&lt;/p&gt;
&lt;p&gt;rem Open a new shell window and keep it open with NCS environment loaded&lt;br /&gt;start &amp;quot;NCS Shell&amp;quot; cmd.exe /v:on /k &amp;quot;%NCS_ENV%&amp;amp;&amp;amp; cd /d %WORKDIR%&amp;amp;&amp;amp; echo NCS environment loaded.&amp;amp;&amp;amp; echo ZEPHYR_BASE=!ZEPHYR_BASE!&amp;quot;&lt;/p&gt;
&lt;p&gt;endlocal&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563652?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 10:21:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:486b8fe8-57ed-49cc-af12-903177894434</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;Thanks for the feedback. Good to know that you can reproduce the behavior. The missing call in&amp;nbsp;&lt;span&gt;dist/extension.js sounds like an explanation.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect Terminal won't start</title><link>https://devzone.nordicsemi.com/thread/563651?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 10:14:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8a4d8ce4-7543-4ecf-90c0-6f5f6339e7a5</guid><dc:creator>Odiug</dc:creator><description>&lt;p&gt;I have the same issue since a couple of days. It&amp;#39;s present under Windows only. I works under Linux.&lt;/p&gt;
&lt;p&gt;Asking CopIlot to dig deeper gave me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Extension: nordic-semiconductor.nrf-connect 2026.3.1484, Windows only&lt;/li&gt;
&lt;li&gt;nrf-connect.ncs_terminal terminal profile declared in package.json but no window.registerTerminalProfileProvider(&amp;quot;nrf-connect.ncs_terminal&amp;quot;, ...) call exists in dist/extension.js&lt;/li&gt;
&lt;li&gt;Works on Linux, silent no-op on Windows when clicking &amp;quot;nRF Connect&amp;quot; in the terminal dropdown or &amp;quot;Open Terminal&amp;quot; in the nRF Connect panel&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Additional info: It also initially worked a week ago, so maybe an updated broke it.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Guido&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>