Jump to content

djseppie

Member
  • Posts

    19
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by djseppie

  1. And now we have MDT 2010 and we don't need to add drivers to boot.wim anymore, are we??
  2. Thanx for this great silent installation. I've been struggling with this one for long time. After some practicing, i've found out that you can configure the browser the way you normally do. After configuring it the way you want, you can see the switches you have to fill in the firefox.cfg just by typing in the address bar: about:config All the settings that you've changed are bold. very nice :-) One thing that did not work for me was the option [Firefox.Install] """%16422%\Mozilla Firefox\firefox.exe"" -silent -setDefaultBrowser" I had to comment it out, because the browser showed me the import wizard, which is of course not what i want. Your script really helped me thanx!! Greetz Djseppie
  3. Did you ever found a solution?? I'm having the same problem
  4. I had the same exact problem. I resolved this by reinstalling the adminpak.msi. Then the problem went away. Good luck!
  5. Why don't you use WDS for creating partitons?? It's really easy and no hard coding solutions are necessary. This is my script for creating a c-partition of 40GB NTFS and a d-partition filling the rest of the space: <?xml version="1.0" ?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86"> <WindowsDeploymentServices> <Login> <WillShowUI>OnError</WillShowUI> <Credentials> <Username>ris.user</Username> <Domain>your.domain</Domain> <Password>rispassword</Password> </Credentials> </Login> <ImageSelection> <WillShowUI>OnError</WillShowUI> <InstallImage> <ImageName>XpSP2NL</ImageName> <ImageGroup>Workstation</ImageGroup> <Filename>XpSP2NL.wim</Filename> </InstallImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> </ImageSelection> </WindowsDeploymentServices> ` <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition> <Order>1</Order> <Type>Primary</Type> <Size>40000</Size> </CreatePartition> <CreatePartition> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition> <Order>1</Order> <PartitionID>1</PartitionID> <Letter>C</Letter> <Label>SYSTEM</Label> <Format>NTFS</Format> <Active>true</Active> <Extend>false</Extend> </ModifyPartition> <ModifyPartition> <Order>2</Order> <PartitionID>2</PartitionID> <Letter>D</Letter> <Label>DATA</Label> <Format>NTFS</Format> <Extend>false</Extend> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration> </component> <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="x86"> </component> </settings> </unattend> I hope this will help!
  6. Hello folks, i'm trying to install Open Office 2.4 silent. This works very nice with the command: msiexec /i "c:\temp\software\open office\openofficeorg24.msi" /qb! The problem is that users are presented a Welcome Wizard. I don't want this. I know it has something to do with the file setup.xcu in the user profile. Has anyone got a nice solution for this? It's not a problem to copy this file using a batch file. Thanx in advance
  7. I solved this myself.. Just give your virtual machine 512mb memory and everything works fine.. Please use this script for adding drivers, it's a time-saver! @echo off :: Set Machine Architecture :: Machine type can be x86, amd64, or ia64. set mType=x86 :: Set Default WinPE Working Path set PEwork=C:\WinPE_%mType% :: Set location of WAIK Tools set WAIKtools=C:\Program Files\Windows AIK\Tools :: Set drivers path set vDrivers=C:\Drivers :: No real need to change anything beyond this point unless you know what you are doing. :: Set mounted location set mLocal=%PEwork%\mount :: Set Source Path set sPath=%PEwork%\ISO\sources :: Set location of Source WIM set oSource=%sPath%\boot.wim :: --------------------------------------------------------------------------------------- :: Install WinPE of not installed on local machine if exist "%PEwork%" goto doit call "%WAIKtools%\PETools\copype.cmd" %mType% "%PEwork%" :doit cls :: Mount the WIM image "%WAIKtools%\%mType%\imagex" /mountrw "%oSource%" 1 "%mLocal%" echo Adding VMWare Networking Drivers... echo. "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\vmxnet\win2k\vmware-nic.inf" "%mLocal%\windows" "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\vmxnet\win2k\vmxnet.inf" "%mLocal%" echo. cls echo Adding VMWare Video Drivers... echo. "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\video\winnt2k\32Bit\vmx_svga.inf" "%mLocal%\windows" cls echo. echo Adding VMWare SCSI Drivers... echo. "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\scsi\win2k\vmscsi.inf" "%mLocal%\windows" cls echo. echo Adding VMWare Mouse Drivers... echo. "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\mouse\win2k\32Bit\vmmouse.inf" "%mLocal%\windows" cls echo. echo Adding VMWare System Drivers... echo. "%WAIKtools%\PETools\peimg" /inf="%vDrivers%\memctl\win2k\32Bit\vmmemctl.inf" "%mLocal%\windows" "%WAIKtools%\PETools\peimg" /install=*SRT* "%mLocal%\windows" cls "%WAIKtools%\PETools\peimg" /list "%mLocal%\windows" pause cls echo. echo Copying System Tools to image... echo. xcopy "%WAIKtools%\%mType%" "%mLocal%\windows\system32\" /S /Q /R /Y set fn="%mLocal%\windows\system32\Wimscript.ini" > %fn% echo [ExclusionList] >> %fn% echo ntfs.log >> %fn% echo hiberfil.sys >> %fn% echo pagefile.sys >> %fn% echo "System Volume Information" >> %fn% echo RECYCLER >> %fn% echo Windows\CSC >> %fn% echo. >> %fn% echo [CompressionExclusionList] >> %fn% echo *.mp3 >> %fn% echo *.zip >> %fn% echo *.cab >> %fn% echo \WINDOWS\inf\*.pnf cls echo. echo Apply the changes to WIM and build ISO... echo. "%WAIKtools%\%mType%\imagex" /unmount "%mLocal%" /commit "%WAIKtools%\PETools\oscdimg" -n -b%PEwork%\etfsboot.com -h -lCustom_WinPE "%PEwork%\ISO" "%PEwork%\winpe_%mType%.iso" cls echo. echo Everything is finished! echo. echo You have now successfully created a new ISO image ("%PEwork%\winpe_%mType%.iso") echo of Windows PE 2.x including VMWare Drivers. echo. pause :EXIT
  8. Hello, im having this strange problem. I added drivers to boot.wim and i want to deploy an image to vmware workstation 6.02. When i add the driver it goed without errors. I close the boot.wim (or course with the /commit switch). Now i receive the error (which i ca't read of course. Anyone solved this?? I really need to the correct way to add nic drivers to my boot.wim. Any help is welcome :-)
  9. I had the same problem, but Vista did fix it with automatic updates. I don't know for sure which update it was, but they were able to solve it. My notebook is a HP NC6000 Good luck!
  10. I've created an unattended installation for several laptops. One type of laptop has a Intel 915gm onboard vga card. There's only one problem that during the driver-install (at 34 minutes) the driver prompts me te install the second adapter. When you click next the driver does correctly install, but i don't want this window to show up. Is there a way to avoid this?? I've tested several versions of drivers for the card without success. The version that i use now is 6.14.10.4308 Anyone who solved this problem??
  11. Final resolution: Download thes drivers from Intel: Download And place the following files into this directory on the RIS-server: the new file (from the download) e100b325.inf in the i386 directory. And the e100b325.sys (from your normal driver) also in the i386 directory. go to the RIS server and type: net stop binlsvc net start binlsvc Now it should work! For use in Windows i used these drivers.
  12. This is my solution. I use 2 files, install.cmd and cleanup.cmd They are in Dutch.. Here they are: @ECHO OFF REM Voorkomen dat alles bij de OOBE nogmaals wordt uitgevoerd if not exist c:\drivers goto end ECHO. echo Stap 1/6 echo. ECHO Acrobat Reader 6.0 Nederlands wordt geïnstalleerd... ECHO Please wait... start /wait %systemdrive%\install\acrobat\AdbeRdr60_nld_full.exe -p"-s /v\"/qn\"" ECHO. echo Stap 2/6 echo. ECHO DirectX 9 wordt geïnstalleerd... start /wait %systemdrive%\install\directx\dxsetup.exe /silent echo. Echo Stap 3/6 echo. ECHO Microsoft Java Virual Machine wordt geïnstalleerd... start /wait %systemdrive%\install\JavaVM\MSJavaVM_3810.exe echo. ECHO Stap 4/6 echo. ECHO MSN Messenger 6.2 wordt geïnstalleerd... ECHO Please wait... start /wait %systemdrive%\install\MSN\MsnMsgs.msi /QB echo. echo Stap 5/6 echo. echo Windows Media Player 10 wordt geïnstalleerd... start /wait %systemdrive%\install\wmp\MP10Setup.exe /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore" echo. echo Stap 6/6 echo. ECHO Het register wordt nu aangepast... REGEDIT /S %systemdrive%\install\tweak\compas.reg echo. ECHO Enkele lelijke 'Wallpapers' worden verwijderd... DEL "%systemroot%\Groensteen.bmp" DEL "%systemroot%\Blauw 16.bmp" DEL "%systemroot%\Kopje koffie.bmp" DEL "%systemroot%\Patroon.bmp" DEL "%systemroot%\Prairie.bmp" DEL "%systemroot%\Stekkie.bmp" DEL "%systemroot%\Rhododendron.bmp" DEL "%systemroot%\Rivier Sumida.bmp" DEL "%systemroot%\Santa Fe Stucco.bmp" DEL "%systemroot%\Zeepbellen.bmp" DEL "%systemroot%\Zapotec.bmp" @ECHO off ECHO Bezig met onnodige snelkoppelingen te verwijderen/verplaatsen... DEL "%systemdrive%\Documents and Settings\All Users\Menu Start\Programmatoegang en -instellingen.lnk" DEL "%systemdrive%\Documents and Settings\All Users\Bureaublad\Adobe Reader 6.0.lnk" ECHO. ECHO Bezig met onnodige/overbodige mappen te verwijderen... RMDIR /S /Q "%systemdrive%\Documents and Settings\Default User\Local Settings\Temp\" MKDIR "%systemdrive%\Documents and Settings\Default User\Local Settings\Temp\" ECHO. echo Tijd om even op te ruimen... ECHO. call "%systemdrive%\install\cleanup.cmd" :end And here's the cleanup.cmd @echo off RMDIR /S /Q "%systemdrive%\drivers" RMDIR /S /Q "%systemdrive%\install\acrobat" RMDIR /S /Q "%systemdrive%\install\directx" RMDIR /S /Q "%systemdrive%\install\javavm" RMDIR /S /Q "%systemdrive%\install\msn" RMDIR /S /Q "%systemdrive%\install\tweak" RMDIR /S /Q "%systemdrive%\install\wmp" echo RMDIR /S /Q "%systemdrive%\install">"%systemdrive%\install\install.cmd" echo. ECHO De computer wordt nu gereed gemaakt voor de eindgebruiker... start /wait %systemdrive%\sysprep\sysprep -reseal -quiet -reboot RMDIR /S /Q "%systemdrive%\install\cleanup.cmd" I hope this is helpful for someone !!
  13. It's not my most favorite solution. I'm working on a batch-file that does the trick.
  14. Does anyone know what key this is? Because there is always the possibility to change the key before sysprep -reseal is executed.. Perhaps that is a possibility?? Anyone knows??
  15. But the intention is to build an unnatended cd, and this is not the way i want it to be (it's not professional enough for me). Does anyone know if this problem still exists when we use the 'RunOnceEX' section? (listed here) Greetings.
  16. I was searching for this problem in the forums and i have the exactly the same problem! Anyone can help please??
×
×
  • Create New...