Tags: windows

Sort by: Date / Title /

  1. 7 months ago by sox
    * Sous linux :
          Il faut arrêter le périphérique Wifi :
          ifconfig INTERFACE_WIFI down
          Et puis,
          ifconfig INTERFACE_WIFI hw ether NOUVELLE_ADRESSE_MAC
    
    * Sous Windows serveur 2003 :
         Allez dans gestionnaire de périphérique (clique droit sur Poste de Travail puis Propriétés).
         Puis allez dans les propriétés de votre carte réseau (clique droit sur votre carte réseau).
         Dans l'onglet Avancé, trouvez la MAC actuelle et changer la Valeur dans le champ situé en dessous (suite des nombres hexadécimaux sans séparateur)
  2. 7 months ago by cyo
    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 not supported on Win32") en ligne de commande (il faut d'abord faire une copie de la clé, ici : nom_du_serveur.key.org) :
    openssl rsa -in C:\"Program Files"\wamp\bin\apache\apache2.2.6\conf\ssl\nom_du_serveur.key.org -out C:\"Program Files"\wamp\bin\apache\apache2.2.6\conf\ssl\nom_du_serveur.key
    Voir http://www.entrust.net/knowledge-base/technote.cfm?tn=5634 pour les détails.
    
    Il faut paramétrer le VirtualHost du serveur concerné dans le fichier httpd-ssl.conf.
    En cas d'erreur, les logs se trouvent dans C:\Program Files\wamp\logs\apache_error.log
  3. 10 months ago by cyo
    Pour utiliser sous Windows, installer find : http://gnuwin32.sourceforge.net/packages/findutils.htm et renommer 'find.exe' différemment pour qu'il ne soit pas en conflit avec la commande DOS du même. Nécessite aussi http://gnuwin32.sourceforge.net/packages/libintl.htm et http://gnuwin32.sourceforge.net/packages/libiconv.htm
    find -type f -mtime -1 -print0 | xargs -0 ls -lt>_dernieres_modifs.txt
    
    On peut également utiliser le paramètre -mmin si on souhaite filtrer sur les 'n' dernières minutes (ex.: -mmin 60 => dernière heure).
  4. sponsorised links
  5. 10 months ago by cyo
    Pour écrire ces informations dans un fichier : > dir *.* /b /s >liste.txt
    1. dir *.* /b /s
  6. 11 months ago by spirit
    1. ipconfig /flushdns
  7. 1 year ago by spirit
    /WINDOWS/system32/drivers/etc
  8. 1 year ago by cyo
    Informations issues de la FAQ d'Eclipsepedia :
    
    Why do all my files show as outgoing changes?
    
    The CVS plugin uses timestamps of the files on disk to track the modification state of versioned
    files. As a result, there are some cases where Windows users may find that as a result of either
    (1) an automatic daylight savings change or (2) moving files between file systems, that all the
    files show up as outgoing changes. See Bug 5337
    (https://bugs.eclipse.org/bugs/show_bug.cgi?id=5337) for an explanation of the problem and
    workarounds. Thers is a utility action that will reset the timestamps so the files are in-sync with
    CVS. Be warned however that this utility resets the timestamps for any file whose timestamp differs
    from the sync timestamp by 1 hour. There is a possibility that this could reset a file that is
    really dirty. Use at your own risk. To use the action, install the plugin found here :
    http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-vcm-home/plugins/fixtimestamps.zip
    and them run the CVS Util/Fix Timestamps command available from the context menu of the Resource
    Navigator.
  9. 1 year ago by skanx and saved by 1 other
    tasklist -> ps
    
    taskkill -> kill
    (taskkill /PID <pid>)
  10. 1 year ago by neorom
    OpenOffice2 (bureautique)
    adobe reader 8 ( lecture pdf)
    eclipse (dev)
    notepad++ (dev)
    chronoshutdown (arret programmé du pc)
    daemontools (emulation lecteur cd)
    explore2fs (acces en lecture aux partitions ext2/3 du système)
    supercopier (utilitaire gestion copies)
    ultramon (payant, gestionnaire de systèmes multi écrans)
    winrar (shareware, archivage documents)
    gimp, paint.net (retouche photo)
    amsn (méssagerie instantanée)
    bitcomet (client bit torrent)
    emule (p2p)
    filezilla (client ftp)
    firefox (navigateur web)
    joost (TV on line)
    teamspeak (client voip)
    tortoise svn (client svn)
    winscp (tranferts de fichiers over ssh)
    xchat (client irc)
    putty (console acces distant ssh,telnet...)
    itunes (lecteur multimedia)
    vlc (lecteur video)
    dvdaudioextractor (récupération piste audio d'un DVD)
    skype (client voip)
    pc tools anti virus (anti virus)
  11. 1 year ago by sylis
    1. #Convertir un fichier texte d'un format Windows/dos vers unix:
    2.  
    3.   tr -d '\015' < win-format.txt > unix-format.txt
    4.  
    5. #Convertir un fichier texte d'un format unix vers Windows/dos:
    6.  
    7.   sed -e 's/$/\r/' unix-format.txt > win-format.txt

First / Previous / Next / Last / Page 1 of 3 (27 posteets)