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