Jump to content

cluberti

Patron
  • Posts

    11,045
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    country-ZZ

Posts posted by cluberti

  1. Well, since it's only a minidump and not a kernel or complete memory dump the info is very limited, plus you don't have the _NT_SYMBOL_PATH environment variable set to C:\WebSYMBOLS;srv*C:\WebSYMBOLS*HTTP://MSDL.MICROSOFT.COM/DOWNLOAD/SYMBOLS;C:\WebSYMBOLS, but I can still see some file issues with termdd and rdpdr.

    Have you tried doing a repair installation on this machine, or even an sfc /scannow? Also, was this machine built with a stock Windows CD, or was the install source modified with a 3rd party tool?

  2. First, make certain that you are ONLY using your internal DNS servers. Any external DNS servers listed can cause havoc with AD and group policy processing. If the event contains additional data, include the value data in the box at the bottom of the eventviewer error in WORDS. I can tell you what the data means, at least.

    Every 5 minutes the FRS service attempts to replicate data amongst domain controllers in a site, so I'd start by looking at NTFRS in tracking this problem down.

  3. Scandisk was replaced by chkdsk in Windows NT-based systems. And yes, file system corruption can cause all of the same problems that HD failures can (they both do the same thing to what's on the disk, more or less). I'd still say running a good hardware diagnostic program against the drive to make sure that it's not going to fail would be a good idea.

  4. Here is the list for components I use in my WINNT.SIF file. If you're unsure what these do, google 'em - they're out there.

    [Components]

    Accessopt = Off

    CertSrv = Off

    CertSrv_Client = Off

    CertSrv_Server = Off

    Chat = Off

    Deskpaper = Off

    Dialer = Off

    Fax = Off

    Fp_extensions = Off

    FP_Vdir_Deploy = Off

    Freecell = Off

    Hearts = Off

    IIS_Common = Off

    IIS_Doc = Off

    IIS_FTP = Off

    IIS_HTMLa = Off

    IIS_Inetmgr = Off

    IIS_NNTP = Off

    IIS_NNTP_Docs = Off

    IIS_Pwmgr = Off

    IIS_SMTP = Off

    IIS_SMTP_Docs = Off

    IIS_WWW = Off

    IIS_WWW_Vdir_Printers = Off

    IIS_WWW_Vdir_TerminalServices = Off

    IISDbg = Off

    Indexsrv_system = Off

    LicenseServer = Off

    Media_utopia = Off

    Minesweeper = Off

    Mousepoint = Off

    Msmsgs = Off

    OEAccess = Off

    MSMQ_ADIntegrated = Off

    MSMQ_Core = Off

    MSMQ_HTTPSupport = Off

    MSMQ_LocalStorage = Off

    MSMQ_MQDSService = Off

    MSMQ_RoutingSupport = Off

    MSMQ_TriggersService = Off

    Msnexplr = Off

    Netoc = Off

    Pinball = Off

    Solitaire = Off

    Spider = Off

    WMAccess = Off

    zonegames = Off

    The bolded values will remove MSN Messenger and Outlook Express (well, it hides OE). However, I have not found the OEAccess value to be 100% effective. In that case, you could set another program to be the default email handler via the [shell] section of WINNT.SIF, or you could write a VBS script to remove Outlook Express like so:

    ' *** Begin Script ***

    Set WSHShell = WScript.CreateObject("WScript.Shell")

    DesktopPath = WSHShell.SpecialFolders("Desktop")

    StartMenuPath = WSHShell.SpecialFolders("StartMenu")

    Set fs = CreateObject("Scripting.FileSystemObject")

    on error resume next

    OEIcon = StartMenuPath & "\Programs\Intern~1\Outlook Express.lnk"

    fs.DeleteFile(OEIcon),true

    OEIcon = DesktopPath & "\Outlook Express.lnk"

    fs.DeleteFile(OEIcon),true

    OEIcon = StartMenuPath & "\Programs\Outlook Express.lnk"

    fs.DeleteFile(OEIcon),true

    ProfilePath = Left(DesktopPath,Len(DesktopPath)-8)

    Quick="\Application Data\Microsoft\Internet Explorer\Quick Launch"

    QuickLaunchPath = ProfilePath & Quick

    OEIcon = QuickLaunchPath & "\Launch Outlook Express.lnk"

    fs.DeleteFile(OEIcon),true

    ' *** EOF ***

  5. This can be caused by an application (or even a print driver, *cough*HP*cough*) holding a user's registry open (do you see userenv 1000 errors in your event log if you just log a user off?).

    If so, uphclean from Microsoft can make this go away as well.

  6. They are different, and you will need both installed if you have applications that use the 1.x framework. They install to different locations, and are not one and the same (as you have found out).

  7. Put the hard disk in the PC, and make sure SMART is enabled for the drive in the BIOS. Also, run a chkdsk on the volume to see if it finds any errors. My guess would be a failing hard disk, but SMART or a good third-party testing utility should tell you more.

    You do have a Compaq, so I wouldn't trust it to tell you if the disk was at fault as far as it could be thrown :).

  8. Do you have split DNS in your infrastructure? I second the A record creation - on your internal DNS server, you'll need to create an A record pointing to the server internally, and then it should work for both internal and external clients.

    I strongly recommend a split DNS if you run the same domain name inside your network and outside as well... ;)

  9. If the computer can PXE boot, the GUID will be provided by the PXE BIOS right on-screen.

    Otherwise, you'll need to do it via a script and query WMI for the GUID, like so:

    ' *** Begin Script ***

    Dim strComputer

    Dim objWMIService

    Dim propValue

    Dim colItems

    strComputer = "SERVER"

    Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

    Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystemProduct",,48)

    For Each objItem in colItems

    WScript.Echo "UUID: " & objItem.UUID

    Next

    ' *** EOF ***

    It's a simple script to gather some data about the machine, and the bolded data should give you what you need.

  10. This is the command to use to install Media Player 10:

    MP10Setup.exe /q:A /c:setup_wm.exe /Q /R:N /DisallowSystemRestore

    And this is the command to use to install the Windows Media Connect update:

    wmcsetup.exe /q

    I find it much easier to install this via a .cmd called in SetupParams or GuiRunOnce, rather than integrating it directly. Sorry I can't help more.

  11. It could be hyperthreading, but it could also just be that it's quite new, and throwing the hardware detection off a bit. Have you considered doing this in a virtual machine environment (either VMWare or Virtual Server 2005)? Technically, that would be the easiest and most cost-effective solution - install 2003 on a new server, install the virtual machine software, install NT4 inside the VM, upgrade to 2003 in the VM, then add your real server to the domain and demote the 2003 server in the VM.

    Once that's done, remove the VM software if you no longer need it, or keep it around for other server migrations. It's easy, and it's easy to back out of if you make a mistake, with either snapshots (VMWare) or undo disks (Virtual Server 2005).

  12. IBM is the vendor of choice for laptops. I know some people call them stinkpads, but if you buy a cheap anything (from any vendor), you almost always get what you pay for. Some vendors are just bad across the line, but I've found IBM Thinkpad T and X series laptops to be the best at taking regular abuse, especially from the higher-ups who routinely beat the living hell out of anything they touch (not to mention what their kids do with them when they're home!).

    Sorry to hear about your experiences man - that sucks. :blink:

  13. Mind you i cant get windows to accept the key number off the COE have tried xp home sp2 OEM, and home sp2 retail, Computer was pre installed with sp1 but dont have a copy of that.
    That's because you'd need a VLK OEM key to make it work, because the OS that was installed was a special VLK version of XP. You'd have to reinstall with a full version OEM copy of XP to be able to use an OEM key, unfortunately.
    The recovery partition was corrupt and held no usable data so the restore cd doesn't work and the shop havent supplied a hard copy of xp.

    Depending on the licensing agreement the vendor has with Microsoft, they may not have been able to provide a real XP CD. If the vendor is unable to provide you with a copy of XP, your only recourse (short of getting the machine re-imaged by the vendor) is to contact Microsoft and see what they can do for your friend.

×
×
  • Create New...