Page 1 sur 1
Création d'un batch pour automatisé une config windows !
Posté : 24 nov. 2011 16:34
par dam2121
Bonjour,
Voila je vous expose mon projet j'ai actuellement des config a faire sur windows du genre ( Power option, screensaver,On screen display, advancedkey setting et j'en passe).
Ma question est est-ce avec des commande batch l'on peut automatisé tout ca ? est-ce fesable ?
Merci
Re: Création d'un batch pour automatisé une config windows !
Posté : 24 nov. 2011 16:36
par dam2121
J'oublié de manière professionnel car c'est pour mon entreprise !
Merci encore
Re: Création d'un batch pour automatisé une config windows !
Posté : 29 nov. 2011 10:21
par dam2121
Toujours aucune réponse !? ce Forum est vraiment mort
Re: Création d'un batch pour automatisé une config windows !
Posté : 18 déc. 2011 15:55
par Laddy
Bonjour
je pense que tout peut etre surement géré via le registre encore faut il trouvé les bonnes clés ou avec le wmi.
Re: Création d'un batch pour automatisé une config windows !
Posté : 18 déc. 2011 17:07
par Romanium
Laddy a raison, le registre serait probablement la meilleure solution. Tu peux ajouter/exporter/effacer des clés regitre en utilisant le programme de windows REGEDIT sous ms-dos. Voilà le synopsis que j'ai trouvé sur internet:
GUI mode: REGEDIT.EXE
Import (merge) a .REG file: REGEDIT.EXE [ /L:system | /R:user ] [ /S ] importfile.REG
Export to a (.REG) file: REGEDIT.EXE [ /L:system | /R:user ] /E exportfile.REG "registry_key"
Compress the registry (Windows 98 only): REGEDIT.EXE [ /L:system | /R:user ] /C
Parameters:
importfile.REG .REG file to be imported (or "merged")
exportfile.REG File name the information should be written to
"registry_key" Registry key to be exported, e.g. "HKEY_CLASSES\ROOT\*\shell"
/S Silent, i.e. hide confirmation box when importing files
/E Export registry file
/L:system Specify the location of the system.dat to use
/R:user Specify the location of the user.dat to use
/C Compress [filename] (Windows 98 only)