2024-11-19 13:49:39 +01:00
|
|
|
|
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:ID: 14cc7f84-8487-470b-8108-a9435bea9bee
|
|
|
|
|
:END:
|
|
|
|
|
|
|
|
|
|
#+title: crer-des-alias-de-commande-windows-7
|
|
|
|
|
#+post_ID: 260
|
|
|
|
|
#+post_slug: crer-des-alias-de-commande-windows-7
|
|
|
|
|
#+post_url: https://www.ciperbliss.com/2013/crer-des-alias-de-commande-windows-7
|
|
|
|
|
#+post_title: Créer des alias de commande windows 7
|
2024-11-19 23:50:42 +01:00
|
|
|
|
#+post_tags:
|
2024-11-19 13:49:39 +01:00
|
|
|
|
#+post_type: post
|
|
|
|
|
#+post_mime_types:
|
|
|
|
|
#+post_guid: undefined
|
|
|
|
|
#+post_status: publish
|
|
|
|
|
#+post_date_published: <2013-07-29T14:25:57>
|
|
|
|
|
#+post_date_modified: <2013-07-29T14:25:57>
|
|
|
|
|
#+post_index_page_roam_id: fa7f2a8c-2b94-4e42-bb4c-25c026ed7ff9
|
|
|
|
|
#+retrieved_from_db_at: <2024-11-18 16:25:08>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Créer des alias de commande windows 7
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:CUSTOM_ID: créer-des-alias-de-commande-windows-7
|
|
|
|
|
:END:
|
|
|
|
|
|
2024-11-19 23:50:42 +01:00
|
|
|
|
[[http://iflock.deviantart.com/art/Shell-64171812][http://th05.deviantart.net/fs21/300W/i/2007/248/4/c/Shell_by_iflock.jpg]]Vous
|
2024-11-19 13:49:39 +01:00
|
|
|
|
voulez éviter de taper des changement de dossier dans votre console?
|
|
|
|
|
Faite un ctrl + click droit dans le dossier désiré et cliquez sur
|
|
|
|
|
"ouvrir un terminal ici".
|
|
|
|
|
|
|
|
|
|
|
2024-11-19 23:50:42 +01:00
|
|
|
|
|
2024-11-19 13:49:39 +01:00
|
|
|
|
Pour s'éviter de taper plein de fois une commande dans windows 7 il vous
|
|
|
|
|
faudra créer un fichier autorun.bet dans votre dossier
|
|
|
|
|
personnelPour moi ça donne:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#+begin_quote
|
|
|
|
|
C:\Users\tykayn
|
|
|
|
|
|
|
|
|
|
#+end_quote
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
et bidouiller le registre.
|
|
|
|
|
|
|
|
|
|
|
2024-11-19 23:50:42 +01:00
|
|
|
|
|
2024-11-19 13:49:39 +01:00
|
|
|
|
Voici le contenu de mon fichier autorun.bat:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#+begin_quote
|
|
|
|
|
@ECHO OFFdoskey ls=dir /b $*doskey
|
|
|
|
|
ll=dir $*doskey cat=type $*doskey
|
|
|
|
|
..=cd..doskey grep=find "$1"
|
|
|
|
|
$2doskey mv=ren $*doskey rm=del
|
|
|
|
|
$*doskey sf=php app/console $*
|
|
|
|
|
|
|
|
|
|
#+end_quote
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ces alias reprennent les commandes unix et la dernière concerne symfony2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(touche windows, écrivez regedit, appuyez sur entrée et vous voilà dans
|
|
|
|
|
l'éditeur de registre.Naviguez
|
|
|
|
|
dans :HKEY_CURRENT_USER > Software > Microsoft >
|
|
|
|
|
Command Processorclick droit, nouveau > valeur
|
|
|
|
|
chaîneAppellez la *Autorun*faites
|
|
|
|
|
entrée, click droit dessus, modifiez sa valeur à ceci
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#+begin_quote
|
|
|
|
|
%USERPROFILE%\autorun.bat
|
|
|
|
|
|
|
|
|
|
#+end_quote
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Et voilà, les prochianes consoles windows que vous ouvrirez contiendront
|
|
|
|
|
votre fichier autorun.bat avec ses alias.Voilou,
|
|
|
|
|
enjoy!
|
|
|
|
|
|
|
|
|
|
|