This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
informatique:windows:cmd [2023/08/08 14:40] – yahiko | informatique:windows:cmd [2024/10/09 10:14] (current) – yahiko | ||
---|---|---|---|
Line 80: | Line 80: | ||
</ | </ | ||
- | ==== Activation Windows Server 2O22 ==== | + | |
- | <codedoc | + | ==== Vérifier MD5 ==== |
- | DISM /Online | + | <code batch> |
- | </codedoc> | + | certutil -hashfile < |
+ | </code> | ||
+ | |||
+ | ==== Suppression récursive d'un dossier ==== | ||
+ | <code batch> | ||
+ | rmdir " | ||
+ | </ | ||
+ | Ajouter /Q pour le faire silencieusement. On peut par exemple faire : | ||
+ | <code batch> | ||
+ | runas /user:administrateur cmd | ||
+ | rmdir " | ||
+ | </code> | ||
+ | |||
+ | La technique de Robocopier (oui c'est un verbe) un dossier vide fonctionne bien aussi : | ||
+ | |||
+ | <code batch> | ||
+ | ROBOCOPY " | ||
+ | </code> |