Jump to content

Steven W

Member
  • Posts

    352
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Steven W

  1. Without specifically addressing Win95, there are some interesting files in the Application Data/Skype folder too. Looking at 1.4.0.84 there's shared.xml, some db files, etc. There's also a registry key that reports version number.

  2. I did not attempt versions lower than 1.3.0.66. FWIW (probably not much), before I got it to run I did edit the version of skype.exe using XN Resource editor. I thought this was necessary, but later uninstalled, cleaned registry, and reinstalled without edits and it worked. A weird consequence of version edit, in the Help -- About Dialog, a bunch symbols were shown instead of the actual version.

  3. I tried other versions and couldn't get them to work. When using 1.3.066 I have to follow the exact 7 steps I added above, or it just sits there trying to connect. Also have to clean the registry after installing later versions...Would be nice to get later versions working.

  4. Got the version I mentioned above working (1.3066)

    hint:

    127.0.0.1 ui.skype.com

    Not sure if that will let the installer work, if it will work on Win95. If the installer won't work, disconnect from internet and install.

    Edit: This does let the installer work, but now I can't log in? I'll keep poking around.

    Further edit: It does work, I'm putting all the steps I've taken here, not sure if everything is necessary, but...

    1. Download the version I have linked to above

    2. Disconnect the PC from the internet

    3. Run the installer, it may hang for a minute, but will eventually run.

    4. Reconnect the PC to the internet.

    5. Start Skype, you will see the ugly update box, tell it yes or no (doesn't matter)

    6. Add line to hosts file and reboot

    7. Start Skype and enjoy.

    skypev.jpg

  5. If you can boot to the dos prompt (press F8, before Windows loads, choose command prompt only) or use an Emergency Boot Disk or CD and can edit the system.ini file, change the line that reads

    shell=explorer.exe

    to

    shell=progman.exe

    note that's progman.exe not program.exe (I've seen many people get that wrong). It's short for Program Manager. Once you do that, start Windows and the Program Manager should start. If you can get IE to run from the Program Manager, you can probably download and reinstall IE. I'd suggest a newer version say at least 5.5 SP2 or 6 SP1. If IE won't start, you'll have to download the full setup on another computer and burn a CD or somehow copy it to the faulty computer and run it from the Program Manager. Once the install finishes, do not hit the restart, use the Program Manager to find and edit the system.ini file and reverse the changes, and then reboot. This will likely fix your issue.

    edit.com (MSDOS editor) should be located in 'c:\windows\command\'

    and of course the system.ini should be located in the Windows folder.

    If you download the full IE setup from a site that has a zip file or some other kind of compressed file, make sure you have a tool to decompress it.

    An alternative to not hitting restart above, make sure the IE setup will start, but before you select options,etc, edit the system.ini (reversing changes) before going through the IE install, that way when you do hit restart Windows should load normally.

  6. I was sent a private message regarding this post and it included the script. I can only assume that it is accurate and unmodified:

    ' * ***** BEGIN LICENSE BLOCK *****

    ' * Zimbra Collaboration Suite Server
    ' * Copyright © 2009, 2010, 2011 VMware, Inc.
    ' *
    ' * The contents of this file are subject to the Zimbra Public License
    ' * Version 1.3 ("License"); you may not use this file except in
    ' * compliance with the License. You may obtain a copy of the License at
    ' * http://www.zimbra.com/license.
    ' *
    ' * Software distributed under the License is distributed on an "AS IS"
    ' * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
    ' * ***** END LICENSE BLOCK *****
    ' */
    '
    ' ZD runner
    '

    Dim oFso, oReg, oShellApp, oShell, oWMI, sScriptPath, sScriptDir, oTokens, sAppRoot, sDataRoot, sOverridePath
    Dim sLocalAppDir, bIsUpgrade, sTmpDir, sRestoreDir, aUserDirs, aUserFiles, sVersion, sVerFile

    const HKEY_CURRENT_USER = &H80000001

    Sub LogMsg(sMsg, iLevel)
    If (InStr(Wscript.FullName,"cscript") > 0) Then
    WScript.StdOut.WriteLine(sMsg)
    End If
    If iLevel <= iLogLevel Then
    oShell.LogEvent iLevel, "Zimbra Desktop: " & sMsg
    End If
    End Sub


    Sub FindAndReplace(sFile, oTokens)
    Dim oFso, oInFile, oOutFile, sTmpFile

    Set oFso = CreateObject("Scripting.FileSystemObject")
    sTmpFile = sFile & ".tmp"

    On Error Resume Next
    Set oInFile = oFso.OpenTextFile(sFile, 1, false)
    If Err.number <> 0 Then
    LogMsg "failed to open file: " & sFile, 1
    Exit Sub
    End If
    Set oOutFile = oFso.OpenTextFile(sTmpFile, 2, true)
    If Err.number <> 0 Then
    LogMsg "failed to open file: " & sTmpFile, 1
    Exit Sub
    End If

    Do Until oInFile.AtEndOfStream
    Dim sLine, sKey
    sLine = oInFile.ReadLine
    For Each sKey In oTokens.Keys
    sLine = Replace(sLine, sKey, oTokens.Item(sKey))
    Next
    oOutFile.WriteLine(sLine)
    Loop

    oInFile.Close
    oOutFile.Close
    oFso.DeleteFile sFile, true
    oFso.MoveFile sTmpFile, sFile
    End Sub

    Function GetRandomId
    Set oTypeLib = CreateObject("Scriptlet.TypeLib")
    GetRandomId = LCase(Mid(oTypeLib.GUID, 2, 36))
    End Function

    Sub CopyIfExists(sSrc, sDest, bOW)
    If oFso.FileExists(sSrc) Then
    oFso.CopyFile sSrc, sDest, bOW
    End If
    End Sub

    Sub LaunchPrism()
    Dim sCmd, iRet

    iRet = oReg.CreateKey(HKEY_CURRENT_USER, "Software\Zimbra\Zimbra Desktop\Prism")
    oReg.SetStringValue HKEY_CURRENT_USER, "Software\Zimbra\Zimbra Desktop\Prism", "OverridePath", sOverridePath

    sCmd = Chr(34) & sAppRoot & "\win32\prism\zdclient.exe" & Chr(34)
    oShell.Run sCmd, 1, false
    WScript.Quit
    End Sub

    Sub StopProcesses()
    Dim sCmd, sCScript, sZdCtl

    sCScript = Chr(34) & oFso.GetSpecialFolder(1).Path & "\cscript.exe" & Chr(34)
    sZdCtl = Chr(34) & sDataRoot & "\bin\zdctl.vbs" & Chr(34)

    'Stop backend service and prism
    oShell.Run sCScript & " " & sZdCtl & " shutdown", 0, true
    End Sub

    Sub BackupFailed(sMsg)
    If Not IsNull(sMsg) Then
    oShell.Popup sMsg, 0, "Zimbra Desktop", 48
    End If
    oFso.MoveFolder sTmpDir, sRestoreDir
    WScript.Quit
    End Sub

    Sub BackupData()
    If oFso.FolderExists(sTmpDir) Then
    ' Save leftover temp dir, in case it's needed in manual recovery
    Dim iEpoch
    iEpoch = DateDiff("s", "01/01/1970 00:00:00", Now())
    oFso.MoveFolder sTmpDir, sTmpDir & "." & iEpoch
    End If
    oFso.CreateFolder sTmpDir

    On Error Resume Next

    Dim sDir
    For Each sDir In aUserDirs
    If oFso.FolderExists(sDataRoot & "\" & sDir) Then
    oFso.MoveFolder sDataRoot & "\" & sDir, sTmpDir & "\" & sDir
    If Err.number <> 0 Then
    BackupFailed "File operation failed. Please close any open files under " & _
    sDataRoot & "\" & sDir
    End If
    End If
    Next

    oFso.CreateFolder sTmpDir & "\profile"
    oFso.CreateFolder sTmpDir & "\conf"
    Dim sFile
    For Each sFile In aUserFiles
    CopyIfExists sDataRoot & "\" & sFile, sTmpDir & "\" & sFile, true
    Next

    Dim iButton, sMsg
    Do
    oFso.DeleteFolder sDataRoot, true
    If Err.number = 0 Then
    Exit Sub
    Else
    sMsg = "Unable to delete folder: " & sDataRoot & ". " & _
    "Please close any open files in this folder and its sub-folders."
    iButton = oShell.Popup(sMsg, 0, "Zimbra Desktop", 5 + 48)
    End If
    Err.Clear
    Loop While iButton = 4 ' Retry

    ' Cancled
    BackupFailed Null
    End Sub

    Sub RestoreData(sSrcRoot)
    Dim sDir
    For Each sDir In aUserDirs
    If oFso.FolderExists(sSrcRoot & "\" & sDir) Then
    If oFso.FolderExists(sDataRoot & "\" & sDir) Then
    oFso.DeleteFolder sDataRoot & "\" & sDir, true
    End If
    oFso.MoveFolder sSrcRoot & "\" & sDir, sDataRoot & "\" & sDir
    End If
    Next

    Dim sFile
    For Each sFile In aUserFiles
    CopyIfExists sSrcRoot & "\" & sFile, sDataRoot & "\" & sFile, true
    Next

    oFso.DeleteFolder sSrcRoot, true
    End Sub

    Sub WriteVersion()
    Dim oFout

    On Error Resume Next
    Set oFout = oFso.OpenTextFile(sVerFile, 2, true)
    If Err.number = 0 Then
    oFout.WriteLine(sVersion)
    End If
    oFout.Close
    End Sub

    Function ReadVersion()
    Dim oFin

    ReadVersion = ""
    On Error Resume Next
    Set oFin = oFso.OpenTextFile(sVerFile, 1, false)
    If Err.number = 0 Then
    ReadVersion= oFin.ReadLine()
    End If
    oFin.Close
    End Function

    Sub EnsureSingleInstance()
    Dim oProcs, oProc, bFound
    Set oProcs = oWMI.ExecQuery("Select * from Win32_Process " & _
    "where Name='cscript.exe'",, 48) ' 48: forward-only enumerator + return-immediately

    bFound = false
    For Each oProc in oProcs
    If Instr(1, oProc.CommandLine, WScript.ScriptName, 1) > 0 Then
    If bFound Then
    WScript.Quit
    End If
    bFound = true
    End If
    Next
    End Sub

    Sub BuildPath(ByVal Path)
    If Not oFso.FolderExists(Path) Then
    BuildPath oFso.GetParentFolderName(Path)
    oFso.CreateFolder Path
    End If
    End Sub

    Function GetDataRoot()
    oReg.GetStringValue HKEY_CURRENT_USER, "Software\Zimbra\Zimbra Desktop", "DataRoot", GetDataRoot
    If IsNull(GetDataRoot) Then
    GetDataRoot = sLocalAppDir & "\Zimbra\Zimbra Desktop"
    Else
    If Not oFso.FolderExists(GetDataRoot) Then
    BuildPath(GetDataRoot)
    End If
    GetDataRoot = oFso.getFolder(GetDataRoot).ShortPath
    End If
    End Function

    Function IsNonEnUsXp()
    Dim nLang, sVer
    Set colOSes = oWMI.ExecQuery("Select * from Win32_OperatingSystem")
    For Each oOS in colOSes
    nLang = oOS.OSLanguage
    sVer = oOS.Version
    If nLang <> 1033 AND Instr(sVer, "5.") = 1 Then
    IsNonEnUsXp = true
    Else
    IsNonEnUsXp = false
    End If
    Exit For
    Next
    End Function

    '------------------------------- main ---------------------------------

    Set oFso = CreateObject("Scripting.FileSystemObject")
    Set oShellApp = CreateObject("Shell.Application")
    Set oShell = CreateObject("WScript.Shell")
    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    Set oWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")

    EnsureSingleInstance

    sVersion="7.2.2 build 11951"
    aUserDirs = Array("index", "store", "sqlite", "log", "zimlets-properties", "zimlets-deployed")
    aUserFiles = Array("conf\keystore", "profile\prefs.js", "profile\persdict.dat", "profile\localstore.json")
    sScriptPath = WScript.ScriptFullName
    sScriptDir = Left(sScriptPath, InStrRev(sScriptPath, WScript.ScriptName) - 2)
    sAppRoot = oFso.GetParentFolderName(sScriptDir)
    sLocalAppDir = oFso.getFolder(oShellApp.Namespace(&H1c&).Self.Path).ShortPath

    sDataRoot = GetDataRoot()
    xmlDataRoot = Replace(sDataRoot,"&","&")
    sVerFile = sDataRoot & "\conf\version"
    sTmpDir = sDataRoot & ".tmp"
    sRestoreDir = sDataRoot & ".rst"
    sOverridePath = sDataRoot & "\zdesktop.webapp\override.ini"
    bIsUpgrade = false

    If oFso.FolderExists(sDataRoot) Then
    If oFso.FolderExists(sRestoreDir) Then
    RestoreData sRestoreDir
    End If

    Dim sCurVer
    sCurVer = ReadVersion
    If StrComp(sCurVer, sVersion) = 0 Then
    LaunchPrism
    Else
    bIsUpgrade = true
    End If
    End If

    Dim sMsg
    sMsg = "Initializing, please wait..."
    If (InStr(Wscript.FullName,"cscript") > 0) Then
    WScript.Echo sMsg
    End If
    oShell.Popup sMsg, 5, "Zimbra Desktop", 64

    StopProcesses

    If bIsUpgrade Then
    BackupData
    End If

    ' copy data files
    If Not oFso.FolderExists(sLocalAppDir & "\Zimbra") Then
    oFso.CreateFolder sLocalAppDir & "\Zimbra"
    End If
    If Not oFso.FolderExists(sLocalAppDir & "\Zimbra\Zimbra Desktop") Then
    oFso.CreateFolder sLocalAppDir & "\Zimbra\Zimbra Desktop"
    End If
    oFso.CopyFolder sAppRoot & "\data\*", sDataRoot & "\", true
    WriteVersion

    Set physMem = GetObject("winmgmts:").InstancesOf("Win32_PhysicalMemory")
    For Each mem In physMem
    memTmp = mem.capacity / 1024 / 1024
    TotalRam = TotalRam + memTmp
    Next

    If TotalRam > 1000 Then
    javaXms = "-Xms128m"
    javaXmx = "-Xmx512m"
    Else
    javaXms = "-Xms32m"
    javaXmx = "-Xmx150m"
    End If

    ' fix data files
    Set oTokens = CreateObject("Scripting.Dictionary")
    oTokens.Add "@install.app.root@", sAppRoot
    oTokens.Add "@install.data.root@", sDataRoot
    oTokens.Add "@install.key@", GetRandomId()
    oTokens.Add "@install.mutex.name@", GetRandomId()
    oTokens.Add "@install.locale@", "en-US"
    oTokens.Add "@java.xms@", javaXms
    oTokens.Add "@java.xmx@", javaXmx

    FindAndReplace sDataRoot & "\bin\zdctl.vbs", oTokens
    FindAndReplace sDataRoot & "\conf\zdesktop.conf", oTokens
    FindAndReplace sDataRoot & "\zdesktop.webapp\webapp.ini", oTokens
    FindAndReplace sDataRoot & "\profile\user.js", oTokens
    FindAndReplace sOverridePath, oTokens

    oTokens.Remove "@install.data.root@"
    oTokens.Add "@install.data.root@", xmlDataRoot
    FindAndReplace sDataRoot & "\conf\localconfig.xml", oTokens
    FindAndReplace sDataRoot & "\jetty\etc\jetty.xml", oTokens

    If bIsUpgrade Then
    RestoreData sTmpDir
    End If

    oReg.CreateKey HKEY_CURRENT_USER, "Software\Zimbra\Zimbra Desktop"
    oReg.SetStringValue HKEY_CURRENT_USER, "Software\Zimbra\Zimbra Desktop", "DataRoot", sDataRoot

    LaunchPrism

    Wow! I can see Java is required. I'm getting less impressed by the second.

    Edit: The whole thing is a Java app. I didn't realize.

    Further Edit:

    In case you're wondering what Prism is in this context:

    https://wiki.mozilla.org/Prism

  7. Wish I were more of a VBscript guru, but alas....

    My thinking on the DSClient is that it will be necessary if you do get the thing up and running and try to connect to an Exchange Server that requires NTLM authentication. I could be mistaken, I did say *may*.

    As for now, could you enlighten us with any particular error messages etc. from both the unmodded and modded vbs files?

    Edit:

    Those reading this should realize that there are some differences in VB script implementations on NT systems vs 9x systems. I take it that use of the single quote is the equivalent of "commenting out" lines.

  8. Those of you wanting IE5.5sp2 most of the files can be found on the webarchive:

    http://web.archive.org/web/*/http://mssjus.www.conxion.com/download/ie55sp2/install/5.5_sp2/*

    I got all the files in the en-us subdirectory. You must navigate 4 pages @ the archive. (note not all the files show on the above link are in that subdirectory).

    iesetup.ini failed when I tried to get it but can easily be found from a Google search. I'll paste the one I found in a spoiler below. This isn't quite the same as getting it from MS, but it's as close as you're probably going to get now.

    Had to edit to get the link to work properly.

    Note the ini file's content's are from a Russian site:

    [Options]
    Language=0409
    Shell_Integration=0
    Win95=5.50.4807.2300
    Millen=5.50.4807.2300
    NTx86=5.50.4807.2300
    W2K=5.50.4807.2300
    NTalpha=0

    [Version]
    Signature=Active Setup

    [Downloaded Files]
    ADVAUTH.CAB=1
    AOLSUPP.CAB=1
    AXA2.CAB=1
    BRANDING.CAB=1
    DCOM95.EXE=1
    DXDDEX.CAB=1
    DXMINI.CAB=1
    filelist.dat=1
    FONTCORE.CAB=1
    FONTSUP.CAB=1
    GSETUP95.CAB=1
    GSETUPNT.CAB=1
    HELPCONT.CAB=1
    HHUPD.CAB=1
    ICW.CAB=1
    ICWCON.CAB=1
    ie.txt=1
    IE4MFC40.CAB=1
    ie5setup.exe=1
    IEDATA.CAB=1
    IEDATAJA.CAB=1
    IEDOM.CAB=1
    IEEXINST.CAB=1
    IELPKAD.CAB=1
    IEMIL_1.CAB=1
    IEMIL_2.CAB=1
    IEMIL_3.CAB=1
    IENT_S1.CAB=1
    IENT_S2.CAB=1
    IENT_S3.CAB=1
    IENT_S4.CAB=1
    IENT_S5.CAB=1
    iesetup.dir=1
    iesetup.ini=1
    IEW2K_1.CAB=1
    IEW2K_2.CAB=1
    IEW2K_3.CAB=1
    IE_EXTRA.CAB=1
    IE_S1.CAB=1
    IE_S2.CAB=1
    IE_S3.CAB=1
    IE_S4.CAB=1
    IE_S5.CAB=1
    MAILNEWS.CAB=1
    MDAC_IE5.CAB=1
    MOBILE95.CAB=1
    MOBILENT.CAB=1
    MPCDCS.CAB=1
    MPLAYER2.CAB=1
    MSN_AUTH.CAB=1
    NM30.CAB=1
    OAINST.EXE=1
    OEEXCEP.CAB=1
    README.CAB=1
    SCRIPTEN.CAB=1
    SETUPNT.CAB=1
    SETUPW95.CAB=1
    SWFLASH.CAB=1
    This folder is safe to delete.txt=1
    TS95.CAB=1
    TSNT.CAB=1
    VBSCRIPT.CAB=1
    VGX.CAB=1
    VMX86_01.CAB=1
    VMX86_02.CAB=1
    WAB.CAB=1
    WEBFLDRS.CAB=1

    Further edit the file 'This folder is safe to delete.txt' is MIA, so another spoiler:

    This folder contains the information needed to install Internet Explorer 5.5.
    Once Internet Explorer 5.5 is installed and functioning properly on your system, you may delete this folder to free up disk space.
    If you delete this folder but later want to reinstall the product, you will need to download it again from the web site.

    Noticed two more missing files, first 'filelist.dat':

    [General]
    Version=1

    [GenSetup_NTx86]
    Version=5,0,0,1
    Locale=EN
    GUID={5fd399c0-a70a-11d1-9948-00c04f98bbc9}
    URL0=261863,GSETUPNT.CAB

    [GenSetup]
    Version=5,0,0,1
    Locale=EN
    GUID={5fd399c0-a70a-11d1-9948-00c04f98bbc9}
    URL0=286985,GSETUP95.CAB

    [DCOM95]
    Version=4,71,2900,7
    Locale=EN
    GUID={61274460-bf8c-11d1-994c-00c04f98bbc9}
    URL0=1228544,DCOM95.EXE

    [bASEIE40_MILL]
    Version=5,50,4807,2300
    Locale=EN
    GUID={89820200-ECBD-11cf-8B85-00AA005B4383}
    URL0=1321886,IEMIL_1.CAB
    URL1=2593372,IEMIL_2.CAB
    URL2=1943239,IEMIL_3.CAB

    [bASEIE40_NTx86]
    Version=5,50,4807,2300
    Locale=EN
    GUID={89820200-ECBD-11cf-8B85-00AA005B4383}
    URL0=756215,SETUPNT.CAB
    URL1=109906,IEDOM.CAB
    URL2=1266935,IENT_S1.CAB
    URL3=1457959,IENT_S2.CAB
    URL4=1457959,IENT_S3.CAB
    URL5=1457959,IENT_S4.CAB
    URL6=742831,IENT_S5.CAB

    [bASEIE40_Win]
    Version=5,50,4807,2300
    Locale=EN
    GUID={89820200-ECBD-11cf-8B85-00AA005B4383}
    URL0=953408,SETUPW95.CAB
    URL1=109906,IEDOM.CAB
    URL2=1448221,IE_S1.CAB
    URL3=1457957,IE_S2.CAB
    URL4=1457957,IE_S3.CAB
    URL5=1457957,IE_S4.CAB
    URL6=546382,IE_S5.CAB

    [bASEIE40_W2K]
    Version=5,50,4807,2300
    Locale=EN
    GUID={89820200-ECBD-11cf-8B85-00AA005B4383}
    URL0=1507475,IEW2K_1.CAB
    URL1=1718383,IEW2K_2.CAB
    URL2=2708338,IEW2K_3.CAB

    [iEEX]
    Version=5,50,4807,2300
    Locale=EN
    GUID={0fde1f56-0d59-4fd7-9624-e3df6b419d0f}
    URL0=22819,IEEXINST.CAB

    [iEReadme]
    Version=5,50,4807,2300
    Locale=*
    GUID={0fde1f56-0d59-4fd7-9624-e3df6b419d0e}
    URL0=26737,README.CAB

    [MSTASK]
    Version=4,71,1972,1
    Locale=EN
    GUID={CC2A9BA0-3BDD-11D0-821E-444553540000}
    URL0=159493,TS95.CAB

    [MSTASK_NTx86]
    Version=4,71,1972,1
    Locale=EN
    GUID={CC2A9BA0-3BDD-11D0-821E-444553540000}
    URL0=162552,TSNT.CAB

    [MobilePk]
    Version=5,50,4807,2300
    Locale=EN
    GUID={3af36230-a269-11d1-b5bf-0000f8051515}
    URL0=416943,MOBILE95.CAB

    [MobilePk_Mill]
    Version=5,50,4807,2300
    Locale=EN
    GUID={3af36230-a269-11d1-b5bf-0000f8051515}
    URL0=416943,MOBILE95.CAB

    [MobilePk_NTx86]
    Version=5,50,4807,2300
    Locale=EN
    GUID={3af36230-a269-11d1-b5bf-0000f8051515}
    URL0=391763,MOBILENT.CAB

    [bRANDING.CAB]
    Version=5,50,4807,2300
    Locale=en
    GUID=>{60B49E34-C7CC-11D0-8953-00A0C90347FF}MICROS
    URL0=8886,BRANDING.CAB

    [AdvAuth]
    Version=5,50,4807,2300
    Locale=EN
    GUID={4278c270-a269-11d1-b5bf-0000f8051515}
    URL0=72534,ADVAUTH.CAB

    [MSN_Auth]
    Version=4,9,9,2
    Locale=EN
    GUID={6fab99d0-bab8-11d1-994a-00c04f98bbc9}
    URL0=54909,MSN_AUTH.CAB

    [htmlHelp_NTx86]
    Version=4,74,8875,0
    Locale=EN
    GUID={de5aed00-a4bf-11d1-9948-00c04f98bbc9}
    URL0=690173,HHUPD.CAB

    [htmlHelp]
    Version=4,74,8875,0
    Locale=EN
    GUID={de5aed00-a4bf-11d1-9948-00c04f98bbc9}
    URL0=690173,HHUPD.CAB

    [HelpCont]
    Version=5,50,4807,2300
    Locale=EN
    GUID={45ea75a0-a269-11d1-b5bf-0000f8051515}
    URL0=366307,HELPCONT.CAB

    [JAVAVM]
    Version=5,0,3802,0
    Locale=EN
    GUID={08B0E5C0-4FCB-11CF-AAA5-00401C608500}
    URL0=2465378,VMX86_01.CAB
    URL1=2609956,VMX86_02.CAB

    [DAJava]
    Version=6,0,1,223
    Locale=EN
    GUID={4f216970-c90c-11d1-b5c7-0000f8051515}
    URL0=84601,AXA2.CAB

    [TridataJava]
    Version=4,7,0,320
    Locale=EN
    GUID={36f8ec70-c29a-11d1-b5c7-0000f8051515}
    URL0=9865,IEDATAJA.CAB

    [MFC40]
    Version=4,0,0,0
    Locale=EN
    GUID={BEF6E001-A874-101A-8BBA-00AA00300CAB}
    URL0=529372,IE4MFC40.CAB

    [iCW_NTx86]
    Version=5,50,4807,2300
    Locale=EN
    GUID={5A8D6EE0-3E18-11D0-821E-444553540000}
    URL0=479663,ICW.CAB

    [iCW]
    Version=5,50,4807,2300
    Locale=EN
    GUID={5A8D6EE0-3E18-11D0-821E-444553540000}
    URL0=477029,ICWCON.CAB

    [Fontcore]
    Version=1,0,0,6
    Locale=*
    GUID={C9E9A340-D1F1-11D0-821E-444553540600}
    URL0=762249,FONTCORE.CAB

    [MDAC]
    Version=2,10,3711,9
    Locale=EN
    GUID={18b6f603-bdc4-4eee-9598-d2a4d1375605}
    URL0=2295653,MDAC_IE5.CAB

    [Tridata]
    Version=5,5000,3130,0
    Locale=EN
    GUID={9381D8F2-0288-11D0-9501-00AA00B911A5}
    URL0=71646,IEDATA.CAB

    [ExtraPack]
    Version=5,50,4807,2300
    Locale=EN
    GUID={630b1da0-b465-11d1-9948-00c04f98bbc9}
    URL0=208385,IE_EXTRA.CAB

    [netmeeting_NTx86]
    Version=4,4,0,3388
    Locale=EN
    GUID={44BBA842-CC51-11CF-AAFA-00AA00B6015B}
    URL0=1549418,NM30.CAB

    [netmeeting]
    Version=4,4,0,3388
    Locale=EN
    GUID={44BBA842-CC51-11CF-AAFA-00AA00B6015C}
    URL0=1549418,NM30.CAB

    [AddressBook]
    Version=5,50,4807,1700
    Locale=EN
    GUID={7790769C-0471-11d2-AF11-00C04FA35D02}
    URL0=557203,WAB.CAB

    [MailNews_NTx86]
    Version=5,50,4807,1700
    Locale=EN
    GUID={44BBA840-CC51-11CF-AAFA-00AA00B6015C}
    URL0=1518337,MAILNEWS.CAB

    [MailNews_W2K]
    Version=5,50,4807,1700
    Locale=EN
    GUID={44BBA840-CC51-11CF-AAFA-00AA00B6015C}
    URL0=1518337,MAILNEWS.CAB
    URL1=557203,WAB.CAB
    URL2=19738,OEEXCEP.CAB

    [MailNews]
    Version=5,50,4807,1700
    Locale=EN
    GUID={44BBA840-CC51-11CF-AAFA-00AA00B6015C}
    URL0=1518337,MAILNEWS.CAB

    [DirectXMini]
    Version=4,2,0,1054
    Locale=EN
    GUID={44BBA855-CC51-11CF-AAFA-00AA00B6015D}
    URL0=339279,DXMINI.CAB

    [DirectDrawEx]
    Version=4,71,1113,0
    Locale=EN
    GUID={44BBA855-CC51-11CF-AAFA-00AA00B6015F}
    URL0=35993,DXDDEX.CAB

    [mediaplayer]
    Version=6,4,7,1112
    Locale=EN
    GUID={22d6f312-b0f6-11d0-94ab-0080c74c7e95}
    URL0=1322008,MPLAYER2.CAB

    [wmpcodec]
    Version=6,4,7,1028
    Locale=*
    GUID={9a2e4ab0-9a7e-11d2-9da1-00c04f98bbc9}
    URL0=567271,MPCDCS.CAB

    [MSVML]
    Version=5,50,4133,200
    Locale=*
    GUID={10072CEC-8CC1-11D1-986E-00A0C955B42F}
    URL0=812828,VGX.CAB

    [AOLSUPP]
    Version=5,0,0,2
    Locale=EN
    GUID={47f67d00-9e55-11d1-baef-00c04fc2d130}
    URL0=170763,AOLSUPP.CAB


    Version=4,0,28,0
    Locale=EN
    GUID={D27CDB6E-AE6D-11cf-96B8-444553540000}
    URL0=168225,SWFLASH.CAB

    [WebFolders]
    Version=1,0,1,7
    Locale=EN
    GUID={73fa19d0-2d75-11d2-995d-00c04f98bbc9}
    URL0=1180904,WEBFLDRS.CAB

    [MSVBScript]
    Version=5,5,0,6330
    Locale=EN
    GUID={4f645220-306d-11d2-995d-00c04f98bbc9}
    URL0=321796,VBSCRIPT.CAB

    [MSVBScript_W2K]
    Version=5,5,0,6330
    Locale=EN
    GUID={4f645220-306d-11d2-995d-00c04f98bbc9}
    URL0=504615,SCRIPTEN.CAB

    [Fontsup]
    Version=1,0,0,6
    Locale=*
    GUID={C9E9A340-D1F1-11D0-821E-444553540300}
    URL0=643814,FONTSUP.CAB

    [iELPKAD]
    Version=5,0,2000,5
    Locale=*
    GUID={76C19B50-F0C8-11cf-87CC-0020AFEECF20}
    URL0=122295,IELPKAD.CAB

    [OAINST]
    Version=2,40,4277,1
    Locale=*
    GUID={F94C2DA4-708E-11d3-AFB2-00C04F6814C4}
    URL0=477936,OAINST.EXE

    And 'ie.txt'

    -----------------------------------------------------------
    SYSTEM REQUIREMENTS for
    Microsoft Internet Explorer 5.5 and Internet Tools
    June 2000
    -----------------------------------------------------------

    © Copyright Microsoft Corporation, 2000


    This document provides information about the system requirements for
    installing Microsoft® Internet Explorer 5.5 and Internet Tools.

    If you're looking for information about a specific program or component,
    try searching for it in the Microsoft Knowledge Base at:
    http://support.microsoft.com.

    If you are interested in complementary or late-breaking information
    to supplement the release of Microsoft Internet Explorer 5.5 and Internet
    Tools, please view the Readme.txt file on your computer in the Internet
    Explorer folder in the Program Files folder.

    ------------------------
    HOW TO USE THIS DOCUMENT
    ------------------------

    To view Ie.txt on screen in Notepad, maximize the Notepad window.

    To print Ie.txt, open it in Notepad or another word processor,
    and then use the Print command on the File menu.


    CONTENTS
    ========

    SYSTEM REQUIREMENTS
    Disk-Space Requirements for Internet Explorer 5.5 Installation


    SYSTEM REQUIREMENTS
    ===================

    To run Internet Explorer 5.5 and Internet Tools, your system must
    meet the following minimum requirements:

    - A 486 with a 66 MHz (megahertz) processor (Pentium processor
    recommended)

    - For Microsoft Windows® 95 or Windows 98:
    16 MB (megabytes) of RAM (random access memory) minimum

    - For Microsoft Windows NT® 4.0:
    32 MB of RAM minimum
    You must be running Service Pack 3 (or higher)

    - For Microsoft Windows® 2000:
    64 MB of RAM minimum

    - Minimal installation (browser only):
    Required to install: 45 MB
    Required to run: 27 MB after restart
    Typical installation:
    Required to install: 70 MB
    Required to run: 55 MB after restart
    Full installation:
    Required to install: 111 MB
    Required to run: 80 MB after restart

    - Mouse

    - Modem or Internet connection

    - CD-ROM drive (if installation is done from a CD-ROM)

    - Some components may require additional system resources
    not outlined above.

    Disk-Space Requirements for Internet Explorer 5.5 Installation
    ---------------------------------------------------------------
    Internet Explorer 5.5 and Internet Tools Beta Setup installs the
    majority of its files on the drive where the Windows operating
    system is installed, regardless of the installation location you
    chose. To free up space on your hard disk in order to meet the
    Internet Explorer 5.5 disk-space installation requirements,
    you must free up space on the drive where the Windows operating
    system is installed.

  9. Most of these files aren't localized. Obviously, the readme(s) and SCRxxx... files are. Might be nice to know which ones are and aren't so a kind of universal installer could be made with the "core" files and the localized ones separated and then dumped together when an end-user chooses a language.

    To be frank, you'd think Microsoft would've already thought of that to conserve server space.

  10. I'm going to list the files and add a spoiler for URLs for various languages. Append the filenames to the first URL for your language. Also the SCR56XX.CAB and the SCRIPXXX.CAB files have different names for different languages. They are listed in the spoiler. Got it?

    If you see mistakes, know of other languages, missing files et cetra, please sing out. I'm thinking there should be either a iesetup.ini or ie6setup.ini but can't seem to find it. On Win 7 ATM, so can't test.

    ADVAUTH.CAB
    AOLSUPP.CAB
    AXA.CAB
    AXA3.CAB
    BRANDING.CAB
    CRLUPD.CAB
    FONTCORE.CAB
    FONTSUP.CAB
    GSETUP95.CAB
    GSETUPNT.CAB
    HELPCONT.CAB
    HHUPD.CAB
    ICW.CAB
    ICWCON.CAB
    IE_EXTRA.CAB
    IE_S1.CAB
    IE_S2.CAB
    IE_S3.CAB
    IE_S4.CAB
    IE_S5.CAB
    IE_S6.CAB
    IE4SHLNT.CAB
    ie6setup.exe

    IECIF.CAB
    IEDATA.CAB
    IEDOM.CAB
    IEEXINST.CAB
    IELPKAD.CAB
    IELPKAR.CAB
    IELPKIW.CAB
    IELPKJA.CAB
    IELPKKO.CAB
    IELPKPE.CAB
    IELPKTH.CAB
    IELPKVI.CAB
    IELPKZHC.CAB
    IELPKZHT.CAB
    IEMIL_1.CAB
    IEMIL_2.CAB
    IEMIL_3.CAB
    IEMIL_4.CAB
    IENT_S1.CAB
    IENT_S2.CAB
    IENT_S3.CAB
    IENT_S4.CAB
    IENT_S5.CAB
    IENT_S6.CAB

    iesetup.ini ---- if unavailable see UPDATES below!
    IEW2K_1.CAB
    IEW2K_2.CAB
    IEW2K_3.CAB
    IEW2K_4.CAB
    JAAIME.CAB
    KOAIME.CAB
    MAILNEWS.CAB
    MOBILE95.CAB
    MOBILENT.CAB
    MPCDCS.CAB
    MPLAY2A.CAB
    MPLAY2U.CAB
    MPLAYER2.CAB
    OAINST.CAB
    OEEXCEP.CAB
    README.CAB
    SCAIME.CAB
    SCR56xx.CAB
    SCRIPTxx.CAB
    SETUPNT.CAB
    SETUPW95.CAB
    SWFLASH.CAB
    TCAIME.CAB
    TS95.CAB
    TSNT.CAB
    USP10.CAB
    VGX.CAB
    WAB.CAB

    UPDATES:

    IEAK6.EXE (Internet Explorer Administration Kit) Is also available in the links -- Thanks LoneCrusader

    ALSO ieak6opt.CAB and ieak6cd.exe are available -- Thanks submix8c

    iesetup.ini seems to be only available in some languages if not in yours just get the use the Spanish link (file has no localized settings):

    http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/ES/iesetup.ini -- Thanks Arminius

    Arabichttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/AR/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/AR/SCR56AR.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/AR/SCRIPTAR.CABChinese Simplifiedhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CN/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CN/SCR56CHS.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CN/SCRIPCHS.CABChinese Traditionalhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TW/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TW/SCR56CHT.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TW/SCRIPCHT.CABCzechhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CS/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CS/SCR56CS.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/CS/SCRIPTCS.CABDanishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DA/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DA/SCR56DA.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DA/SCRIPTDA.CABDutchhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NL/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NL/SCR56NL.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NL/SCRIPTNL.CABEnglishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/SCR56EN.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/SCRIPTEN.CABFinnishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FI/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FI/SCR56FI.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FI/SCRIPTFI.CABFrenchhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FR/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FR/SCR56FR.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/FR/SCRIPTFR.CABGermanhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DE/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DE/SCR56DE.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/DE/SCRIPTDE.CABGreekhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EL/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EL/SCR56EL.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EL/SCRIPTEL.CABHebrewhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HE/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HE/SCR56HE.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HE/SCRIPTHE.CABHungarianhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HU/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HU/SCR56HU.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/HU/SCRIPTHU.CABItalianhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/IT/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/IT/SCR56IT.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/IT/SCRIPTIT.CABJapanesehttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/JA/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/JA/SCR56JP.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/JA/SCRIPTJP.CABKoreanhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/KO/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/KO/SCR56KO.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/KO/SCRIPTKO.CABNorwegianhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NO/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NO/SCR56NO.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/NO/SCRIPTNO.CABPolishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PL/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PL/SCR56PL.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PL/SCRIPTPL.CABPortuguese - Brazilianhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT-BR/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT-BR/SCR56PTB.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT-BR/SCRIPPTB.CABPortuguese - Portugalhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT/SCR56PTG.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/PT/SCRIPPTG.CABRussianhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/RU/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/RU/SCR56RU.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/RU/SCRIPTRU.CABSpanishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/ES/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/ES/SCR56ES.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/ES/SCRIPTES.CABSwedishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/SV/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/SV/SCR56SV.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/SV/SCRIPTSV.CABTurkishhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TR/http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TR/SCR56TR.CABhttp://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/TR/SCRIPTTR.CAB
  11. Not sure how much help it will be but, at minimum, Windows Management Instrumentation will need to be running:

    http://support.microsoft.com/kb/322363

    Note there is a section for 98 and 98 SE.

    You *may* also need DSClient:

    http://www.imss.caltech.edu/node/414

    This page has a link to the setup under the section 'Where Can I Get The DSClient?'

    I think there was hotfix for this at some point in time.

    Edit:

    Should've figured:

    http://www.mdgx.com/add.htm#WMI

    http://www.mdgx.com/add.htm#ADS

  12. Hi all, I have unopened retail boxes of MS-DOS 5.0 and 6.22(upgrade) and Windows For Workgroups 3.11. I've read that that version of Windows may only install once or twice. I don't know about those versions of DOS. I want to make a backup copy of each disk (to other floppies) anyway and will be doing so with a USB floppy on a Windows 7 computer. Are there any special commands/software I should use so that the originals remain in a usuable state?

  13. Hi all, I'm trying to get an old PCI graphics card up and running with my 945GCT-M3 MB. I've noticed that in the BIOS the choices are "PEG slot" (assuming this is PCI Express slot) Onboard VGA and auto. When set to either AUTO or PEG slot the PC boots, the monitor lights up, but the screen remains blank and I've noticed that the keyboard doesn't light up. Does anyone know if some motherboard force you to use PCI-e graphics cards? Any possible workarounds?

  14. I have an SB Live sound card and loaded the DOS emulation driver in real DOS and it works beautifully, but when I go into Windows 3.1, nothing. There is a reference to the file here:

    Any ideas?

    I may have spoke too soon, the software I was using to listen to music may have take care of sound for me.

    Edit: My apologies, It was the software I was using, otherwise no sound in DOS either.

  15. I've been playing around with a similar (if not the same MB) info here, note that schwups mentions a device --PCI\VEN_8086&DEV_2771.DeviceDesc="Intel® 945G/GZ/P/PL PCI Express Root Port:

    Tonight I did a clean install of 98SE and XP, neither of them list such a device in the registry or device manager. I got thinking about this and, as I mentioned in that post, my BIOS has a setting with two choices, one says 'PEG slot' and the other is 'On-chip VGA'. I don't have a PCI express graphics card, so my thinking is that's why this device is not enumerated.

    I'm guessing your problem is that *that device* doesn't have a driver. If I were you and I really wanted to get that device to work, I'd do a clean install without that card in there, using only the onboard card then put the card in, selecting the PCI graphics option in the bios, boot to safe mode and see if the PCI Express Root Port is enumerated, either way don't install the real driver immediately. See if you can go into Windows Normally with just MS's generic VGA driver. I'd think that would be a good starting point -- see if that port has a driver and if you can boot with the card in its slot with a generic VGA driver.

×
×
  • Create New...