Jump to content

mickmack

Member
  • Posts

    147
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Belgium

About mickmack

  • Birthday 05/13/1980

Contact Methods

  • MSN
    mickmack13@msn.com
  • Website URL
    http://

mickmack's Achievements

0

Reputation

  1. im finally back! lotus006: use proggie cab2exe http://archives.mysteryfcm.co.uk/files_and...b30/exe2cab.exe
  2. for image select (home, ultimate, pro etc...) <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"> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>your image name here</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall>
  3. sorry, didnt read first port. now i see full picture. 5. Trigger UAC in Vista and 7 is easy i guess, in autounattend.xml <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> and display resolution is really handy feature. to have possibility of choosing languages from beginning of the setup you must edit boot.wim image 2 and add languages to lang.ini and folders for example ru-RU, fr-FR and so on. if you are interested i can share my part of command files i created to integrate languages needed for me (NL, RU, FR)
  4. @blue4603: how is about to do list? i think community might help to improve and test your programm. just write things you want implement/implemented and what is nessesary to test hard. im using it actively and can give good feedback.
  5. http://www.msfn.org/board/2-t139748.html just 6 posts above yours.
  6. hi all. my Autounattend.xml is almost perfect but theres one thing annoying me. in oobe when i create new user, it asks me to create password for this new user. i can skip it by manually pressing to next, but searching the way for .xml to make it automatically. i dont need to create user automatically and log him in, i just want to make user creation manually, but password auto. can anyone help me? here is my .XML <?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>ru-RU</UILanguage> <WillShowUI>OnError</WillShowUI> </SetupUILanguage> <InputLocale>0813:00000813;0419:00000419</InputLocale> <UserLocale>ru-RU</UserLocale> <UILanguage>ru-RU</UILanguage> <SystemLocale>ru-RU</SystemLocale> </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"> <UserData> <AcceptEula>true</AcceptEula> <ProductKey> <Key>D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ULTIMATE RU by Anri</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> </component> </settings> <settings pass="oobeSystem"> <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> <RefreshRate>75</RefreshRate> <VerticalResolution>800</VerticalResolution> </Display> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> </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\Calendar.Gadget,true</Gadget1> <Gadget2>%PROGRAMFILES%\Windows Sidebar\Gadgets\Clock.Gadget,true</Gadget2> <Gadget3>%PROGRAMFILES%\Windows Sidebar\Gadgets\Weather.Gadget,true</Gadget3> </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="specialize"> <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"> <TimeZone>Romance Standard Time</TimeZone> </component> <component name="Microsoft-Windows-Security-Licensing-SLC-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> </settings> <cpi:offlineImage cpi:source="wim:E:/w7ru9/sources/install.wim#Windows 7 Ultimate RU by Anri" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
  7. <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"> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>write image name you want to install here for example "Windows 7 Ultimate" but without quotes. try different names if doesnt work or take value from that window that you want to disable</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> </component>
  8. @blue4603: i found it! info stored in captured WIM file is getting wrong or missing. i fixed it by opening gimagex, gone to change, and wrote "Windows 7 Ultimate" in "name", "description", "display name", "display desc" and voila! after editing, i can easily open all my Wims with 7customizer.
  9. @blue4603: i think i have found a problem. first time i made sysprep image with this comand imagex.exe /compress maximum /flags "Ultimate" /capture C: D:\INSTALL.WIM "Windows 7 Ultimate by Anri" and i had a problem. now i've made another image with imagex.exe /compress maximum /flags "Ultimate" /capture C: D:\INSTALL.WIM "Ultimate" and 7customizer works. thank you again for your wonderful work!
  10. @blue4603 thank you for fast reply. is it possible to create unattended.xml file and than to make sysprep using this .xml file? because any .xml file i use, at "pe" point a get blank list of available operating systems to install. and setup gives error and refuses to continue, but without unatended.xml it works ok. by the way, same problem "7Customizer.Form1.selectImagePathBtn_Click(Object sender, EventArgs e)" i get with bie iso which has updates integrated. all i want from 7customizer is to make autounattend.xml file because vlite and wsim crushing upon loading my syspreped image. so no tweaks, no removal.
  11. blue4603: could it be that my image is near 4gb barrier? ive heard that 4gb is maximum for installer, after that size it gives an error. i also cant create autounattend.xml for that image/
  12. i get error every time i select my syspreped image. log. by the wat. i have good tweaks for 7 that i can upload to you. is it needed? === 7Customizer Started=== 7Customizer verion: 0.2.5 OS: Microsoft Windows NT 6.1.7600.0 OS architecture: AMD64 Work folder found: True Mount folder found: True Extract utility found: True Configuration file found: True Getting drive info Free space: 13,3337745666504 GB Getting drive info: Done Saved Imagex path: Saved DISM path: ImageX Path Selected ImageX Path: C:\Program Files\Windows AIK\Tools\amd64\imagex.exe Dism Path Selected Dism Path: C:\Program Files\Windows AIK\Tools\amd64\Servicing\Dism.exe Windows source path selected Sources folder found install.wim found install.wim size: 3820 MB Testing imagex Imagex result begin: ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 6.1.7600.16385 Imagex result end. Testing dism dism result begin: C��⥬� DISM �����: 6.1.7600.16385 dism result end. added: "C:\Program Files\Windows AIK\Tools\amd64\imagex.exe" /XML /info "E:\w7ru9\sources\install.wim">work\imagesinfo.xml Starting imagex Imagex created imagesinfo.xml Successfully Reading images information from imagesinfo.xml First 5 lines of imagesinfo.xml <WIM> <TOTALBYTES>4006234441</TOTALBYTES> <IMAGE INDEX="1"> <DIRCOUNT>11193</DIRCOUNT> <FILECOUNT>57958</FILECOUNT> Number of Available Images: 1 Available Images: Begin Unexpected Error: there is no link for object. в _7Customizer.Form1.selectImagePathBtn_Click(Object sender, EventArgs e)
  13. it happens to the dutch installer in dutch windows, and same goes to russian installer in russian windows. registry workaround works well for any language of windows or .NET
  14. yup. but ive made dutch installer, and it happens there as well. thus, there might be a problem with language packs only.
×
×
  • Create New...