Jump to content

myselfidem

Members
  • Posts

    600
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by myselfidem

  1. Inside tips.js about:function qdh(t,d,s)

     

    On line 49:

    function qdh(t,d,s){	position="main.js";	whatfunc="qdh()";

    We can change to (position):

    function qdh(t,d,s){	position="tips.js";	whatfunc="qdh()";

    Inside optionswizardtemplate_window.htm (values inside api.js)

     

    Errors on lines 199 and 200:

    <option value="12802">1280x768</option><option value="12803">1280x800</option>

    Change to:

    <option value="12803">1280x768</option>						<option value="12804">1280x800</option>

    Thanks and regards

  2. There are two methods for customizing disks and partitions with Autounattend.xml file:

    First using the sting and value to display the wizard and customize manually disks and partitions:

    <DiskConfiguration>                <WillShowUI>Always</WillShowUI>            </DiskConfiguration>
    Second do not display the wizard with stings and values already set:

    Example:

    <DiskConfiguration>                <WillShowUI>OnError</WillShowUI>                <Disk wcm:action="add">                    <DiskID>0</DiskID>                    <WillWipeDisk>true</WillWipeDisk>                    <CreatePartitions>                        <CreatePartition wcm:action="add">                            <Order>1</Order>                            <Type>Primary</Type>                            <Size>100</Size>                        </CreatePartition>                        <CreatePartition wcm:action="add">                            <Order>2</Order>                            <Size>10000</Size>                            <Type>Primary</Type>                        </CreatePartition>                        <CreatePartition wcm:action="add">                            <Order>3</Order>                            <Type>Primary</Type>                            <Extend>true</Extend>                        </CreatePartition>                    </CreatePartitions>                    <ModifyPartitions>                        <ModifyPartition wcm:action="add">                            <Order>1</Order>                            <PartitionID>1</PartitionID>                            <Label>System</Label>                            <Format>NTFS</Format>                            <Active>true</Active>                        </ModifyPartition>                        <ModifyPartition wcm:action="add">                            <Order>2</Order>                            <PartitionID>2</PartitionID>                            <Letter>C</Letter>                            <Label>SEVEN</Label>                            <Format>NTFS</Format>                        </ModifyPartition>                        <ModifyPartition wcm:action="add">                            <Order>3</Order>                             <Format>NTFS</Format>                             <PartitionID>3</PartitionID>                             <Label>DATA</Label>                             <Letter>D</Letter>                         </ModifyPartition>                     </ModifyPartitions>                </Disk>            </DiskConfiguration>
    We can't merge the two methods or strings!
  3. No. Using the option wipe disk the full disk with all partitions will be wiped!

     

    But, we can keep the choice using Autounattend.xml file with:

    <DiskConfiguration>                <WillShowUI>Always</WillShowUI>            </DiskConfiguration>

    Like this we can only wipe the partition(s) needed!

     

    Cheers

  4. yup x64 OS requires java 32 and 64 bit installed.

     

    About java version 32 and 64 bit:

     

    SUMMARY

    64-bit Windows operating systems (which may be Windows 7, Vista or XP) come with a 32-bit Internet Explorer (IE) browser as the standard (default) for viewing web pages. These operating systems also include a 64-bit Internet Explorer browser, however using it is optional and it must be explicitly selected to view web pages. Note that because some web content may not work properly in a 64-bit browser, we recommend using the default 32-bit browser and downloading 32-bit Java.

     

     

    FAQ:

    http://www.java.com/en/download/faq/java_win64bit.xml

     

    Regards

  5. No, if you download the LP I made all that (kb971891 & slimming) is already done

    Just download the installer, then the lp and extract them to the same directory. Recompress and download the INTL SFX maker, you will need to edit this to remove all the sfxlang sections and fix the LP msi name without the lang at the end of the filename xx-XX. (keep sfxlang:1033 and whatever lang you are adding)

     

    Thanks Rick,

    I was thinking that the kb971891 was already integrated, and I use dotNET4sfxNoGUI according to your recommendations

    above (extracted inside the same directory) and works fine for me!

     

    Regards

  6. If we want add a Slim Language Pack inside Slim Microsoft .NET Framework 4.0 Full x86/x64, it seems we don't need now to add kb971891 for dotNET4 & LP installers
    using:
    Slim down your dotNET4(.5) & LP installers:
    http://adf.ly/1713566/msislim (msi.vbs.slimmers)

     

    Also, inside netfx4+lp_slim.vbs we can read:

    ' Usage:
    '
    ' - Create administrative install and integrate KB971891:
    '
    ' msiexec /a <netfx_installer>.msi /p NDP40-KB971891.msp TARGETDIR=<path_to_folder>
    '
    ' - Make sure netfx*.msi and DisplayIcon.ico are in the same directory as this file before running:
    '
    ' cscript <name_of_file>.vbs
    '
    ' - Create second administrative install to leave the setup files behind:
    '
    ' msiexec /a <netfx_installer>.msi TARGETDIR=<path_to_new_folder>
    '
    ' Note: if you don't do this second admin install you have to manually set the MSI Summary Information to: Administrative Image + Long File Names
    '
    ' script by dumpydooby (modded by ricktendo64)

     

     

    Thanks and regards

×
×
  • Create New...