Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
memo:windows [07/11/2017 16:29] – Empreinte MD5 Arnaud Jacqueminmemo:windows [21/04/2023 16:57] (Version actuelle) – [Fichier Hosts] Arnaud Jacquemin
Ligne 1: Ligne 1:
-====== Mémo Windows ======+====== Microsoft Windows ====== 
 + 
 +===== Logiciels utiles ===== 
 + 
 +  * [[FreeFileSync]] : https://freefilesync.org/ (alternative à Unison qui prendrait en compte le renommage/déplacement de fichiers) 
 +  * Greenshot : http://getgreenshot.org/downloads/ (capture d'écran) 
 +  * Notepad++ : http://notepad-plus-plus.org/ (éditeur de texte) 
 +  * WinMerge : http://winmerge.org/downloads/?lang=fr (le plugin Excel est maintenant préinstallé) 
 +    * installer le [[http://freemind.s57.xrea.com/xdocdiffPlugin/en/index.html|plugin xdocdiff]] pour comparer les documents PDF 
 + 
 + 
 +===== Raccourcis clavier avec la touche Windows ===== 
 + 
 +Installer l'utilitaire [[https://www.autohotkey.com/download/|AutoHotkey]]. 
 + 
 +Créer un "script" AHK : 
 + 
 +<file autohotkey windows-shortcuts.ahk> 
 +; Lancer Notepad++ avec Windows n 
 +#n::Run "C:\Program Files\Notepad++\notepad++.exe" 
 + 
 +; Lancer l'invite de commande avec Windows c 
 +#c::Run "cmd" 
 + 
 +; Lancer la calculatrice avec Windows - (touche moins du pavé numérique) 
 +#NumpadSub::Run "calc" 
 +</file> 
 + 
 +Le caractère "#" signifie touche Windows. 
 + 
 +===== Script de démarrage ===== 
 + 
 +<file batch start.bat> 
 +REM Lancer Outlook 
 +start /d "C:\Program Files (x86)\Microsoft Office\Office16\" OUTLOOK.EXE 
 + 
 +REM Lancer Teams 
 +start /d "C:\Users\ajacquemin\AppData\Local\Microsoft\Teams\current\" Teams.exe 
 + 
 +REM Lancer Firefox 
 +start /d "C:\Program Files\Mozilla Firefox\" firefox.exe 
 + 
 +REM Lancer Freeplane 
 +start /d "C:\Program Files\Freeplane\" freeplane.exe 
 + 
 +REM Lancer AutoHotKey avec mes raccourcis préférés 
 +start /d "C:\Users\ajacquemin\Logiciels\" windows-shortcuts.ahk 
 + 
 +REM Vider le dossier /tmp/ 
 +rmdir /S /Q c:\tmp\ && mkdir c:\tmp\ 
 +</file> 
 + 
 +===== Fichier Hosts ===== 
 + 
 +  C:\Windows\System32\drivers\etc\hosts 
  
 ===== Empreinte MD5 ===== ===== Empreinte MD5 =====
Ligne 96: Ligne 151:
 "C:\Program Files\PuTTY\pscp.exe" filename.extension username@machinelinux:directory/subdirectory "C:\Program Files\PuTTY\pscp.exe" filename.extension username@machinelinux:directory/subdirectory
 </code> </code>
 +
 +
 +===== Synchroniser deux dossiers =====
 +
 +robocopy "\\172.17.0.72\d$\xxx" "D:\xxx" /MIR /l
  
  
  • memo/windows.1510068544.txt.gz
  • Dernière modification : il y a 8 ans
  • de Arnaud Jacquemin