Sunday, July 28, 2013

How to Enable Windows Registry 2nd Method

How to Enable Windows Registry 2nd Method

This method is by Anthony P

Click on Start. Go to Run. Users running Windows 8, Windows 7 or Vista, go to Search.
Type gpedit.msc and press Enter.
Navigate to User Configuration/ Administrative Templates / System.
In the work area, double click on "Prevent Access to registry editing tools".
In the popup window, encircle Disabled and click on OK


Thursday, July 11, 2013

Another easy method to enable windows registry

Mo Bahjat.

  •  HI, first, I have to give the credit to CombatFreakCA1 because he's the one who showed me this method. Let's get started how to enable windows registry, I haven't tried this on windows 8 But works perfectly with  with windows 7 and Xp. First, open a Notepad, then copy the code and paste it in the Notepad. Save the notepad  as XYX.VBS. 



  • THE CODE STARTS BELOW

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
itemtype = "REG_DWORD"
jobfunc = "Registry Editing Tools are now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)

End If 
  • I HOPE THAT HELPED 

Spotify for Podcasters Recording on the Phone

The new Spotify app for Podcasters is really disappointing. As a podcaster who records and edits episodes using only my phone, the removal o...