Microsoft 2003 / 2008 / 2008 R2 (SERVEUR)

windows-128

(4 - user rating)
Untitled document
J'ai trouver ce petit tuto sur le net qui devrait aider certains d'entre vous ;)

(5 - user rating)
microsoft-texte
WDS est un Serveur de déploiement créer par Microsoft (anciennement appelé RIS (Remote installation Service),
permetant de déployer des images bootables créée par celui-ci.
ces services de déploiement permettent par un moyen simple et sécurisé de déployer rapidement et à distance
des systèmes d'exploitation Microsoft sur des ordinateurs clients via le réseau.

 

Prérequis:

  • Windows 2008/2008R2
  • Installation des Rôles suivants:
    • DNS
    • Active Directory
    • DHCP
    • WDS

Table des matières

 

Lire la suite...

Installation du certificat sous exchange 2007

Pour cela lancez le Gestionnaire des services Internet.

image001

Dérouler l’arborescence « SRVEXCHANG/Sites Web » et cliquer-droit sur «site web par défaut» et cliquer sur « propriétés ».

image004

 

Lire la suite...

A] Script pour forcer la détection automatique de la mise à jour client

@echo off
Echo This batch file will Force the Update Detection from the AU client:
Echo 1. Stops the Automatic Updates Service (wuauserv)
Echo 2. Deletes the LastWaitTimeout registry key (if it exists)
Echo 3. Deletes the DetectionStartTime registry key (if it exists)
Echo 4. Deletes the NextDetectionTime registry key (if it exists)
Echo 5. Restart the Automatic Updates Service (wuauserv)
Echo 6. Force the detection
Pause
@echo on
net stop wuauserv
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v LastWaitTimeout /f
REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v DetectionStartTime /f
Reg Delete "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v NextDetectionTime /f
net start wuauserv
wuauclt /detectnow
@echo off
Echo This AU client will now check for the Updates on the Local WSUS Server.
Pause

Ce script forcera la détection automatique de la mise à jour client sur le serveur WSUS.

Copiez sous, Collez le code dans un fichier texte et le nommer AUForceUpdate.cmd

Lire la suite...

Articles en relation