Celoteh PakNik

An almost 50 years old guy, thinking aloud!

Run Command Missing?

Posted by PakNik on November 3, 2006

I’ve move this article to my troubleshooting blog. Please go here

8 Responses to “Run Command Missing?”

  1. Cath said

    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

  2. Phil said

    What error comes out?

    Try typing in regedit.exe instead of just regedit?

  3. hahaboy said

    hey man thanx it works
    i was tired searching the web on how to solve
    thanxxxxxxxx alottttttttt

    I’m just glad it solved your problem, dude

  4. Sushil said

    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’t know what is the actual problem or my pc is infected.plz reply.

  5. Nik said

    Your PC is most probably infected. Try downloading NOD32

  6. that’s why it will never wor. Stacy Fabian.

  7. vic said

    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.

  8. copycat said

    Hello Black Mind and all others affected by the same problem

    Copy the following code,paste in any notepad and save as “regtools.vbs” 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…….
    ___________________________________________________________________________________
    ‘Enable/Disable Registry Editing tools
    ‘© Doug Knox – rev 12/06/99
    Option Explicit
    ‘Declare variables
    Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
    Dim enab, disab, jobfunc, itemtype
    Set WSHShell = WScript.CreateObject(”WScript.Shell”)
    p = “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\”
    p = p & “DisableRegistryTools”
    itemtype = “REG_DWORD”
    mustboot = “Log off and back on, or restart your pc to” & vbCR & “effect the changes”
    enab = “ENABLED”
    disab = “DISABLED”
    jobfunc = “Registry Editing Tools are now ”
    ‘This section tries to read the registry key value. If not present an
    ‘error is generated. Normal error return should be 0 if value is
    ‘present
    t = “Confirmation”
    Err.Clear
    On Error Resume Next
    n = WSHShell.RegRead (p)
    On Error Goto 0
    errnum = Err.Number
    if errnum 0 then
    ‘Create the registry key value for DisableRegistryTools with value 0
    WSHShell.RegWrite p, 0, itemtype
    End If
    ‘If the key is present, or was created, it is toggled
    ‘Confirmations can be disabled by commenting out
    ‘the two MyBox lines below
    If n = 0 Then
    n = 1
    WSHShell.RegWrite p, n, itemtype
    Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
    ElseIf n = 1 then
    n = 0
    WSHShell.RegWrite p, n, itemtype
    Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
    End If

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <pre> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>