Jump to content

Ctrl-X

Member
  • Posts

    443
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Ctrl-X

  1. That's not exactly a child domain... But as long as there's a trust relation between the domains, you're OK. Edit the Default Domain Policy (or another appropiate GPO) of the "child" domain. Navigate to Computer Configuration / Windows Settings / Security Settings / Restricted Groups. Select the Administrators group and add the "primary" domain Administrator account. That should do the trick!
  2. If it would BSOD/crash/hang, I'd say it could be a software problem, but if it's just turned off, I'd concentrate on hardware (power supply?) if I were you.
  3. Once you've done that, you'll probably get a NO_ACCESSIBLE_BOOT_DEVICE error. I don't even think you'll be able to install the Intel SATA driver and application with SATA disabled in the BIOS... It will probably say it can't find a SATA controller and abort.
  4. I've tried both; neither worked
  5. Check the contents of your %USERPROFILE%\SendTo folder for unneccesary shortcuts.
  6. Thanks for the suggestion! However all they do is unpack the original setup, change the install command to: setup_wm.exe /DisallowSystemRestore /Q:A /R:N ... and then repack the setup using IExpress. All this can be done in one line without un- and repacking: MP10Setup.exe /Q:A /R:N /C:"setup_wm.exe /DisallowSystemRestore /Q:A /R:N" ... which is exactly what I'm doing! According to the article the registry tweaks aren't going to help because they get applied after the installation. I thing I'm going to try installing WMP10 from cmdlines.txt and see what happens...
  7. OEMPreinstall! Forgot to ask about that one Put the command to display the readme in the [GuiRunOnce] section and it will run, ehm, just once
  8. Have you tried switching off System Restore?
  9. Right-click the Recycle Bin and click Properties. As dirtwarrior suggested the maximum size may be too small to hold all deleted files. The default setting is 10% of the disk size. This would explain why a reinstall didn't help: the disk size didn't change.
  10. Of course... This folder only serves as the driver source. From there, they get copied to the correct locations during installation. The .inf files should be in C:\WINDOWS\inf; the .cat files can be found in C:\WINDOWS\system32\CatRoot.
  11. Strange... We have 4000 PC's running Office 2003 over here and we have never experienced anything like this
  12. I don't think so... The dot should have been there; no idea how/why it disappeared.
  13. So you have your $OEM$ folder next to your i386 folder, not inside it? That's the RIS folder structure. For other unattended setup types, the $OEM$ folder should be inside the i386 folder. Check How to Add OEM Plug and Play Drivers to Windows XP for details.
  14. Glad to hear it's resolved. Unfortunately I don't understand what your question is...
  15. Sorry, but I don't understand... Is the problem solved or not?
  16. Since you mentioned changing setupp.ini, I thought you'd already done that Anyway: Unlocking WinXP's setupp.ini. Hope this helps!
  17. AFAIK, yes. I'm sorry, but I have no other ideas Anyone?
  18. It should be: [.ShellClassInfo] LocalizedResourceName=@shell32.dll,-21785 Note the dot in [.ShellClassInfo]. Also, the file needs to be marked System and Hidden.
  19. Hmmm, I'm running out of ideas... Have you got the correct DistFolder and DistShare entries in your new answer file? What do the contents of the $OEM$ folder look like?
  20. Thanks for the suggestion; I will look into that if all else fails At first glance this appears to be a bit overkill, but I'll give it a go We set that one through Group Policy B)
  21. What is the exact location of your $OEM$ folder? For an unattended installation, it needs to be a subfolder of the i386 folder; except when using RIS: then it needs to be on the same level as the i386 folder.
  22. Any idea what files it's unable to copy? What does your new answer file look like?
  23. You can only set environment variables to a string value, a numerical expression (using "set /a") or a user provided input string (using "set /p"). What you are doing here is setting the variable VERSION to the command text string. In other words, the reg query command is never evaluated. Try the following: for /f "skip=4 tokens=3" %V in ('reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{98EC8E7A-161A-455B-8B31-1E88C1CDFA6B} /v DisplayVersion') do set VERSION=%V This will evaluate the reg query command, skip the first four lines of output and then assign the third token on the next line to the variable %V (case sensitive!), which is then assigned to the VERSION environment variable. Remember to use %%V instead of %V in a batch file. Type "for /?" in a command window for details.
  24. Can you browse to the system sharing the printer from the other XP machines? If not the firewall on the shared printer system may be enabled. Error messages are always helpful What messages are you getting?
×
×
  • Create New...