Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. You can launch Ultimate Windows Tweaker.exe to restore the arrows from shorcuts icons: 1) Inside the left pane: select: Additional Tweaks Uncheck: Remove arrows from Shorcut Icons Restart the computer to see effect! 2) Or you can delete this reg key (maybe 2 reg keys). Restart the computer to see effect! Arrows_Shorcut.reg Windows Registry Editor Version 5.00 ; Restore Arrows from Shorcut Icons [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons] "29"="empty.ico,0" [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons] "29"="empty.ico,0" Arrows Shorcut Icons: http://www.groovypost.com/howto/how-to/remove-windows-7-shortcut-icon-arrow-overlay/ If you want keep the Icons whithout arrows, you can try to copy/paste the file empty.ico inside C:\Windows And add this reg key below You will find the empty.ico file inside the folder uwt\UWT v2.2 Shorcut Icons .reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons] "29"="C:\\Windows\\empty.ico,0"
  2. It happens when we use a registry file incorrect to remove the shorcut arrow!
  3. I've tested successfuly to add these drivers inside my install.wim image! First check if you really need these drivers for your computer: http://www.intel.com/p/en_US/support/detect How to add Chipsets drivers inside the image install.wim: 1) Expand the file infinst_autol.zip 2) You will see the files for Windows 7 inside the folder infinst_autol\WIN7 3) Copy/paste all the files (.inf and .cat files) inside a folder (example: C:\Drivers\Chipsets) 4) Mount the image you want to integrate the drivers (example above). 5) Integrate drivers with the command line 6) Unmount /Commit Example: Mount_Unmout.cmd (image install.wim 5 = Ultimate) @echo off Color 0A echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Cleanup-Wim echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /WimFile:"C:\WinMSDN\sources\install.wim" /Index:5 /MountDir:"C:\work" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Driver /Driver:"C:\Drivers_Intel" /Recurse timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\work" /Commit pause Output Chipsets drivers Integration You can also read if you have errors inside: C:\Windows\Logs\DISM
  4. Many thanks Yzöwl Really nice and awesome! But, I must admit it is hard for me, because I'm a newbe with batch files. However It's very interresting to learn how that works. Thanks again for your time and the very useful informations!
  5. Thanks Yzöwl to point me about this question! Could you tell me if the batch file is correct like this. Works for me, even if the folder has a space in its name. @ECHO OFF SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION FOR /R "%~dp0" %%A IN (*-KB*.MSU) DO (CALL :SUB %%~nA ECHO INSTALLING KB!KB_number! TIMEOUT /t 3 >NUL C:\Windows\System32\wusa "%%A" /quiet /norestart) ECHO == Press any key to restart ==&PAUSE>NUL shutdown.exe /r /t 0 GOTO :EOF :SUB SET "KB_number=%*" FOR /F "DELIMS=-" %%B IN ("%KB_number:*-KB=%") DO SET "KB_number=%%B"
  6. Thanks Yzöwl and jaclaz! I've made some changes and the batch file works fine for me like below! After testing I see this batch file works fine, if I set the batch file inside a folder (example: C:\Post_SP1\) and the batch searching inside a subfolder (example: C:\Post_SP1\Updates); or if it is inside the same folder where the updates are located (example: C:\Post_SP1\Updates\). The batch file is inside C:\Post_SP1\ or inside C:\Post_SP1\Updates and is working fine (outside or inside the folder). Works also fine if I launch the batch file on C:\ partition! @ECHO OFF SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION FOR /R %%A IN (*-KB*.MSU) DO ( CALL :SUB %%~nA ECHO INSTALLING KB!KB_number! TIMEOUT /t 3 >NUL C:\Windows\System32\wusa.exe %%A /quiet /norestart ) ECHO == Press any key to restart ==&PAUSE>NUL shutdown.exe /r /t 0 GOTO :EOF :SUB SET "KB_number=%*" FOR /F "DELIMS=-" %%B IN ("%KB_number:*-KB=%") DO SET "KB_number=%%B" Output command window ------------------------------------------------------------ INSTALLING KB2425227 INSTALLING KB2479943 INSTALLING KB2491683 INSTALLING KB2503658 INSTALLING KB2506212 INSTALLING KB2506223 INSTALLING KB2507618 INSTALLING KB2508272 INSTALLING KB2508429 INSTALLING KB2509553 INSTALLING KB2511455 == Press any key to restart == ------------------------------------------------------------
  7. You can find help using: Start | Run and write: cmd Inside the command window, write (examples): for /? >C:\for.txt call /? >C:\call.txt After you can read the help about this commands inside the text files.
  8. Here is the result with the batch file with my customized settings for the Gadgets. Settings.ini customized and added Gadgets inside Autounattend.xml file. Weather settings are set for Geneva (Switzerland). Image Gadgets customized at first logon Image Gadgets with the Internet connection *Edit: a restart is needed to see the Gadgets settings customized ! 1) At first, the settings inside the Autounattend.xml file installs the Gadgets wanted. 2) And at last the Settings.ini is overwrited (writing a new time) with the customized settings with the batch file. 3) After the reboot we can see the Gadgets customized with our personnal settings. *Edit 2: Maybe that can solve some trouble You can also add this reg file inside the SCRIPTS folder Tweaks.reg Windows Registry Editor Version 5.00 ; Restore Gadgets on the Desktop after disabling UAC [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sidebar\Settings] "AllowElevatedProcess"=dword:00000001 ; Show Gadgets [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] "Sidebar"="\"C:\\Program Files\\Windows Sidebar\\sidebar.exe /autoRun"" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Sidebar] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Sidebar\Settings] "ShowGadgets"=dword:00000001 Clean.cmd attrib -A -I "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\Settings.ini" /S /D COPY /Y "%~dp0Settings.ini" "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\" attrib +A +I "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\Settings.ini" /S /D REM Restart 'sidebar.exe' SET KEY=HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce REG ADD %KEY%\001 /V 1 /D "%systemdrive%\Program Files\Windows Sidebar\sidebar.exe" /f REM Registry Tweaks REGEDIT /S "%systemroot%\Setup\scripts\Tweaks.reg" shutdown.exe /r /t 30 *Edit: post updated with the correct attributes for the Settings.ini file.
  9. Thanks Maybe it's possible. I haven't tested, but I think in this case it's better do not set Gadgets inside Autounattend.xml file, because the file Settings.ini will be modded as default settings (I think)! But you can choose to set the Gadgets after the installation is complete and your customized settings will be displayed. Cheers.
  10. Yes! I do like this (for Calendar, Weather and Clock Gadgets): 1) On your computer you can select the options you want 2) Go to "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\Settings.ini" (show hiden files and folders) 3) Copy/paste the Settings.ini file inside your distribution folder: %Win7_Folder%\sources\$OEM$\$$\SETUP\SCRIPTS\Settings.ini 4) Create a batch file to the silent installation and set this one inside the same folder SCRIPTS: I use WPI 8.1.0 to launch this batch file at last: Clean.cmd REM Gadgets Settings customized attrib -A -I "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\Settings.ini" /S /D COPY /Y "%~dp0Settings.ini" "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\" attrib +A +I "%userprofile%\AppData\Local\Microsoft\Windows Sidebar\Settings.ini" /S /D REM Restart 'sidebar.exe' SET KEY=HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce REG ADD %KEY%\001 /V 1 /D "%systemdrive%\Program Files\Windows Sidebar\sidebar.exe" /f shutdown.exe /r /t 30 I chose also the same Gadgets inside my Autounattend.xml. *Edit: post updated with the correct attributes for the Settings.ini file.
  11. About Autounattend.xml file for x86 and amd64 architectures: 1) First create the Autounattend.xml file for x86 with WSIM (Windows System Image Manager) include with WAIK (example Windows 7 Ultimate) 2) Copy manually the same passes inside your Autounattend.xml file for amd64 Architecture (always for the same image Windows 7 Ultimate) Example here: http://www.msfn.org/...e/page__st__100 (post #116) 3) Check with WSIM to see if errors 4) Remove the last line inside the Autounattend.xml file (example): <cpi:offlineImage cpi:source="wim:c:/WinMSDN/sources/install.wim#Windows 7 ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi"/> WARNING: You will be able to choose between Windows 7 Ultimate x86 or amd64 Architectures for the silent installation! If you have all Windows 7 versions inside install.wim image, take care to write the correct IMAGE/INDEX value (number) for each Windows 7 Edition Ultimate (example). Because if there is only two images (keeping only Windows 7 Ultimate x86 and amd64), there is only 2 values; and if all images are merged (x86 and x64) you have 9 values! Using IMAGE/INDEX inside Autounattend.xml file --------------------------------------------------------------------------------- <ImageInstall> <OSImage> <WillShowUI>Always</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/INDEX</Key> <Value>1</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> ----------------------------------------------------------------------------- Use imagex to read this info about index value: imagex /info <path_to_install.wim> Example: imagex /info C:\WinMSDN\sources\install.wim
  12. Thanks Gremo Yes, whithout an Autounattend.xml file the dialog boxes will be displayed.
  13. Many thanks Yzöwl You're right. I haven't seen this before! I've updated my last posts! However, with this changes all updates .msu will be installed with the batch file inside the folder where are located all the updates, like you said. (Removed "skip=1") @echo off for /f %%A in ('dir /b *.msu') do ( echo == Installing Updates == "%%A" ... timeout /t 3 C:\Windows\system32\wusa.exe %%A /quiet /norestart ) echo. echo ######################################## echo. echo == Updates installed == echo. echo == Press any key to restart ==&pause>nul echo. shutdown.exe /r /t 0 For Windows 7 French localised version @echo off for /f %%A in ('dir /b *.msu') do ( echo == Installation des Mises … jour == "%%A" ... timeout /t 3 C:\Windows\system32\wusa.exe %%A /quiet /norestart ) echo. echo ######################################## echo. echo == Mises … jour install‚es == echo. echo == Appuyez sur n'importe qu'elle touche pour red‚marrer ==&pause>nul echo. shutdown.exe /r /t 0 @centi50 Sorry, I haven't seen this error before! *Edit: Output inside the command window timeout /t 3 (means waiting 3 seconds between each update to install) ---------------------------------------------------------------------------------------------------------------- == Installation des Mises à jour == "Windows6.1-KB2425227-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2479943-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2491683-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2503658-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2506212-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2506223-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2507618-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2508272-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2508429-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2509553-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... == Installation des Mises à jour == "Windows6.1-KB2511455-x86.msu" ... Attendre 0 secondes, appuyez sur une touche pour continuer... ####################################################### == Mises à jour installées == == Appuyez sur n'importe qu'elle touche pour redémarrer == ----------------------------------------------------------------------------------------------------------------
  14. The command line with DISM to Add-Driver is (example with Recurse option): Dism /Image:C:\Mounted_Folder /Add-Driver /Driver:C:\Drivers /Recurse Example More help: http://technet.micro...258(WS.10).aspx http://technet.micro...355(WS.10).aspx http://technet.micro...517(WS.10).aspx Could you point where you have downloaded the drivers package, please?
  15. After many tests, I see this is possible to use an Autounattend.xml file without enter keys, but some dialog boxes will be displayed: http://www.msfn.org/board/topic/151156-rt7lite-and-aio-x86-x64/page__pid__964713__st__20#entry964713 Maybe that can help you!
  16. @nice_guy75 Thanks to update the reg file you gave inside your post, like you've done inside Rockers Teams Forum (post # 21): http://www.rtwincustomize.net/web/index.php?/topic/8359-manual-registry-tweaks-reg-file/ Many thanks
  17. However, if you do not want integrate all the keys inside the mounted images, you can use this Autounattend.xml file (as example and adapt to your needs): But that means: 1) All availables images will be displayed (remove ei.cfg inside %DVD%\sources\ei.cfg) 2) The dialog box "Accept Eula" will be displayed 3) The section OOBE will be displayed: User Name Password Product key (you can choose to enter the valid key or do not enter a product key) and uncheck: Activate... - You can skip the product key and not enter a key at all, and Windows will install the defautl key needed for the version you choose! Or - You can enter the valid key matching the Windows 7 version you want to install Using this method the customer can install the Windows 7 version he wants! Autounattend.xml (x86) <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>fr-FR</UILanguage> </SetupUILanguage> <InputLocale>100c:0000100c</InputLocale> <SystemLocale>fr-CH</SystemLocale> <UILanguage>fr-FR</UILanguage> <UserLocale>fr-CH</UserLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Diagnostics> <OptIn>false</OptIn> </Diagnostics> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <DynamicUpdate> <Enable>false</Enable> <WillShowUI>OnError</WillShowUI> </DynamicUpdate> <ImageInstall> <OSImage> <WillShowUI>Always</WillShowUI> </OSImage> </ImageInstall> <EnableFirewall>true</EnableFirewall> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EnableLUA>false</EnableLUA> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Home_Page>http://www.bluewin.ch/index.html.fr</Home_Page> <BlockPopups>yes</BlockPopups> <FavoritesOnTop>true</FavoritesOnTop> <FilterLevel>High</FilterLevel> <Help_Page>http://people.consolidated.net/veeger/</Help_Page> <DisableFirstRunWizard>true</DisableFirstRunWizard> <DisableWelcomePage>true</DisableWelcomePage> <PlaySound>false</PlaySound> <ShowInformationBar>true</ShowInformationBar> <LockToolbars>true</LockToolbars> <ShowLeftAddressToolbar>true</ShowLeftAddressToolbar> <ShowMenuBar>true</ShowMenuBar> <SuggestedSitesEnabled>true</SuggestedSitesEnabled> </component> <component name="Microsoft-Windows-RemoteAssistance-Exe" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <fAllowFullControl>false</fAllowFullControl> <fAllowToGetHelp>false</fAllowToGetHelp> </component> <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SkipAutoActivation>true</SkipAutoActivation> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UILanguage>fr-FR</UILanguage> <UserLocale>fr-CH</UserLocale> <InputLocale>100c:0000100c</InputLocale> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>1024</VerticalResolution> <RefreshRate>60</RefreshRate> </Display> <TimeZone>W. Europe Standard Time</TimeZone> <OEMInformation> <Logo></Logo> <Manufacturer>Se7en_UA</Manufacturer> <Model>Seven Titan</Model> <SupportHours>A tout instant, consultez les Forums</SupportHours> <SupportPhone>BR549</SupportPhone> <SupportURL>http://www.msfn.org</SupportURL> </OEMInformation> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>true</ShowMediaCenter> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> </component> <component name="Microsoft-Windows-Sidebar" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Gadget1>%PROGRAMFILES%\Windows Sidebar\Gadgets\Clock.Gadget</Gadget1> <Gadget2>%PROGRAMFILES%\Windows Sidebar\Gadgets\Calendar.Gadget</Gadget2> <Gadget3>%PROGRAMFILES%\Windows Sidebar\Gadgets\Weather.Gadget</Gadget3> </component> </settings> </unattend> I've tested successfully the installation for Windows 7 Professional. And I can choose the Windows 7 Edition I want to install! You can use only one Autounattend.xml (x86 and amd64) for Windows 7 x86 and Windows 7 x64 merging the two unattend files! Image Windows 7 without key
  18. NO! You can't set all the default keys or valid keys for all Windows 7 Edition inside Autounattend.xml file! *Edit: 1) One method is to inject the keys inside the mounted images! 2) Second method is to create an Autounattend.xml like my example on the next post
  19. I've made some changes inside the batch file and works also fine like this for me, using wusa.exe: @echo off for /f %%A in ('dir /b *.msu') do ( echo == Installing Updates == "%%A" ... timeout /t 3 C:\Windows\system32\wusa.exe %%A /quiet /norestart ) echo. echo ########################################################### echo. echo == Updates installed == echo. echo == Press any key to restart ==&pause>nul echo. shutdown.exe /r /t 0 *Edit: post updated! Removed "skip=1" inside the batch file like explained by Yzöwl
  20. Just to clarify a point, about Windows 7 keys. We can read inside: Unattended Windows setup Reference for Windows 7.chm Windows 7 valid keys (or default keys) are edition specific! All editions are inside the image install.wim and the default keys can be used for silent installation! But there is ONLY ONE VALID KEY to activate the edition matching the specific Windows 7 edition you've bought! That means you can't use only one valid key to activate all Windows 7 Editions you have on the image install.wim! If you try to install Windows 7 HOMEPREMIUM with a valid key for Windows 7 Ultimate, you will see that you can only install Windows 7 Ultimate. http://windows.microsoft.com/en-US/windows7/Windows-7-activation-error-invalid-product-key About the Autounattend.xml file for Windows 7 x86 and x64, you can find help here (my post #116, link already given above): http://www.msfn.org/...e/page__st__100
  21. I found this batch file, but I don't remember where. Tested and working! But I don't know how to add timeout /t 3 (waiting after each update installed!) Set the batch file inside the folder where you have all the updates you want install and launch the batch. Updates.cmd @echo off for /f "skip=1" %%A in ('dir /b *.msu') do ( echo Installing Updates "%%A" ... start /wait %%A /quiet /norestart > nul ) echo. echo ########################################################### echo. echo Updates installed echo Press any key to restart pause >NUL shutdown -r -t 0 *Edit: the value "skip=1" is wrong and the first update will not be installed like explained by Yzöwl
  22. You can use 7Customizer and WAIK for Windows 7 on a computer running with Windows XP SP3! I've tried successfully! http://www.msfn.org/board/topic/139077-7customizer-a-windows-7-customization-and-deployment-tool/page__st__1200 You can also use Se7en_UA 6.3.33 http://www.msfn.org/board/topic/138899-se7en-ua-with-sp1-rtm-injection/
  23. Thanks, I'm happy to read you have successfully installed Office 2007 Entreprise silently!
  24. Thanks jaclaz! I think you're right I've updated my last post about adding more space. Thanks for your understanding!
×
×
  • Create New...