Imaginsystems


Tecniche di Programmazione - Codici Sorgenti - News Informatiche
Archivio Posts
Anno 2014

Anno 2013

Anno 2012
Statistiche
  • Views Home Page: 73.755
  • Views Posts: 551.306
  • Views Gallerie: 0
  • n° Posts: 210
  • n° Commenti: 224

VB.NET - COME ABILITARE E DISABILITARE TASK MANAGER (Codice)

VB.NET - COME ABILITARE E DISABILITARE TASK MANAGER (Codice)


 

Oggi vi voglio mettere a disposizione il codice che può essere d'aiuto per quei programmi che servono nei Internet Point ad esempio..

Come funziona la funzione Blocca_e_SbloccaTastoTaskManager() :

Blocca_e_SbloccaTastoTaskManager(True) ' Se vogliamo bloccare e quindi Disabilitare il tasto Task Manager (Colore grigio)
Blocca_e_SbloccaTastoTaskManager(False) 'Se vogliamo attivare e quindi Abilitare il tasto Task Manager (Colore nero)

 

CODICE VISUAL STUDIO 2010 - VISUAL BASIC .NET - VB.NET

 Private Sub Blocca_e_SbloccaTastoTaskManager(ByVal Valore As Boolean)
        Try
            If My.User.IsInRole("Administrators") Then
                Dim systemRegistry As Microsoft.Win32.RegistryKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows\CurrentVersion\Policies\System")
                If Valore = True Then
                    systemRegistry.SetValue("DisableTaskMgr", 1)
                Else
                    systemRegistry.SetValue("DisableTaskMgr", 0)
                End If
                systemRegistry.Close()
            End If
        Catch ex As Exception
            MsgBox(ex.Message)
        End Try
End Sub
  

By ImaginSystems & Queen Gin 
Categoria: VB.NET
martedì, 29 gen 2013 Ore. 15.19

Messaggi collegati


Ora e Data
Mappa
Blogs Amici
    Copyright © 2002-2007 - Blogs 2.0
    dotNetHell.it | Home Page Blogs
    ASP.NET 2.0 Windows 2003