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 [14/01/2019 13:53] – [Raccourcis clavier avec la touche Windows] Arnaud Jacqueminmemo:windows [21/04/2023 16:57] (Version actuelle) – [Fichier Hosts] Arnaud Jacquemin
Ligne 1: Ligne 1:
 ====== Microsoft 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 ===== ===== Raccourcis clavier avec la touche Windows =====
Ligne 9: Ligne 18:
 <file autohotkey windows-shortcuts.ahk> <file autohotkey windows-shortcuts.ahk>
 ; Lancer Notepad++ avec Windows n ; Lancer Notepad++ avec Windows n
-#n::Run"C:\Program Files\Notepad++\notepad++.exe"+#n::Run "C:\Program Files\Notepad++\notepad++.exe"
  
 ; Lancer l'invite de commande avec Windows c ; Lancer l'invite de commande avec Windows c
-#c::Runcmd+#c::Run "cmd"
  
 ; Lancer la calculatrice avec Windows - (touche moins du pavé numérique) ; Lancer la calculatrice avec Windows - (touche moins du pavé numérique)
-#NumpadSub::Runcalc+#NumpadSub::Run "calc"
 </file> </file>
  
 Le caractère "#" signifie touche Windows. 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 114: 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.1547470399.txt.gz
  • Dernière modification : il y a 7 ans
  • de Arnaud Jacquemin