Jump to content

[VB.NET] RemIECAPass

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
kresh7

kresh7

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 661 posts
Okay Hi all :D it's me Kresha haven't been for long online on codecall that's because i'm trying to get dumber on university :D.So i'm trying to learn a little VB.NET and i have made a thew functions which i'm going to post today this first was really easy to make the code yes but it took some time to understand what/where
it's a function which removes the Internet Explorer content advisory password so you can reset it and here you go here is it.
'---------------------------------------------------------------------------------------

' Function    : RemIECAPass

' DateTime    : 09/02/2010  17:20PM

' Author      : Kreshnik Hasanaj

' Mail        : kresha7@hotmail.com

' Purpose     : Removes Internet Explorer Contents Advisory 

'---------------------------------------------------------------------------------------

Public Sub RemIECAPass()

Try

            My.Computer.Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Ratings", True).DeleteValue("Key")

        Catch ErrReg As Exception

        End Try

End Sub

Posted Image

#2
James.H

James.H

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 866 posts
Welcome back to codecall Kresh7 and this was useful thanks! :)

#3
kresh7

kresh7

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 661 posts
your welcome bro :D from time to time i will try to post some code snippets hope their are useful for anyone here :D
Posted Image