Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

[AJUDA] Arquivo de registro

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

  • Font Size
    #1

    [AJUDA] Arquivo de registro

    Galera mim tirem uma dúvida eu tenho código que encontrei na internet "trial reset Kaspersky" e gostaria de usá-lo no Basic tipo fazer um programinha para clicar no button e executar como seria?

    Código:
    REG DELETE HKLM\SOFTWARE\Wow6432Node\KasperskyLab\protected\LicStorage /f
    REG DELETE HKLM\SOFTWARE\Microsoft\SystemCertificates\SPC\Certificates /f
    REG ADD HKLM\SOFTWARE\Wow6432Node\KasperskyLab\protected\AVP13\settings /v Ins_InitMode /t REG_DWORD /d 1 /f
    REG ADD HKLM\SOFTWARE\Wow6432Node\KasperskyLab\protected\AVP13\settings /v EnableSelfProtection /t REG_DWORD /d 1 /f
    start /d "C:\Program Files (x86)\Kaspersky Lab\Kaspersky Internet Security 2013" starter_avp.exe

  • Font Size
    #2
    Importe o namespace Microsoft.Win32 nele existe a classe Registry para poder trabalho com o registro do windows é tudo muito simples.

    Exemplo

    Código:
    Dim regKey As RegistryKey
    regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True)
    regKey.CreateSubKey("MyApp")
    regKey.Close()
    Apenas usuários registrados e ativados podem ver os links., Clique aqui para se cadastrar...

    Flw!
    "Where there's a Shell, there is a way"

    Comment

    X
    Working...
    X