Fichier Bat, exemple pour une install

Ceci n’est évidement qu’un exemple de ce qu’il est possible de faire, à adapter en fonction des besoins :

REM =================== lecteur où sont les fichiers

set currentpath=%~dp0

REM =================== pour réupérer l’adresse mac et sérial

ipconfig /all
PAUSE

wmic csproduct>C:\Users\%username%\Desktop\serial.txt

REM =================== FOND D’ECRAN ===========================

REM copie de l’image du fond d’écran
xcopy %currentpath%\fond-ecran.jpg C:\Users\%username%\Pictures

@echo off

REM chemin absolu du fichier image
Set bmpfile=C:\Users\%username%\Pictures\fond-ecran.jpg

REM on fusionne la valeur à la base de registre
reg add « HKCU\Control Panel\Desktop » /v wallpaper /d « %bmpfile% » /f >nul

REM on rafraichi le bureau
%Windir%\System32\rundll32.exe user32.dll,UpdatePerUserSystemParameters ,1,True

REM =================== COPIE DES INSTALL SUR LE BUREAU =========

MD C:\Users\%username%\Desktop\install

xcopy « %currentpath%\Assistance Informatique.exe » C:\Users\%username%\Desktop
xcopy « %currentpath%\TSENew.RDP » C:\Users\%username%\Desktop
xcopy « %currentpath%\FortiClientVPN.msi » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\ccsetup561.exe » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\ChromeSetup.exe » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\Vidéo_Conf.ink » C:\Users\%username%\Desktop
xcopy « %currentpath%\TS1000.exe » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\webexplugin.msi » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\webexapp.msi » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\acrobat.exe » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\rename.ps1 » C:\Users\%username%\Desktop\install
xcopy « %currentpath%\raccourcis*. » C:\Users\%username%\Desktop xcopy « %currentpath%\icone*. » C:\Windows\System32

start C:\Users\%username%\Desktop\install\FortiClientVPN.msi
PAUSE

start C:\Users\%username%\Desktop\install\ChromeSetup.exe
PAUSE

start C:\Users\%username%\Desktop\install\ccsetup561.exe
PAUSE

start C:\Users\%username%\Desktop\install\TS1000.exe
PAUSE

start C:\Users\%username%\Desktop\install\webexapp.msi
PAUSE

start C:\Users\%username%\Desktop\install\webexplugin.msi
PAUSE

start C:\Users\%username%\Desktop\install\acrobat.exe
PAUSE

REM =================== Désactivation proxy ======================

REG ADD « HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings » /v « MigrateProxy » /t REG_DWORD /d 0 /f
REG ADD « HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings » /v « ProxyEnable » /t REG_DWORD /d 0 /f
REG ADD « HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings » /v « ProxyHttp1.1 » /t REG_DWORD /d 0 /f
REG ADD « HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings » /v « ProxyServer » /t REG_SZ /d «  » /f
REG ADD « HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings » /v « ProxyOverride » /t REG_SZ /d «  » /f

REM ==================== Activation pavé numérique au lancement ======

reg add « HKEY_USERS.DEFAULT\Control Panel\Keyboard » /v « InitialKeyboardIndicators » /t « REG_DWORD » /d 2 /f
reg add « HKEY_CURRENT_USER\Control Panel\Keyboard » /v « InitialKeyboardIndicators » /t « REG_DWORD » /d 2 /f

REM ==================== Retire le contrôle des certificats pour RDP (TSE)

REG ADD « HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client » /v « AuthenticationLevelOverride » /t « REG_DWORD » /d 0 /f

REM ==================== Appel du script powershell pour changer nom machine

C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -noprofile -command « Set-ExecutionPolicy bypass LocalMachine »
C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe powershell -file C:\Users\%username%\Desktop\install\rename.ps1

REM ==================== Suppression du répetoire d’installation

RMDIR /S/Q C:\Users\%username%\Desktop\install

REM ==================== REDEMARRAGE DE LA MACHINE =================

shutdown -r -t 0

Vous aimerez aussi...