Category Archives: Uncategorized

Fedora: ajouter un programme au démarrage

1.) make a new file in the /etc/init.d/ directory 2.) add your script to this file with the following lines at the top #!/bin/bash # chkconfig: 345 85 15 # description: of your file 3.) enter this in the shell chkconfig --add startup_filename
Posted in Uncategorized | Leave a comment

AD CS: Nouveaute Windows Server 2008 Active Directory Certificate Services (AD CS)

Avec Windows Server 2008, les PKI ont été totalement revu. On voit apparaitre AD CS (Active Directory Certificate Services) qui englobe de nombreux services autour du PKI Online Certificate Status Protocol (OCSP) Online Responder basé sur le protocole OCSP permet de remplacer la publication, souvent fastidieuse, de la CRL (Certificate Revocation Lists), indispensable pour une bonne gestion de [...]
Posted in Uncategorized | Leave a comment

WDS: Windows Deployment Services Role, le RIS remanie a la sauce Windows Server 2008

Windows Deployment Services Role Server components. These components include a Pre-Boot Execution Environment (PXE) server and Trivial File Transfer Protocol (TFTP) server for network booting a client to load and install an operating system. Also included is a shared folder and image repository that contains boot images, install images, and files that you need specifically for [...]
Posted in Uncategorized | Leave a comment

Ldifde : Modification de masse de l’AD

Dn: cn= dan dinicolo, cn=users, dc=win2000trainer, dc=com DisplayName: Dan DiNicolo ObjectClass: user SAMAccountName: dinicolo UserPrincipalName: dan@2000trainers.com TelephoneNumber: 416-555-5555 Dn: cn= jown doe, cn=users, dc=2000trainers, dc=com DisplayName: John Doe ObjectClass: user SAMAccountName: doe UserPrincipalName: doe@2000trainers.com TelephoneNumber: 416-555-5556 Lot Parser: http://www.microsoft.com/technet/scriptcenter/tools/logparser/default.mspx exemple de template.tpl : <LPBODY> dn: CN=%FIELD_2% %FIELD_1%,OU=Americas,DC=Corp,DC=Net changetype: add add: userPrincipalName userPrincipalName: %FIELD_4% - </LPBODY> type c:\output.csv | logparser “SELECT * FROM STDIN” -i:CSV -o:tpl -tpl:c:\template.tpl -q:on -stats:off >c:\output.ldf Importation dans AD: ldifde -i -f c:output.ldf http://technet.microsoft.com/en-us/library/aa997520.aspx http://www.networksappers.com/nuke/
Posted in Uncategorized | Leave a comment