Windows Server 1.1 : Post tasks installation of the core server

Bienvenue dans cette nouvelle vidéo sur les tâches post-installation de Windows Server Core. Même sans interface graphique complète, Server Core embarque quelques outils GUI intégrés très pratiques qu'il est utile de connaître pour gérer le serveur efficacement après l'installation.

Premier outil : notepad. Tapé dans l'invite de commande, il ouvre l'éditeur de texte graphique. C'est utile pour créer des scripts, modifier un fichier de configuration, ou ouvrir un script existant déjà présent sur le disque (via Fichier → Ouvrir, navigation classique). Pratique pour ne pas devoir éditer en aveugle avec edit ou des outils plus rustiques.

Gestionnaire de tâches, registre et infos système

Vous avez aussi taskmgr qui ouvre le Gestionnaire de tâches Windows (affichage des processus, ressources, services). Pour modifier le Registre, tapez regedit — l'éditeur graphique du registre s'ouvre nativement. Et pour avoir un panorama complet du matériel et des logiciels, lancez msinfo32 qui affiche les informations système détaillées (CPU, RAM, BIOS, drivers, services). Ces outils GUI sont intégrés à Server Core, vous n'avez rien à installer.

Pour passer à PowerShell, tapez simplement powershell dans l'invite de commande. La fenêtre reste noire mais le prompt change : PS C:\> apparaît, et la coloration syntaxique passe au jaune sur les sorties de commandes. Essayez Get-Service pour voir tous les services en cours d'exécution avec leur état. Pour revenir à l'invite de commande Windows classique, tapez cmd. Ce double mode (CMD + PowerShell) sera votre quotidien sur Server Core. Bonne pratique !

Summary

This lesson covers essential post-installation tasks and built-in graphical tools available in Windows Server Core. The instructor demonstrates how to use Notepad for script creation, access Task Manager and Registry Editor for system management, and launch PowerShell for advanced command-line operations with enhanced features like syntax highlighting.

Key points

  • Notepad (notepad command) is a native graphical text editor for creating and editing scripts directly from the command prompt
  • Task Manager (taskmgr), Registry Editor (regedit), and system info tools (msinfo32, wmi32) are built-in graphical utilities integrated into the server core
  • PowerShell can be launched from Command Prompt and provides syntax highlighting and advanced scripting capabilities compared to traditional cmd
  • Get-Service and other PowerShell cmdlets return colored output for better readability
  • You can seamlessly switch between Command Prompt and PowerShell using simple commands (cmd and powershell)

FAQ

How do you open Notepad in Windows Server Core?

Type 'notepad' in the command prompt to launch the graphical text editor, which allows you to create and edit files including scripts.

What is the difference between Command Prompt (cmd) and PowerShell?

PowerShell is an advanced shell with enhanced features like colored syntax highlighting and powerful cmdlets (such as Get-Service), while cmd is the traditional command-line interface. Both are native to Windows Server.

What built-in tools are available for system management after Windows Server Core installation?

Key tools include Notepad (text editing), Task Manager via taskmgr (process management), Registry Editor via regedit (system configuration), and system information tools like msinfo32 and wmi32 (hardware/software details).