<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	 xmlns:media="http://search.yahoo.com/mrss/" 
	>
<channel>
	<title>
	Comments on: Remove 3D Print with 3D Builder item from Context Menu in Windows 11/10	</title>
	<atom:link href="https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item/feed" rel="self" type="application/rss+xml" />
	<link>https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item</link>
	<description>TheWindowsClub covers authentic Windows 11, Windows 10 tips, tutorials, how-to&#039;s, features, freeware. Created by Anand Khanse, MVP.</description>
	<lastBuildDate>Sun, 21 Jul 2024 06:13:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Aleš Polívka		</title>
		<link>https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item#comment-55628</link>

		<dc:creator><![CDATA[Aleš Polívka]]></dc:creator>
		<pubDate>Sun, 16 Oct 2016 09:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thewindowsclub.com/?p=120483#comment-55628</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item#comment-54806&quot;&gt;Ziggy&lt;/a&gt;.

Hi Ziggy, I use this batch to remove it from the context menu (simply create a .bat file, paste these lines in and run it):

@echo off
cls
echo Creating the REG file on your Desktop...
timeout /T 2
@echo Windows Registry Editor Version 5.00&#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.bmpShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.jpgShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.pngShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopremove_3dprint_context.reg&quot;
echo Running the REG file and removing &quot;3D Print&quot; from the context menu...
timeout /T 2
regedit /s &quot;%USERPROFILE%Desktopremove_3dprint_context.reg&quot;
echo Removing the created REG file...
timeout /T 2
pause
del /f /q &quot;%USERPROFILE%Desktopremove_3dprint_context.reg&quot;
EXIT

-----------
And you can use this to add it back:

@echo off
cls
echo Creating the REG file on your Desktop...
timeout /T 2
@echo Windows Registry Editor Version 5.00&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.bmpShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo @=&quot;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&quot;&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.jpgShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo @=&quot;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&quot;&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo  &#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.pngShellT3D Print]&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
@echo @=&quot;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&quot;&#062;&#062; &quot;%UserProfile%Desktopadd_3dprint_context.reg&quot;
echo Running the REG file and adding &quot;3D Print&quot; to the context menu...
timeout /T 2
regedit /s &quot;%USERPROFILE%Desktopadd_3dprint_context.reg&quot;
echo Removing the created REG file...
timeout /T 2
pause
del /f /q &quot;%USERPROFILE%Desktopadd_3dprint_context.reg&quot;
EXIT

-------
Hope it will help and won&#039;t come back, let me know if you need more help. :)
Greetings from the Czech Republic
Aleš]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item#comment-54806">Ziggy</a>.</p>
<p>Hi Ziggy, I use this batch to remove it from the context menu (simply create a .bat file, paste these lines in and run it):</p>
<p>@echo off<br />
cls<br />
echo Creating the REG file on your Desktop&#8230;<br />
timeout /T 2<br />
@echo Windows Registry Editor Version 5.00&gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.bmpShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.jpgShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
@echo [-HKEY_CLASSES_ROOTSystemFileAssociations.pngShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopremove_3dprint_context.reg&#8221;<br />
echo Running the REG file and removing &#8220;3D Print&#8221; from the context menu&#8230;<br />
timeout /T 2<br />
regedit /s &#8220;%USERPROFILE%Desktopremove_3dprint_context.reg&#8221;<br />
echo Removing the created REG file&#8230;<br />
timeout /T 2<br />
pause<br />
del /f /q &#8220;%USERPROFILE%Desktopremove_3dprint_context.reg&#8221;<br />
EXIT</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
And you can use this to add it back:</p>
<p>@echo off<br />
cls<br />
echo Creating the REG file on your Desktop&#8230;<br />
timeout /T 2<br />
@echo Windows Registry Editor Version 5.00&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.bmpShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo @=&#8221;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&#8243;&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.jpgShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo @=&#8221;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&#8243;&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo  &gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo [HKEY_CLASSES_ROOTSystemFileAssociations.pngShellT3D Print]&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
@echo @=&#8221;@%SystemRoot%\\system32\\PrintDialogs3D.dll,-5039&#8243;&gt;&gt; &#8220;%UserProfile%Desktopadd_3dprint_context.reg&#8221;<br />
echo Running the REG file and adding &#8220;3D Print&#8221; to the context menu&#8230;<br />
timeout /T 2<br />
regedit /s &#8220;%USERPROFILE%Desktopadd_3dprint_context.reg&#8221;<br />
echo Removing the created REG file&#8230;<br />
timeout /T 2<br />
pause<br />
del /f /q &#8220;%USERPROFILE%Desktopadd_3dprint_context.reg&#8221;<br />
EXIT</p>
<p>&#8212;&#8212;-<br />
Hope it will help and won&#8217;t come back, let me know if you need more help. :)<br />
Greetings from the Czech Republic<br />
Aleš</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ziggy		</title>
		<link>https://www.thewindowsclub.com/remove-3d-print-with-3d-builder-context-menu-item#comment-54806</link>

		<dc:creator><![CDATA[Ziggy]]></dc:creator>
		<pubDate>Mon, 05 Sep 2016 01:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thewindowsclub.com/?p=120483#comment-54806</guid>

					<description><![CDATA[Is it possible to create a batch file so as 1) to delete the reg entries aforementioned and 2) to re-enable said entries if you want them back? I know you can simply export and then re-import the entries but I&#039;m curious to know how to do this through a batch file or some other method!]]></description>
			<content:encoded><![CDATA[<p>Is it possible to create a batch file so as 1) to delete the reg entries aforementioned and 2) to re-enable said entries if you want them back? I know you can simply export and then re-import the entries but I&#8217;m curious to know how to do this through a batch file or some other method!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
