Jump to content

Radimus

Member
  • Posts

    310
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Radimus

  1. it CAN work, BUT if the NIC is not active at that time (during mini-setup)it will fail. If the Nic is not active, it cannot see the network, therefore it cannot see the domain, therefore it cannot join. It really depends on the Mobo and the NIC Read my post above
  2. it also chokes on PDF based forms I have also had random crashes on clicking in the gui
  3. I run mine from runonceex and it reboots I just moved it to the last item in install order, the runonceex items will continue at next auto logon...
  4. reboot=suppress is what I use and it still reboots during runonceEX
  5. so it's the custom=1 switch that prevents the reboot, or the /qb-!
  6. If you look at the switches in the xcopy statement, it only copies in the files that exist in the destination dir... the ones that do not exist are not copied. You do not have to enter the path every time, just once... assuming all our directories stay the same
  7. try something like this: @echo off set i386=c:\xptemp\i386 set extract=c:\mp10setup set source=%userprofile%\desktop\mp10setup.exe set command=makecab %%f %extract%\compressed\%%f rem ********* make temp folders *********** if exist %extract% rd %extract% /s /q md %extract%\compressed rem ********* extract files *********** "%source%" /q /c /t:c:\mp10setup rem ********* compress files *********** cd %extract% for %%f in (*.*) do %command% ren %extract%\compressed\*.* *.??_ rem ********* integrate files *********** xcopy %extract%\compressed\*.* %i386% /h /r /y /u /f /i rem ********* cleanup files *********** cd.. rd %extract% /s /q pause
  8. what does this have to do with anything? Mods, kill it
  9. is all of this because someone didn't want to run: REM ----- Slipstream Type 3 Hotfixes ----- FOR /f %%f in ('dir /b XPType3\*.exe') DO XPType3\%%f /integrate:c:\xptemp /passive
  10. well, in whatever tweaks they run from cmdlines.txt or for that matter, a line in cmdlines.txt reg add HKCU\Software\Microsoft\MediaPlayer\Preferences etc... adding that line is easier there, than editing the hivedef.inf and it even isn't necessary, it doesn't change the install, it is just a tweak
  11. the WMP9Codecs.exe from MS BTW, the addreg step is unnecessary, as long as that value is set in the HKCU.reg from cmdlines.txt ; *************** Windows MediaPlayer ********************* [HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences] "AcceptedPrivacyStatement"=dword:00000001 "StretchToFit"=dword:00000001 "LibraryHasBeenRun"=dword:00000001
  12. What about slipstreaming the WMP9Codecs? I'm getting errors when doing it through runonceex
  13. as a bat file in runonceex @echo Off netsh firewall reset netsh firewall set service fileandprint enable netsh firewall set service remoteadmin enable netsh firewall set service remotedesktop enable netsh firewall set icmpsetting 8 enable netsh firewall add allowedprogram "%programfiles%\netmeeting\conf.exe" NetMeeting enable netsh firewall add allowedprogram "%windir%\system32\r_server.exe" RAdmin enable
  14. just make the folder structure as shown in the batch above, on the root of the CD place the patches of the appropriate type in the correct folder call the batch from runonceex
  15. @echo off FOR %%D IN (A B 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 %%D:\WIN51IP SET CDROM=%%D: Echo Installing Switchless Applications FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Switchless1\*.exe') DO Start /wait "" "%%f" FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Switchless1\*.msi') DO Start /wait "" "%%f" /qn Echo Installing Hotfixes FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Type1\*.exe') DO Start /wait "" "%%f" /z /n /o /q FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Type2\*.exe') DO Start /wait "" "%%f" /Q:A /R:N Echo Installing Additional Switchless Applications FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Switchless2\*.exe') DO Start /wait "" "%%f" FOR /f %%f in ('dir/b/s %CDROM%\Hotfixes\Switchless2\*.msi') DO Start /wait "" "%%f" /qn Start /wait "" "%CDROM%\hotfixes\qchain.exe"
  16. look into kixtart.org and kixforms.org And a subject that means something would be useful
  17. I have ISO'ed a XP CD to -> XPSource\WinXP.iso I use winrar to extract the ISO to a file set -> c:\xptemp to start: make a folder XPBuild make a subfolder called XPBuild\XPSource put ISO there Make another folder XPBuild\XPsp2 put WindowsXP-KB835935-SP2-ENU.exe in there (sp2) Make another folder XPBuild\XPType3 put all the post SP2 hotfixes in there Make the following commands into a batch file and place in XPBuild REM ----- Extract ISO to Working Folder ----- :Extract "%programfiles%\winrar\winrar.exe" x XPSource\WinXP.iso c:\XPtemp REM ----- Slipstream SP2 if necessary ----- if not exist c:\xptemp\win51ip.SP2 XPsp2\WindowsXP-KB835935-SP2-ENU.exe /integrate:c:\xptemp /passive REM ----- Slipstream Type 3 Hotfixes ----- FOR /f %%f in ('dir /b XPType3\*.exe') DO XPType3\%%f /integrate:c:\xptemp /passive
  18. I use Ghost and Drive image all the time.. no prob. (and have for 6 years) The product is fine.. Your IT people don't know what they are doing... don't blame the product for their lack of understanding
  19. in phase 3 where you are compressing the files, try this: for %f in (*.*) do makecab /D CompressionType=LZX /D CompressionMemory=21 /L %f %out%\%f ren %out%\*.* *.??_ It compresses the files, but it keeps the original file name... the ren statement replaces the last char with the _
  20. I have had issues where the NIC isn't active until after the first reboot or at some point after joining happens. therefore I wrote a tool to run at runonce.
  21. if you start an install, it extracts a MSI to the ...\local settings\temp folder
  22. I hooked mine up in about 15 minutes... It is easier to plug it into the LAN (it has an rj45 connection) and use the CD app or web interface to configure it. Then I plugged it into the xbox and after pressing the A button a few times away it went... no problems
  23. check through the the drivers forum and the unattended guide for the details for your driver extraction and folder structure. the general way you have described it, it looks about right, but there is lots more detail available there and samples BTW, the folder(s) in the oempnppath have to have the driver(s) INF file there... it will not extract files, or look in subfolders... so iss files are not appropriate for your need
×
×
  • Create New...