djseppie
MemberAbout djseppie

Contact Methods
-
Website URL
http://www.djseppie.nl/
Profile Information
-
OS
Windows 10 x64
djseppie's Achievements
0
Reputation
-
And now we have MDT 2010 and we don't need to add drivers to boot.wim anymore, are we??
-
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
-
Did you even found a solution??
-
Did you ever found a solution?? I'm having the same problem
-
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!
-
Doesn't anyone use Open Office 2.4???
-
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
-
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
-
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 :-)
-
how to disable the annoying "http://runonce.msn.com/runonce2.aspx
djseppie replied to chee's topic in Windows XP
Thanx, this is the right solution!