PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → Pour cacher certains bouton de W2K
Pour cacher certains bouton de W2K
Iniciado por philippe.pasquali, set., 28 2005 5:16 PM - Sem resposta
Publicado em setembro, 28 2005 - 5:16 PM
Quant on fait CtrlAltDel, une fenetre s'ouvre avec 6 boutons dont "Annuler"
Pour rendre inactif tous sauf annuler faire :

// Bouton "Verrouiller l'ordinateur" inactif
RegistreEcrit("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System","DisableLockWorkStation",1)

// Bouton "Fermeture de session" inactif
RegistreEcrit("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoLogoff",1)

// Bouton "Arrêter le systèm" inactif
RegistreEcrit("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoClose",1)

// Bouton "Changer de mot de passe" inactif
RegistreEcrit("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System","DisableChangePassword",1)

// Bouton "Gestionnair des tâches" inactif
RegistreEcrit("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System","DisableTaskMgr",1)

et pour les ré activer mettre 0 à la place des 1......