Results 1 to 10 of 10

Thread: Microcat install help ( computer gurus)

  1. #1
    Rovernaut Guest

    Microcat install help ( computer gurus)

    I downloaded Microcat, 9/2006 edition and burnt a disk.
    When it auto runs and I get the install window, then up pops an error NTVDM CPU illegal instruction blah blah with options close or ignore. (Something to do with 16 bit MS-DOS)
    I know there could be issues with XP so I installed win 2000 on a virtual server with in my Linux system.
    Has any one got Microcat working correctly.

  2. #2
    Join Date
    Jan 1970
    Location
    Free Again Thanks Dan
    Posts
    10,150
    Total Downloaded
    0
    Quote Originally Posted by Rovernaut View Post
    I downloaded Microcat, 9/2006 edition and burnt a disk.
    When it auto runs and I get the install window, then up pops an error NTVDM CPU illegal instruction blah blah with options close or ignore. (Something to do with 16 bit MS-DOS)
    I know there could be issues with XP so I installed win 2000 on a virtual server with in my Linux system.
    Has any one got Microcat working correctly.
    i have it at work but its a internet based one for holden

  3. #3
    Join Date
    Apr 2002
    Location
    Godwin Beach 4511
    Posts
    20,689
    Total Downloaded
    32.38 MB
    it works fine in xp and 2k, sounds like a bad burn of the image... did you do a verify?
    2007 Discovery 3 SE7 TDV6 2.7
    2012 SZ Territory TX 2.7 TDCi

    "Make the lie big, make it simple, keep saying it, and eventually they will believe it." -- a warning from Adolf Hitler
    "If you don't have a sense of humour, you probably don't have any sense at all!" -- a wise observation by someone else
    'If everyone colludes in believing that war is the norm, nobody will recognize the imperative of peace." -- Anne Deveson
    “What you leave behind is not what is engraved in stone monuments, but what is woven into the lives of others.” - Pericles
    "We can ignore reality, but we cannot ignore the consequences of ignoring reality.” – Ayn Rand
    "The happiness of your life depends upon the quality of your thoughts." Marcus Aurelius

  4. #4
    dmdigital's Avatar
    dmdigital is offline OldBushie Vendor

    Gold Subscriber
    Join Date
    Jun 2006
    Location
    Arnhem Land, NT
    Posts
    8,492
    Total Downloaded
    0
    Yes and on XP. The main issue is you need to set the date back to somewhere in September 2006. I have it insalled with the data on a NAS drive, CD as a virtual image, and then use the following JScript to change the date and run it
    Code:
    var d, s, command, dos_com, option, appl; 
    appl = "mclre.exe"; 
    d = new Date(); 
    s = d.getDate() + "."; 
    s += (d.getMonth()+1) + "."; 
    option = "09.09.2006"; 
    s += d.getFullYear(); 
    var WshShell = WScript.CreateObject("WScript.Shell"); 
    command = "%COMSPEC% /c "; 
    dos_com = "date "; 
    WshShell.Run (command + dos_com + option, 0); 
    WshShell.Run (appl, 1, true); 
    option = s; 
    WshShell.Run (command + dos_com + option, 0);
    I'm thinking your issue may have something to do with the virtual server. NTVDM is the NT 16-bit Virtual Machine which allows 16-bit code execution in a 32-bit environment. Check the MS support site and also Google the error you should find something.
    MY15 Discovery 4 SE SDV6

    Past: 97 D1 Tdi, 03 D2a Td5, 08 Kimberley Kamper, 08 Defender 110 TDCi, 99 Defender 110 300Tdi[/SIZE]

  5. #5
    Join Date
    Jan 1970
    Location
    Free Again Thanks Dan
    Posts
    10,150
    Total Downloaded
    0
    as inc said

    we have computers with 2k and xp and it works fine on both systerms

  6. #6
    Rovernaut Guest
    Quote Originally Posted by dm_td5 View Post
    Yes and on XP. The main issue is you need to set the date back to somewhere in September 2006. I have it insalled with the data on a NAS drive, CD as a virtual image, and then use the following JScript to change the date and run it
    Code:
    var d, s, command, dos_com, option, appl; 
    appl = "mclre.exe"; 
    d = new Date(); 
    s = d.getDate() + "."; 
    s += (d.getMonth()+1) + "."; 
    option = "09.09.2006"; 
    s += d.getFullYear(); 
    var WshShell = WScript.CreateObject("WScript.Shell"); 
    command = "%COMSPEC% /c "; 
    dos_com = "date "; 
    WshShell.Run (command + dos_com + option, 0); 
    WshShell.Run (appl, 1, true); 
    option = s; 
    WshShell.Run (command + dos_com + option, 0);
    I'm thinking your issue may have something to do with the virtual server. NTVDM is the NT 16-bit Virtual Machine which allows 16-bit code execution in a 32-bit environment. Check the MS support site and also Google the error you should find something.
    I'm all google out, thied that before I got here LOL.
    I also have a dual boot with xp and get the same error.
    the Download file was linked as an EPC.cdi.
    But it is not an image. Nero and other programs will not recognize it as an image.
    I used winrar to extract it and then burn't all the extractions onto a DVD as a CD is too small.
    The Rave Cds were an ISO so no probs burning them.

  7. #7
    dmdigital's Avatar
    dmdigital is offline OldBushie Vendor

    Gold Subscriber
    Join Date
    Jun 2006
    Location
    Arnhem Land, NT
    Posts
    8,492
    Total Downloaded
    0
    Quote Originally Posted by Rovernaut View Post
    I'm all google out, thied that before I got here LOL.
    I also have a dual boot with xp and get the same error.
    the Download file was linked as an EPC.cdi.
    But it is not an image. Nero and other programs will not recognize it as an image.
    I used winrar to extract it and then burn't all the extractions onto a DVD as a CD is too small.
    The Rave Cds were an ISO so no probs burning them.
    Download daemon-tools and try mounting it with that.
    MY15 Discovery 4 SE SDV6

    Past: 97 D1 Tdi, 03 D2a Td5, 08 Kimberley Kamper, 08 Defender 110 TDCi, 99 Defender 110 300Tdi[/SIZE]

  8. #8
    Rovernaut Guest
    Problem fixed.

    Downloaded it again and reburnt it onto a Cd with Nero as. NRG .
    Thanks for all your quick responses guys.

  9. #9
    Join Date
    Jan 1970
    Location
    Newcastle Area
    Posts
    315
    Total Downloaded
    0
    Quote Originally Posted by dm_td5 View Post
    Yes and on XP. The main issue is you need to set the date back to somewhere in September 2006. I have it insalled with the data on a NAS drive, CD as a virtual image, and then use the following JScript to change the date and run it
    Code:
    var d, s, command, dos_com, option, appl; 
    appl = "mclre.exe"; 
    d = new Date(); 
    s = d.getDate() + "."; 
    s += (d.getMonth()+1) + "."; 
    option = "09.09.2006"; 
    s += d.getFullYear(); 
    var WshShell = WScript.CreateObject("WScript.Shell"); 
    command = "%COMSPEC% /c "; 
    dos_com = "date "; 
    WshShell.Run (command + dos_com + option, 0); 
    WshShell.Run (appl, 1, true); 
    option = s; 
    WshShell.Run (command + dos_com + option, 0);
    I'm thinking your issue may have something to do with the virtual server. NTVDM is the NT 16-bit Virtual Machine which allows 16-bit code execution in a 32-bit environment. Check the MS support site and also Google the error you should find something.
    What does all this code do?
    Does it change the date to sep 06 run the prog, and then change it back to the current date?
    If so, what do i do with this code? Do I save as it as something and run that?
    Sorry - computer numpty. I need simple things for a simple mind!

  10. #10
    dmdigital's Avatar
    dmdigital is offline OldBushie Vendor

    Gold Subscriber
    Join Date
    Jun 2006
    Location
    Arnhem Land, NT
    Posts
    8,492
    Total Downloaded
    0
    Quote Originally Posted by Ralf_the_RR View Post
    What does all this code do?
    Does it change the date to sep 06 run the prog, and then change it back to the current date?
    If so, what do i do with this code? Do I save as it as something and run that?
    Sorry - computer numpty. I need simple things for a simple mind!
    Sorry should have attached it as a file. Download the attached file and rename it to a file extension of .JS, save it in the Microcat directory (usually C:\MCLRE). Then create a desktop shortcut that points to it rather than the Microcat executable.

    This is what it does in summary:
    Set up Variables
    Get the current system date and remember it
    Set up a date of 9-Sep-2006
    Set up a command line
    Execute a command to reset the date to 9-Sep-2006
    Run Microcat
    Execute a command to reset the date to the original day, month, year
    Attached Files Attached Files
    MY15 Discovery 4 SE SDV6

    Past: 97 D1 Tdi, 03 D2a Td5, 08 Kimberley Kamper, 08 Defender 110 TDCi, 99 Defender 110 300Tdi[/SIZE]

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Search AULRO.com ONLY!
Search All the Web!