Announcement

Collapse
No announcement yet.

Registry Editing disabled by computer administrator

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Registry Editing disabled by computer administrator

    Guys i know this is off topics but its getting reallt annoying

    I try to edit registry and it tells me it has been disabled by compiter adminstartor >>>> IM THE COMPUTER ADMINSTRATOR
    what should i do plz help

  • #2
    if this message is shown u wont probably be the computer admin
    My sysProfile!

    Comment


    • #3
      Save the following as a vbs file (registryfix.vbs or similar)
      then run it... it will toggle registry editing on and off....

      Code:
      [FONT=Courier New][SIZE=-1]Option Explicit
      'Declare variables
      Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
      Dim enab, disab, jobfunc, itemtype[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]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 "[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]'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[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]if errnum <> 0 then
      'Create the registry key value for DisableRegistryTools with value 0
      	WSHShell.RegWrite p, 0, itemtype
      End If[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]'If the key is present, or was created, it is toggled[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]'Confirmations can be disabled by commenting out 
      'the two MyBox lines below[/SIZE][/FONT]
       [FONT=Courier New][SIZE=-1]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[/SIZE][/FONT]
      [FONT=Courier New][SIZE=-1][/SIZE][/FONT]

      SpeedLabs Inc. - Welcome to the real world...

      Comment


      • #4
        Nice script. A good way to know if someone has been messing with your computer is to check out the policies under...

        HKCU > Software > Microsoft > Windows > CurrentVersion > Policies

        Comment


        • #5
          Originally Posted by AmphetaMarinE
          Save the following as a vbs file (registryfix.vbs or similar)
          then run it... it will toggle registry editing on and off....

          [code section snipped]

          how do i save it as vbs file man i appreciate the help guys

          Comment


          • #6
            Copy the script, paste it into a notepad window and save it as whatever.vbs - and set "file type" to All Files.
            "I was inappropriately blunt, wasn't I? Sorry, I do that a lot."

            Comment


            • #7
              download this (copied source from above):

              hxxp://rapidshare.de/files/10742629/reg.vbs.html

              Comment


              • #8
                So did it fix your problem sLeek???
                SpeedLabs Inc. - Welcome to the real world...

                Comment

                Working...
                X