Fusion d’images install.wim
Dans cette article je vous fait part comment fusionner plusieurs images d’installation windows en un seul .iso.
Se munir tout d’abord d’un dvd d’installation W8 et W8.1 et copier tout leurs contenus à la racine de C:\ et renommer le répertoire W8.1 en « 8.1×86″, dans le cas d’un iso le décompresser à l’aide de 7Zip comme suit:
une fois décompressé:
Nous allons installer l’outil WAIK imagex.exe extrait de l’archive Imagex de Microsoft dans le dossier C:\Windows\System32\, qui nous servira à fusionner les images install.wim
Posted in Windows, Windows 8, Windows 8.1 and tagged windows 8/8.1 by Jean Charles ROTH with comments disabled.
Script de désinstallation migration W10 (Windows8/8.1)
Voici un script qui permet de désinstaller plusieurs correctifs nécessaires au passage vers W10
Ouvrez un fichier bloc notes et copiez les lignes suivantes:
echo Uninstalling KB3035583 start /w wusa.exe /uninstall /kb:3035583 /quiet /norestart echo Uninstalling KB2976978 start /w wusa.exe /uninstall /kb:2976978 /quiet /norestart echo Uninstalling KB3044374 start /w wusa.exe /uninstall /kb:3044374 /quiet /norestart echo Uninstalling KB3112336 start /w wusa.exe /uninstall /kb:3112336 /quiet /norestart echo Disabling GWX in Registry reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx /v DisableGwx /t REG_DWORD /d 1
La clé de registre modifiée permet de bloquer GetWindows10.
Enregistrer mon_script.bat en sélectionnant tous les fichiers.
Une fois le script effectué, pensez à refaire un windows update et clic droit masquer les mises à jour suivantes:
KB3035583
KB2976978
KB3044374
KB3112336
Posted in Windows, Windows 8, Windows 8.1 and tagged script, windows 8/8.1 by Jean Charles ROTH with comments disabled.
Script de désinstallation télémétrie Windows
Voici un script permettant de désinstaller toutes les petites choses qui papotent dans notre dos.
Ouvrez un fichier bloc notes et copiez les lignes suivantes:
@echo off echo Uninstalling KB3075249 (telemetry for Win7/8.1) start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart echo Uninstalling KB3080149 (telemetry for Win7/8.1) start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart echo Uninstalling KB3021917 (telemetry for Win7) start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart echo Uninstalling KB3022345 (telemetry) start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart echo Uninstalling KB3068708 (telemetry) start /w wusa.exe /uninstall /kb:3068708 /quiet /norestart echo Uninstalling KB3075853 (update for "Windows Update" on Win8.1/Server 2012R2) start /w wusa.exe /uninstall /kb:3075853 /quiet /norestart echo Uninstalling KB3065987 (update for "Windows Update" on Win7/Server 2008R2) start /w wusa.exe /uninstall /kb:3065987 /quiet /norestart echo Uninstalling KB3050265 (update for "Windows Update" on Win7) start /w wusa.exe /uninstall /kb:3050265 /quiet /norestart echo Uninstalling KB971033 (license validation) start /w wusa.exe /uninstall /kb:971033 /quiet /norestart echo Uninstalling KB2902907 (description not available) start /w wusa.exe /uninstall /kb:2902907 /quiet /norestart echo Uninstalling KB2976987 (description not available) start /w wusa.exe /uninstall /kb:2976987 /quiet /norestart echo Uninstalling KB3102810 (update for "Windows Update") start /w wusa.exe /uninstall /kb:3102810 /quiet /norestart echo Uninstalling KB3112343 (Windows Update Client for Windows 7) start /w wusa.exe /uninstall /kb:3112343 /quiet /norestart echo Uninstalling KB3135445 (Windows Update Client for Windows 7) start /w wusa.exe /uninstall /kb:3135445 /quiet /norestart echo Uninstalling KB3123862 (Windows Update Client for Windows 7) start /w wusa.exe /uninstall /kb:3123862 /quiet /norestart echo Uninstalling KB3081954 (Telemetry Update for Windows 7) start /w wusa.exe /uninstall /kb:3081954 /quiet /norestart echo Uninstalling KB3139929 (Get Windows 10 update for MSIE) start /w wusa.exe /uninstall /kb:3139929 /quiet /norestart
Posted in Windows, Windows 7, Windows 8, Windows 8.1 and tagged script, Windows 10, Windows 7, windows 8/8.1 by Jean Charles ROTH with comments disabled.