<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[registry eintrag]]></title><description><![CDATA[<p>wie kann ich ein registry eintrag mit c++ machen?</p>
<p>mfg supersass1 <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/134128/registry-eintrag</link><generator>RSS for Node</generator><lastBuildDate>Fri, 28 Aug 2026 10:05:28 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/134128.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 23 Jan 2006 20:49:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 20:49:36 GMT]]></title><description><![CDATA[<p>wie kann ich ein registry eintrag mit c++ machen?</p>
<p>mfg supersass1 <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/974333</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974333</guid><dc:creator><![CDATA[supersass1]]></dc:creator><pubDate>Mon, 23 Jan 2006 20:49:36 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 21:00:01 GMT]]></title><description><![CDATA[<p>Win32API??? !!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974362</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974362</guid><dc:creator><![CDATA[Tc++H]]></dc:creator><pubDate>Mon, 23 Jan 2006 21:00:01 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 21:13:25 GMT]]></title><description><![CDATA[<p>Hallo supersass1<br />
Ich würd mir mal das hier ansehen : <a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39373" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=39373</a><br />
Das hat mir persöhnlich allerdings nicht viel geholfen. Ich hab dan nochmal bei Microsoft kegugt: <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/regsetvalueex.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/regsetvalueex.asp</a><br />
Da steht alles gut beschrieben.</p>
<p>Bis bald<br />
Xclear</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974396</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974396</guid><dc:creator><![CDATA[Xclear]]></dc:creator><pubDate>Mon, 23 Jan 2006 21:13:25 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 21:33:09 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;

#define VALUE_NAME		&quot;Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System\\DisableTaskMgr&quot;

void main()
{
	HKEY hKey = NULL;
	DWORD dwType = 1;
	CHAR szBuffer[MAX_PATH+1] = {0};
	DWORD dwCbBuffer = sizeof(szBuffer)-1;

    RegQueryValueEx(HKEY_CURRENT_USER, VALUE_NAME, 0, &amp;dwType, (LPBYTE)szBuffer, &amp;dwCbBuffer);
};
</code></pre>
<p>das funzt net so, warum nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974457</guid><dc:creator><![CDATA[supersass1]]></dc:creator><pubDate>Mon, 23 Jan 2006 21:33:09 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 21:34:08 GMT]]></title><description><![CDATA[<p>Kommen Fehlermeldungen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974460</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974460</guid><dc:creator><![CDATA[Tc++H]]></dc:creator><pubDate>Mon, 23 Jan 2006 21:34:08 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 21:41:07 GMT]]></title><description><![CDATA[<p>nein, aber es funzt auch net... er erstellt den eintrag net...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974474</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974474</guid><dc:creator><![CDATA[supersass1]]></dc:creator><pubDate>Mon, 23 Jan 2006 21:41:07 GMT</pubDate></item><item><title><![CDATA[Reply to registry eintrag on Mon, 23 Jan 2006 23:30:56 GMT]]></title><description><![CDATA[<p>supersass1 schrieb:</p>
<blockquote>
<p>nein, aber es funzt auch net... er erstellt den eintrag net...</p>
</blockquote>
<p>Reg<a href="http://dict.leo.org/se?search=query" rel="nofollow">Query</a>ValueEx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/974526</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/974526</guid><dc:creator><![CDATA[masterofx32]]></dc:creator><pubDate>Mon, 23 Jan 2006 23:30:56 GMT</pubDate></item></channel></rss>