Jump to content

ack-hh

Member
  • Posts

    43
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

About ack-hh

Contact Methods

  • Website URL
    http://a-kaestner.de

ack-hh's Achievements

0

Reputation

  1. Hi, instead of running the DIR command three times for each desired folder, why not run it only once, using for example 'dir C:\ /O:GN /A /-P'? And, BTW, why are you using a batch file at all? You can process directories (and their subdirectories) with VBS very well. And, BTW2, why don't you use SFC? Regards Andreas
  2. Assuming odbcjt32.dll is located in the folder c:\windows\system, and further assuming that you have copied the new file to c:\windows\temp, do the following: Using NOTEPAD, open the file c:\windows\wininit.ini Add the following two lines: [rename] c:\windows\system\odbcjt32.dll=c:\windows\temp\odbcjt32.dll Restart WinME HTH - Andreas
  3. Does this occur in Safe Mode too?
  4. No, there isn't. A lot of localized strings are hardwired in a lot of files (DLLs, EXEs, ...)
  5. It has already been posted in THIS thread. Read soporific's 1st article and have a look at the OPKInstall section ...
  6. Use a VB script (WMI is required also): strComputer = "." Set wbemServices = GetObject("winmgmts:\\" & strComputer) Set wbemObjectSet = wbemServices.InstancesOf("Win32_LogicalMemoryConfiguration") For Each wbemObject In wbemObjectSet WScript.Echo "Total physical memory (KB): " & wbemObject.TotalPhysicalMemory Next
  7. The file named "directx.log" should give you a hint.
  8. I have managed to remove the MSN icon, but at the ultimate stage of the setup process (after logon) two RunOnce jobs are active which put back that @*~!§$ icon
  9. I guess you mean system.ini. Add this to your msbatch.inf: [UPD.Sys.systemini] %10%\system.ini, 386Enh, , "32BitDiskAccess=on" %10%\system.ini, 386Enh, , "32BitFileAccess=on" %10%\system.ini, 386Enh, , "PagingDrive=C:" %10%\system.ini, 386Enh, , "PagingFile=C:\PAGEFILE.SYS" %10%\system.ini, 386Enh, , "MinPagingFileSize=200704" %10%\system.ini, 386Enh, , "MaxPagingFileSize=200704" %10%\system.ini, 386Enh, , "WindowUpdateTime=1" %10%\system.ini, 386Enh, , "LocalLoadHigh=1" %10%\system.ini, 386Enh, , "VGA MonoText=Off" %10%\system.ini, 386Enh, , "Text=Off" %10%\system.ini, 386Enh, , "ConservativeSwapfileUsage=1" %10%\system.ini, vcache, , "MaxFileCache=32768" %10%\system.ini, vcache, , "ChunkSize=2048" [Install] UpdateInis=UPD.Sys.systemini NEVER set a maximum for the swap file unless you REALLY need to do so. NEVER use ConservativeSwapfileUsage=1 unless you REALLY need to do so. (Why should one downgrade to the legacy W95 mode of swap handling?) Naming the swap file Pagefile.sys (only) makes sense when the swap file is shared with another OS which uses a swap file with that name. The value for MaxFileCache might be way too small for many machines - individual adjustment is required. The ChunkSize setting is questionable.
  10. Update: http://www.msfn.org/board/index.php?act=ST...&t=46860&st=45# (Ultimate Freeware Machine)
  11. - Copy the W98 installation folder from the setup CD to your harddisk. - Copy the drivers which you want to add to your harddisk. - Unpack or extract the drivers, so INFINST can find the required .inf files. - Run INFINST to add the driver files to the setup files. - Make a new W98 setup CD.
  12. Use INFINST.EXE - should be found on your W98 CD.
  13. Try [HKEY_CLASSES_ROOT\Drive\shell\FList\command] @="C:\\WINDOWS\\command.com /c dir \"%1\" /a-d /b /s|sort>FileList.txt"
  14. Please post some excerpts from the list which show where the sorting "breaks".
  15. See also: "How to add the print directory feature to Windows Explorer" http://support.microsoft.com/kb/272623/en-us/
×
×
  • Create New...