<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Run Command Missing?</title>
	<atom:link href="http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/feed/" rel="self" type="application/rss+xml" />
	<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/</link>
	<description>An almost 50 years old guy, thinking aloud!</description>
	<lastBuildDate>Fri, 30 Oct 2009 11:36:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: copycat</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-2303</link>
		<dc:creator>copycat</dc:creator>
		<pubDate>Sun, 09 Dec 2007 12:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-2303</guid>
		<description>Hello Black Mind and all others affected by the same problem 
 
Copy the following code,paste in any notepad and save as &quot;regtools.vbs&quot; file. Just double click it and you will get yor regedit enabled.(Be careful to copy the code exactly as presented here including everything.
 
Code goes here.......
___________________________________________________________________________________
&#039;Enable/Disable Registry Editing tools
&#039;© Doug Knox - rev 12/06/99
Option Explicit
&#039;Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject(&quot;WScript.Shell&quot;)
p = &quot;HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\&quot;
p = p &amp; &quot;DisableRegistryTools&quot;
itemtype = &quot;REG_DWORD&quot;
mustboot = &quot;Log off and back on, or restart your pc to&quot; &amp; vbCR &amp; &quot;effect the changes&quot;
enab = &quot;ENABLED&quot;
disab = &quot;DISABLED&quot;
jobfunc = &quot;Registry Editing Tools are now &quot;
&#039;This section tries to read the registry key value. If not present an 
&#039;error is generated.  Normal error return should be 0 if value is 
&#039;present
t = &quot;Confirmation&quot;
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum  0 then
&#039;Create the registry key value for DisableRegistryTools with value 0
 WSHShell.RegWrite p, 0, itemtype
End If
&#039;If the key is present, or was created, it is toggled
&#039;Confirmations can be disabled by commenting out 
&#039;the two MyBox lines below
If n = 0 Then
 n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc &amp; disab &amp; vbCR &amp; mustboot, 4096, t)
ElseIf n = 1 then
 n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc &amp; enab &amp; vbCR &amp; mustboot, 4096, t)
End If</description>
		<content:encoded><![CDATA[<p>Hello Black Mind and all others affected by the same problem </p>
<p>Copy the following code,paste in any notepad and save as &#8220;regtools.vbs&#8221; file. Just double click it and you will get yor regedit enabled.(Be careful to copy the code exactly as presented here including everything.</p>
<p>Code goes here&#8230;&#8230;.<br />
___________________________________________________________________________________<br />
&#8216;Enable/Disable Registry Editing tools<br />
&#8216;© Doug Knox &#8211; rev 12/06/99<br />
Option Explicit<br />
&#8216;Declare variables<br />
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers<br />
Dim enab, disab, jobfunc, itemtype<br />
Set WSHShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)<br />
p = &#8220;HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\&#8221;<br />
p = p &amp; &#8220;DisableRegistryTools&#8221;<br />
itemtype = &#8220;REG_DWORD&#8221;<br />
mustboot = &#8220;Log off and back on, or restart your pc to&#8221; &amp; vbCR &amp; &#8220;effect the changes&#8221;<br />
enab = &#8220;ENABLED&#8221;<br />
disab = &#8220;DISABLED&#8221;<br />
jobfunc = &#8220;Registry Editing Tools are now &#8221;<br />
&#8216;This section tries to read the registry key value. If not present an<br />
&#8216;error is generated.  Normal error return should be 0 if value is<br />
&#8216;present<br />
t = &#8220;Confirmation&#8221;<br />
Err.Clear<br />
On Error Resume Next<br />
n = WSHShell.RegRead (p)<br />
On Error Goto 0<br />
errnum = Err.Number<br />
if errnum  0 then<br />
&#8216;Create the registry key value for DisableRegistryTools with value 0<br />
 WSHShell.RegWrite p, 0, itemtype<br />
End If<br />
&#8216;If the key is present, or was created, it is toggled<br />
&#8216;Confirmations can be disabled by commenting out<br />
&#8216;the two MyBox lines below<br />
If n = 0 Then<br />
 n = 1<br />
WSHShell.RegWrite p, n, itemtype<br />
Mybox = MsgBox(jobfunc &amp; disab &amp; vbCR &amp; mustboot, 4096, t)<br />
ElseIf n = 1 then<br />
 n = 0<br />
WSHShell.RegWrite p, n, itemtype<br />
Mybox = MsgBox(jobfunc &amp; enab &amp; vbCR &amp; mustboot, 4096, t)<br />
End If</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vic</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-1701</link>
		<dc:creator>vic</dc:creator>
		<pubDate>Fri, 05 Oct 2007 12:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-1701</guid>
		<description>i tried to install TWEAK UI on my PC but a message would say that it is disabled by the administrator.  how can i enable it ?  i hope you guys can help me.</description>
		<content:encoded><![CDATA[<p>i tried to install TWEAK UI on my PC but a message would say that it is disabled by the administrator.  how can i enable it ?  i hope you guys can help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stacy Fabian</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-1531</link>
		<dc:creator>Stacy Fabian</dc:creator>
		<pubDate>Wed, 19 Sep 2007 18:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-1531</guid>
		<description>that&#039;s why it will never wor. Stacy Fabian.</description>
		<content:encoded><![CDATA[<p>that&#8217;s why it will never wor. Stacy Fabian.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-625</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Fri, 01 Jun 2007 15:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-625</guid>
		<description>Your PC is most probably infected. Try downloading NOD32</description>
		<content:encoded><![CDATA[<p>Your PC is most probably infected. Try downloading NOD32</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sushil</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-540</link>
		<dc:creator>Sushil</dc:creator>
		<pubDate>Wed, 16 May 2007 10:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-540</guid>
		<description>when i tried to open gpedit.msc (look for it in C:\Windows\System32\),following error message is coming ,
Access restircted gpedit.msc . i don&#039;t know what is the actual problem or my pc is infected.plz reply.</description>
		<content:encoded><![CDATA[<p>when i tried to open gpedit.msc (look for it in C:\Windows\System32\),following error message is coming ,<br />
Access restircted gpedit.msc . i don&#8217;t know what is the actual problem or my pc is infected.plz reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hahaboy</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-11</link>
		<dc:creator>hahaboy</dc:creator>
		<pubDate>Thu, 14 Dec 2006 12:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-11</guid>
		<description>hey man thanx it works
i was tired searching the web on how to solve
thanxxxxxxxx alottttttttt

I&#039;m just glad it solved your problem, dude</description>
		<content:encoded><![CDATA[<p>hey man thanx it works<br />
i was tired searching the web on how to solve<br />
thanxxxxxxxx alottttttttt</p>
<p>I&#8217;m just glad it solved your problem, dude</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-8</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 21 Nov 2006 05:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-8</guid>
		<description>What error comes out?

Try typing in  regedit.exe instead of just regedit?</description>
		<content:encoded><![CDATA[<p>What error comes out?</p>
<p>Try typing in  regedit.exe instead of just regedit?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cath</title>
		<link>http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-7</link>
		<dc:creator>Cath</dc:creator>
		<pubDate>Tue, 14 Nov 2006 04:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://nikhasnan.wordpress.com/2006/11/03/run-command-missing/#comment-7</guid>
		<description>RUN command is shown in start menu but when i run the regedit an error comes out. How to run the reg edit?please help</description>
		<content:encoded><![CDATA[<p>RUN command is shown in start menu but when i run the regedit an error comes out. How to run the reg edit?please help</p>
]]></content:encoded>
	</item>
</channel>
</rss>
