Jump to content

kalimergo

Members
  • Posts

    19
  • Joined

  • Last visited

Everything posted by kalimergo

  1. pas mal comme outils mais un truc russe, ça me fait toujours un peu peur même si après scan rien n'a été trouvé de désobligeant... de plus à un moment mon pc avec le pack installé a buggé, chose qui n'arrive jamais en temps normal. Autre chose, KB3020369 peut etre désinstallé par la suite via DISM /Remove-Package /PackageName
  2. merci je vais tester ça Bon alors après un premier test en online il fait beaucoup de place en effet mais en offline, c'est plutôt maigre du moins pour moi.
  3. merci pour le boulot que vous faites surtout que ça devient un vrai casse-tête. Ha si au moins on avait la formule pour créer un vrai service pack !
  4. merci mais bizarrement Windows6.1-KB2882822-x86.msu est redemandé chez moi.... J'ai l'impression que certaines mise à jour ont été mal installée/désinstallée dans mon wim. Total size of superseded packages: 21.20 MB (22,235,860 bytes)2015-05-21 11:28:12, Info CBS Microsoft-Windows-IE-Troubleshooters-Package~31bf3856ad364e35~x86~~6.1.7601.17514 superseded - uninstalled2015-05-21 11:28:12, Info CBS Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~x86~~8.0.7601.17514 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_30_for_KB3023607~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_30_for_KB3046049~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_34_for_KB3023607~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_34_for_KB3046049~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_41_for_KB3023607~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_41_for_KB3046049~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_58_for_KB3023607~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_58_for_KB3046049~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_for_KB3023607~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled2015-05-21 11:28:12, Info CBS Package_for_KB3046049~31bf3856ad364e35~x86~~6.1.1.0 superseded - uninstalled
  5. Merci rhahgleuhargh mais pour moi il manque 3 mises à jours en x86 Windows6.1-KB3054476-x86.msu Windows6.1-KB3061518-x86.msu (je pense qu'elle doit être en runonce) Windows6.1-KB2952664-v9-x86.msu (je pense qu'elle doit etre en runonce aussi) Cela ferait donc 4 mises à jours à faire après echo KBstart /wait %systemroot%\Setup\Scripts\Windows6.1-KB2533552-x86.msu /quiet /norestartecho.echo KBstart /wait %systemroot%\Setup\Scripts\Windows6.1-KB3046269-x86.msu /quiet /norestartecho.echo KBstart /wait %systemroot%\Setup\Scripts\Windows6.1-KB3061518-x86.msu /quiet /norestartecho.echo KBstart /wait %systemroot%\Setup\Scripts\Windows6.1-KB2952664-v9-x86.msu /quiet /norestartecho.
  6. <SkipUserOOBE>true</SkipUserOOBE> in autounattend.xml
  7. try this del /s/q "%systemdrive%\Users\Public\*.lnk" some desktop links are in Public folder
  8. try to replace "%userprofile%\desktop\*.lnk" by "%systemdrive%\Users\myprofile\desktop\*.lnk"
  9. when this cmd start? user profile is create during the welcome screen. SetupComplete.cmd works before.
  10. Commands in the Setupcomplete.cmd file are executed with local system privilege. http://technet.microsoft.com/en-us/library/cc766314%28v=ws.10%29.aspx that is the problem...
  11. Okay one solution: 1- create in sources directory this 4 folders. ($OEM$/$$/Setup/scripts) 2- create SetupComplete.cmd in scripts folder with this lines cmdow @ /HID SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Install bat..." /f REG ADD %KEY%\001 /VE /D "Install bat" /fREG ADD %KEY%\001 /V 1 /D "%systemroot%\Setup\scripts\mybat.bat" /fExit 3- rename your bat file as "mybat.bat" and put it in scripts directory too
  12. yes the root folder go to Windows/Setup (folder already exist when you extracted the iso) but create "S"etup with big s, sometimes syntax is important... or create scripts/SetupComplete.cmd in Windows/Setup folder directly in your iso. important: SetupComplete.cmd works when "setup is checking video performance" comes silently but some tweaks needs to run after for works. If you want run bat file after welcome screen, it's possible to put this command in SetupComplete.cmd (mybat.bat is our bat file in Setup\scripts folder) cmdow @ /HID SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Install bat..." /f REG ADD %KEY%\001 /VE /D "Install bat" /fREG ADD %KEY%\001 /V 1 /D "%systemroot%\Setup\scripts\mybat.bat" /fExit
  13. if you want disable features in install.wim, create a new folder (here C:\new), mount install.wim in "new" folder and use dos command: Dism /Image:C:\new /Disable-Feature /FeatureName:TabletPCOCDism /Image:C:\new /Disable-Feature /FeatureName:FaxServicesClientPackageDism /Image:C:\new /Disable-Feature /FeatureName:Printing-XPSServices-FeaturesDism /Image:C:\new /Disable-Feature /FeatureName:Internet-Explorer-Optional-x86Dism /Image:C:\new /Disable-Feature /FeatureName:Xps-Foundation-Xps-ViewerDism /Image:C:\new /Disable-Feature /FeatureName:TIFFIFilterDism /Image:C:\new /Disable-Feature /FeatureName:WindowsGadgetPlatformDism /Image:C:\new /Disable-Feature /FeatureName:MediaPlaybackDism /Image:C:\new /Disable-Feature /FeatureName:WindowsMediaPlayerDism /Image:C:\new /Disable-Feature /FeatureName:MediaCenterDism /Image:C:\new /Disable-Feature /FeatureName:OpticalMediaDiscDism /Image:C:\new /Disable-Feature /FeatureName:Printing-Foundation-FeaturesDism /Image:C:\new /Disable-Feature /FeatureName:Printing-Foundation-InternetPrinting-ClientDism /Image:C:\new /Disable-Feature /FeatureName:MSRDC-Infrastructure here is for x86 windows 7 features. unmount with save another explanation here : http://technet.microsoft.com/en-us/library/hh824822.aspx important: for works, you need original winsxs backup folder. Erase it after if you want.
  14. Comme vous le savez, désactiver l'indexation sur la partition d'installation se fait manuellement. Il existe néanmoins un moyen pour le faire avant que l'installation soit faite. J'ai trouvé ça moi même par hasard et pourtant j'ai cherché longtemps sur le net. En fait c'est tout bête, il suffit de monter install.wim via un dossier (dossier mount par exemple). Une fois monté, vous faites bouton droit sur le dossier et décocher la case "autoriser l'indexation du contenu ...". Vous attendez qu'il finisse de désindexer tous les dossiers et fichiers du dossier (mount ici) Une fois fait, vous démontez l'image en sauvegardant et voilà, désormais a chaque installation de votre windows, vous n'aurez plus besoin de décocher cette case, tous les dossiers et fichiers seront désindexés par défaut.
  15. for example in bat file... Dism /online /Disable-Feature /FeatureName:TabletPCOC /norestart Dism /online /Disable-Feature /FeatureName:FaxServicesClientPackage /norestart Dism /online /Disable-Feature /FeatureName:Printing-XPSServices-Features /norestart Dism /online /Disable-Feature /FeatureName:Internet-Explorer-Optional-x86 /norestart Dism /online /Disable-Feature /FeatureName:Xps-Foundation-Xps-Viewer /norestart Dism /online /Disable-Feature /FeatureName:TIFFIFilter /norestart Dism /online /Disable-Feature /FeatureName:WindowsGadgetPlatform /norestart Dism /online /Disable-Feature /FeatureName:MediaPlayback /norestart Dism /online /Disable-Feature /FeatureName:WindowsMediaPlayer /norestart Dism /online /Disable-Feature /FeatureName:MediaCenter /norestart Dism /online /Disable-Feature /FeatureName:OpticalMediaDisc /norestart Dism /online /Disable-Feature /FeatureName:Printing-Foundation-Features /norestart Dism /online /Disable-Feature /FeatureName:Printing-Foundation-InternetPrinting-Client /norestart Dism /online /Disable-Feature /FeatureName:MSRDC-Infrastructure /norestart
  16. sources/$OEM$/$$/Setup/scripts/SetupComplete.cmd
×
×
  • Create New...