Lister les fichiers d’un répertoire et de ces sous-répertoires avec le chemin complet
Note Pour écrire ces informations dans un fichier : > dir *.* /b /s >liste.txt dir *.* /b /s
Note Pour écrire ces informations dans un fichier : > dir *.* /b /s >liste.txt dir *.* /b /s
Note Il est souvent pratique d’ouvrir une fenêtre “DOS” sous windows à partir de l’explorer. Voici comment… Notez le cd /d qui force le changement… Read More »Comment ajouter “Command prompt here” au clic droit sur une répertoire?
Spot Odd Executables – wmic PROCESS WHERE “NOT ExecutablePath LIKE ‘%Windows%'” GET ExecutablePath Look at services that are set to start automatically – wmic SERVICE… Read More »Windows wmic useful commands
Dans un premier temps, suivre le tutoriel qui figure à cette adresse : http://apache.developpez.com/cours/apache20-modssl-windows/ Regénérer la clé sans RSA (sinon message d’erreur “SSLPassPhraseDialog builtin is… Read More »Configurer un serveur local (sous Wamp) pour un accès en https (SSL)
Option Explicit Sub DeleteRegKeyAndSubKeys(strRegTree, strKeyPath) ‘strRegTree = “HKEY_CLASSES_ROOT” ‘ “HKEY_CURRENT_USER” ‘ “HKEY_LOCAL_MACHINE” ‘ “HKEY_USERS” ‘ “HKEY_CURRENT_CONFIG” ‘strKeyPath is the registry key to delete. Example :… Read More »VBScript : How to delete a Windows’ registry key and all its subkeys
// Declaration socket WSADATA WSAData; SOCKET sock; SOCKADDR_IN sin; // Initialisation socket WSAStartup(MAKEWORD(2,0), &WSAData); sin.sin_addr.s_addr= inet_addr(“127.0.0.1”); // Adresse IP sin.sin_family= AF_INET; sin.sin_port= htons(4001); // Port… Read More »Manipulation des sockets en C et C++
gpresult /r gpedit.msc rsop.msc
Function KillProcess(strProcessName) Dim oProcess KillProcess = False For Each oProcess in GetObject(“winmgmts:”).InstancesOf(“Win32_Process”) If InStr(UCase(strProcessName), UCase(oProcess.Name)) <> 0 Then oProcess.Terminate() KillProcess = True Exit Function End… Read More »VBScript : How to kill a Windows process
#Convertir un fichier texte d’un format Windows/dos vers unix: tr -d ‘\015′ < win-format.txt > unix-format.txt #Convertir un fichier texte d’un format unix vers… Read More »Conversion de fichier texte windows/unix
// Fonction pour redemarrer Windows avec les MFC void RestartWindows(void) { // Declaration HANDLE hToken; … Read More »MFC redemarrer Windows