lundi 30 septembre 2019
Reg: retirer l'icone contact de la barre des tâches
Voici un petit fichier reg pour désactiver l'affichage de l’icône Contact dans la barre de tâche :
pour etre effectif, redémarrer la session ou killez le process "explorer" pour le relancer
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People]
"PeopleBand"=dword:00000000
Lister les mots de passe Wifi
Voici un petit script pour lister les mots de passe Wifi sous windows :
$list=@()
$listSSID=(netsh wlan show profile * key=clear) | find "Nom du SSID"
$listSSID=$listSSID.Substring(30).replace('"','')
foreach ($SSID in $listSSID) {
#write-host $SSID
$pass=(netsh wlan show profile $SSID key=clear | find 'Contenu de la cl')
if ($pass -match 'Contenu de la cl')
{
$pass=$pass.Substring(35)
#write-host $pass
#write-host "2--------------"
$list+=[PSCustomObject]@{SSID = $SSID;PWD=$pass}
}
}
$list | out-gridview -PassThru
Inscription à :
Articles (Atom)