Jump to content

Mercury_22

Member
  • Posts

    271
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by Mercury_22

  1. Try the example Example of Autounattend.xml (just add your key) and i was referring to your initial problem with "Applications aren't being installed" : just add "Setupcomplete.cmd" to Windows\Setup\Scripts in your install.wim!
  2. You can use this (with msi installer): INSTALLLEVEL : Property which controls which feature/s gets installed INSTALLEVEL=10 (set by default, install all features:"Phone & IE PLUGIN & Plugin for Firefox") INSTALLEVEL=1 (Installs the "Phone" feature only) INSTALLEVEL=3 (Installs the "Phone and IE PLUGIN" features does not install the Plugin for Firefox) example: msiexec /i SkypeSetup.msi INSTALLLEVEL=1 /qb To install without desktop shortcut use TRANSFORMS=:RemoveDesktopShortcut.mst To install without any shortcuts use TRANSFORMS=:RemoveAllShortcuts.mst To disable starting Skype automatically at logon use TRANSFORMS=:RemoveStartup.mst To disable Skype launch after installation ends use STARTSKYPE=FALSE To install for All Users use ALLUSERS=1 Example: msiexec /i SkypeSetup.msi INSTALLLEVEL=1 STARTSKYPE=FALSE ALLUSERS=1 TRANSFORMS=:RemoveStartup.mst TRANSFORMS=:RemoveDesktopShortcut.mst /qr
  3. Even better add a key in "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" instade off a .lnk in Startup folder! using: e.g reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v StartVista /t reg_sz /d "%systemdrive%\StartVista.cmd" /f
  4. Try this DEL "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Startup\StartVista.lnk"
  5. You're right! Thanks! I've made the modification in the first post!
  6. Batch file / Guide for Integrating Updates, Drivers & Applications ( Unattended Vista ) Step 1: Install WAIK Step 2: Create this Folders in the SAME LOCATION ( e.g. D:\ ) : Updates ; Drivers . 1) Updates. Place here: - Updates (Hotfixes): .MSU; .EXE; .CAB files. DON'T USE "EXPRESS.CAB" FILES ONLY FULL VERSION CAB FILES ! - Applications to install with Setupcomplete.cmd: .MSI & .EXE files - Autounattend.xml, e.g. Autounattend.xml with minimum info necessary for unattended install and: 1 - Manual Disk Partitioning <?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"> <UILanguage>EN-US</UILanguage> </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></Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/INDEX</Key> <Value>4</Value> </MetaData> </InstallFrom> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> </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"> <ComputerName>WORKSTATION</ComputerName> </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> <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"> <AutoLogon> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>ADMINISTRATOR</Username> </AutoLogon> <OOBE> <ProtectYourPC>3</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <NetworkLocation>Other</NetworkLocation> </OOBE> <TimeZone>Eastern Standard Time</TimeZone> </component> </settings> </unattend> 2 - Automatically formating partition 1 on drive 0 and create one standard user called "User" <?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"> <UILanguage>EN-US</UILanguage> </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></Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/INDEX</Key> <Value>4</Value> </MetaData> </InstallFrom> <WillShowUI>OnError</WillShowUI> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> </OSImage> </ImageInstall> <DiskConfiguration> <Disk wcm:action="add"> <ModifyPartitions> <ModifyPartition wcm:action="modify"> <Active>true</Active> <Format>NTFS</Format> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> </Disk> </DiskConfiguration> </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"> <ComputerName>WORKSTATION</ComputerName> </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> <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"> <AutoLogon> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>ADMINISTRATOR</Username> </AutoLogon> <TimeZone>Eastern Standard Time</TimeZone> <OOBE> <ProtectYourPC>3</ProtectYourPC> <NetworkLocation>Other</NetworkLocation> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <DisplayName></DisplayName> <Name>User</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> </unattend> Please add you KEY between "<Key></Key>" - Setupcomplete.cmd for installing Applications. ( see Windows Automated Installation Kit User's Guide for more about Setupcomplete.cmd ) e.g. : @echo off COLOR 9E Title VISTA UPDATER ( Press : Y for YES , N for NO , P for PAUSE , C for CANCEL ) :Prepare Environment echo. Choice /C YNPC /T 5 /D Y /M "Prepare Environment" if errorlevel 4 goto Exit if errorlevel 3 goto PauseEnvironment if errorlevel 2 goto SkipEnvironment if errorlevel 1 goto ContinueEnvironment :SkipEnvironment echo. goto PrepareUpdates :PauseEnvironment echo. PAUSE :ContinueEnvironment echo.Please Wait... echo. cd /d %0\.. MD C:\Mount FOR %%a IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO If EXIST %%a:\efi SET DVD=%%a: XCOPY %DVD%\ C:\LRMCFRE_EN_DVD /E /G /H /I /Y XCOPY .\Updates\Autounattend.xml C:\LRMCFRE_EN_DVD /I /Y XCOPY .\Updates\*.exe C:\LRMCFRE_EN_DVD\SDK /I /Y XCOPY .\Updates\*.msi C:\LRMCFRE_EN_DVD\SDK /I /Y :PrepareUpdates echo. Choice /C YNPC /T 5 /D Y /M "Prepare Updates" if errorlevel 4 goto Clean if errorlevel 3 goto PausePrepareUpdates if errorlevel 2 goto SkipPrepareUpdates if errorlevel 1 goto ContinuePrepareUpdates :SkipPrepareUpdates echo. goto InstallUpdates :PausePrepareUpdates echo. PAUSE :ContinuePrepareUpdates echo. XCOPY .\Updates\*.cab C:\Updates /I /Y echo. Expand -f:* .\Updates\amd64\*.msu C:\Updates\ echo. DEL C:\Updates\WSUSSCAN.cab :InstallUpdates echo. Choice /C YNPC /T 5 /D Y /M "Install Updates" if errorlevel 4 goto Clean if errorlevel 3 goto PauseInstallUpdates if errorlevel 2 goto SkipInstallUpdates if errorlevel 1 goto ContinueInstallUpdates :SkipInstallUpdates echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /mountrw C:\LRMCFRE_EN_DVD\sources\install.wim 4 C:\Mount echo. goto Drivers :PauseInstallUpdates echo. PAUSE :ContinueInstallUpdates echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /mountrw C:\LRMCFRE_EN_DVD\sources\install.wim 4 C:\Mount echo. MD C:\Mount\Windows\Setup\Scripts XCOPY .\Updates\Setupcomplete.cmd C:\Mount\Windows\Setup\Scripts /I /Y echo. MD C:\Mount\Windows\Prefetch echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /import=C:\Updates\*.cab C:\Mount\windows echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /install=*Package* C:\Mount\windows echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /install=*Pack* C:\Mount\windows echo. echo.List of packages in the current image. In the INS column, a plus sign (+) denotes installed packages and a minus sign (-) denotes not installed. echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /list C:\Mount\windows :Drivers echo. Choice /C YNPC /T 5 /D Y /M "Install Drivers" if errorlevel 4 goto Unmount if errorlevel 3 goto PauseDrivers if errorlevel 2 goto SkipDrivers if errorlevel 1 goto ContinueDrivers :SkipDrivers echo. goto BootDrivers :PauseDrivers echo. PAUSE :ContinueDrivers echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /inf=.\Drivers\*.inf C:\Mount\windows :BootDrivers echo. Choice /C YNPC /T 5 /D Y /M "Install Boot Drivers" if errorlevel 4 goto Unmount if errorlevel 3 goto PauseBoot if errorlevel 2 goto SkipBoot if errorlevel 1 goto ContinueBoot :SkipBoot echo. goto DVD :PauseBoot echo. PAUSE :ContinueBoot echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /unmount /commit C:\Mount echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /mountrw C:\LRMCFRE_EN_DVD\sources\boot.wim 2 C:\Mount echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /inf=.\Drivers\iaahci.inf C:\Mount\windows echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\peimg.exe" /inf=.\Drivers\iastor.inf C:\Mount\windows :DVD echo. Choice /C YNPC /T 5 /D Y /M "Create Vista DVD Image File" if errorlevel 4 goto Unmount if errorlevel 3 goto PauseDVD if errorlevel 2 goto SkipDVD if errorlevel 1 goto ContinueDVD :SkipDVD echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /unmount /commit C:\Mount goto Clean :PauseDVD echo. PAUSE :ContinueDVD echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /unmount /commit C:\Mount echo. "%PROGRAMFILES%\Windows AIK\Tools\PETools\oscdimg.exe" /b"%PROGRAMFILES%\Windows AIK\Tools\PETools\x86\boot\etfsboot.com" /h /lLRMCFRE_EN_DVD /o /u2 C:\LRMCFRE_EN_DVD C:\Image.iso :Clean echo. Choice /C YNP /T 5 /D Y /M "Cleaning up" if errorlevel 3 goto PauseClean if errorlevel 2 goto Exit if errorlevel 1 goto Cleaning :PauseClean echo. PAUSE :Cleaning echo. RD /S /Q C:\Updates echo. RD /S /Q C:\Mount echo. RD /S /Q C:\LRMCFRE_EN_DVD :Exit echo. EXIT :Unmount echo. "%PROGRAMFILES%\Windows AIK\Tools\x86\imagex.exe" /unmount C:\Mount echo. goto Clean echo. EXITNOTE: - The "Boot Drivers" are for Intel RAID/AHCI, just replace iaahci.inf and iastor.inf with your .inf files - "install.wim 4 " it's for Vista Ultimate change the number according to your Vista version - For Vista x64 replace x86 with amd64 - Please exit all other programs and use the built-in ADMINISTRATOR ACCOUNT ! even if (you run these batch in elevated mode) your account it's an administrator account and you have disable UAC, or you use "run as administrator". - Tested with Vista x86 & Vista x64 If you're using XP try add start /wait at the beginning of every command and delete all "choice" lines or get choice.exe from xp x64, or vista, or... Please let me know if you encounter any problems
  7. (Replace "iaStore" with iaStor) Rename iaStor.sys to iaStor.sy_ and copy it to i386 folder This is my txtsetup.sif [SourceDisksFiles] iaStor.sys = 1,,,,,,3_,4,1 [HardwareIdsDatabase] PCI\VEN_8086&DEV_2822&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2821&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2682&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2681&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C3&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C6&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C1&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C5&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2653&CC_0106 = "iaStor" [SCSI.load] iaStor = iaStor.sys,4 [SCSI] iaStor = "Intel(R) ICH8R/DO/DH SATA RAID Controller (Desktop ICH8R)" iaStor = "Intel(R) 82801GR/GH SATA RAID Controller (Desktop ICH7R/DH)" It's working for AHCI too without any change because iaStor.sys it's the driver for ahci too. Just add to my code [sCSI] iaStor = "Intel® 82801GBM SATA AHCI Controller (Mobile ICH7M)"
  8. The open source community is in a state of shock this morning at the news that Microsoft has released a version of popular browser Firefox ?? ?? The audacious move, which pretty well guarantees Redmond control of the entire browser market, will be received with dismay among those who previously believed that the might of Bill Gates' chequebook could, and should, be resisted. Naturally, Microsoft has made some improvements to the product, and the new features offered to Firefox fans include: More on http://www.theregister.co.uk/2006/11/14/ms_firefox/
  9. TXTsetup.sif it's for non GUI portion (text based portion) of the setup! and winnt.sif=sysprep.inf Many are using MAKECAB for iastor.sy_ but i just rename it and it's working OK! More here
  10. This is my way for CD installation,but it should be almost the same for you 1. Copy iastor.sys to i386 and rename it to iastor.sy_ 2. Edit txtsetup.sif file from i386 [SourceDisksFiles] iaStor.sys = 1,,,,,,3_,4,1 [HardwareIdsDatabase] PCI\VEN_8086&DEV_2822&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2821&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2682&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2681&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C3&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C6&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C1&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C5&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2653&CC_0106 = "iaStor" [SCSI.load] iaStor = iaStor.sys,4 [SCSI] iaStor = "Intel(R) ICH8R/DO/DH SATA RAID Controller (Desktop ICH8R)" iaStor = "Intel(R) 82801GR/GH SATA RAID Controller (Desktop ICH7R/DH)" 3. Edit Winnt.sif and add path to drivers (Drivers\01_iata;......) 4.Add all .inf and .sys files to drivers folder (Drivers\01_iata) Works for both RAID AND AHCI
  11. IaStor.sys it's the driver for both AHCI&RAID ! and windows it will choose automatically between iaahci.inf or iastor.inf
  12. Hi! Forget Nlite just copy this : [SourceDisksFiles] iaStor.sys = 1,,,,,,3_,4,1 [HardwareIdsDatabase] PCI\VEN_8086&DEV_2822&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2821&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2682&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2681&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C3&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C6&CC_0104 = "iaStor" PCI\VEN_8086&DEV_27C1&CC_0106 = "iaStor" PCI\VEN_8086&DEV_27C5&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0104 = "iaStor" PCI\VEN_8086&DEV_2652&CC_0106 = "iaStor" PCI\VEN_8086&DEV_2653&CC_0106 = "iaStor" [SCSI.load] iaStor = iaStor.sys,4 [SCSI] iaStor = "Intel(R) ICH8R/DO/DH SATA RAID Controller (Desktop ICH8R)" in your TXTSETUP.SIF file from i386 folder (at the end of the file) also copy iaStor.sys file from your floppy to i386 folder and rename it to iaStor.sy_ Then copy everything from floppy to your drivers folder from $OEM$ folder and add the new folder to your WINNT.SIF file!
  13. Run... C:\HOTME\KB896401.exe /integrate:C:\XPCD
×
×
  • Create New...