Jump to content











Photo
- - - - -

[Solved]Grub + ISO = BSOD


  • Please log in to reply
5 replies to this topic

#1 Acris

Acris

    Member

  • Members
  • 72 posts
  • Location:Switzerland
  •  
    Switzerland

Posted 27 May 2010 - 07:22 AM

Hello everyone,
I have a strange trouble with GRUB4DOS and an ISO called OTLPE.iso
Normally I have no problem to run my USB key at every boot but with this iso, I have a BSOD.

I have no worries with other iso images contained on my key, my usb key is bootable

I do not understand where the problem arises, I tried different way but still the BSOD.

Is it possible for me to run the iso or a solution by decompressing the iso image can be?

BSOD
a problem has been detected and windows has been shut down to prevent damage to your computer....
Run CHKDSK /F to check

stop : 0x0000007B( 0xF79FA528,0XC000034, 0X000000000, 0X00000000)


Menu.lst

gfxmenu /message
splashimage=(hd0,0)/whatever.xpm.gz
timeout 30
default 0

title OTLPE into RAM
find --set-root --ignore-floppies /OTLPE.iso
map --mem /OTLPE.iso (0xff)
map --hook
root (0xff)
chainloader (0xff)


contents of the iso Here : http://www.cijoint.f.../cijhK3qDxj.txt

Can you help me ?

Thanks a lot

Acris

#2 ireneuszp

ireneuszp

    Frequent Member

  • Advanced user
  • 191 posts
  •  
    Poland

Posted 27 May 2010 - 09:04 AM

Try firadisk
http://diddy.boot-la...iso_install.htm

title OTLPE into RAM

find --set-root --ignore-floppies /images/OTLPE.iso

map --mem /firadisk.ima (fd0)

map --hook

map --mem /images/OTLPE.iso (0xff)

map --hook

root (0xff)

chainloader (0xff)

boot

it should works fine :thumbsup:

#3 Acris

Acris

    Member

  • Members
  • 72 posts
  • Location:Switzerland
  •  
    Switzerland

Posted 27 May 2010 - 09:43 AM

Oh yes it's work better

Solved BSOD with init02.cmd

#4 ireneuszp

ireneuszp

    Frequent Member

  • Advanced user
  • 191 posts
  •  
    Poland

Posted 27 May 2010 - 06:44 PM

Oh yes it's work better

Solved BSOD with init02.cmd

I do not understand, how you repaired this mistake :thumbsup:
what you changed in file init02.cmd :cheers:

init02.cmd
@echo off

::start /wait xpeinit -9



:: -------------------------------------------------------------------------

:: Script for system initialization

:: It is always run as the last script before launching a shell

:: -------------------------------------------------------------------------

SETLOCAL ENABLEEXTENSIONS 



set PM=start /wait xpeinit.exe -f -m

set _LOGFILE=%temp%\init.log



echo. Fixing IE path in StartMenuInternet>> %_LOGFILE%



:: Fix IE path in StartMenuInternet 

set HK_STARTMENU_IE=HKLM\Software\Clients\StartMenuInternet\IEXPLORE.EXE

reg add "%HK_STARTMENU_IE%" /f /v "LocalizedString" /t REG_EXPAND_SZ /d "@%systemroot%\iexplore.exe,-702"

reg add "%HK_STARTMENU_IE%\DefaultIcon" /f /ve /t REG_EXPAND_SZ /d "%systemroot%\iexplore.exe,0"

reg add "%HK_STARTMENU_IE%\DefaultIcon" /f /v "IconsVisible" /t REG_DWORD /d 1

reg add "%HK_STARTMENU_IE%\shell\open\command" /f /ve /t REG_EXPAND_SZ /d "%systemroot%\iexplore.exe"



:: Set IExplore as default Internet Browser for XP Menu

reg add "HKLM\Software\Clients\StartMenuInternet" /f /ve /t REG_SZ /d "IEXPLORE.EXE"







:: Make sure AudioSrv is started (workaround for some apps using audio)

net start audiosrv



:: Disable Driver Signing 

xpeinit.exe -y



::--------------------------------

:: Create XPE shortcuts

::--------------------------------

%PM% "Creating Shortcuts..." 

echo.>> %_LOGFILE%

echo [Shortcut Creation]>> %_LOGFILE%

echo - %TIME%: Begin>> %_LOGFILE%

start /wait xpeinit.exe -l

echo - %TIME%: End>> %_LOGFILE%



:end

ENDLOCAL
:cheers:

#5 Acris

Acris

    Member

  • Members
  • 72 posts
  • Location:Switzerland
  •  
    Switzerland

Posted 28 May 2010 - 04:35 AM

Hi ireneuszp :

in init0.cmd, I Commented this line :

@echo off
:: -------------------------------------------------------------------------
:: Script for system initialization
:: -------------------------------------------------------------------------

::------------------------------
:: Remove PE resource limits (this also frees some memory)
::------------------------------
::start /wait xpeinit -9


and in init02.cmd, I uncommented the same line


I do not understand, how you repaired this mistake :thumbsup:
what you changed in file init02.cmd :cheers:

init02.cmd

@echo off
start /wait xpeinit -9

:: -------------------------------------------------------------------------
:: Script for system initialization
:: It is always run as the last script before launching a shell
:: -------------------------------------------------------------------------
SETLOCAL ENABLEEXTENSIONS

set PM=start /wait xpeinit.exe -f -m
set _LOGFILE=%temp%\init.log

echo. Fixing IE path in StartMenuInternet>> %_LOGFILE%

:: Fix IE path in StartMenuInternet
set HK_STARTMENU_IE=HKLM\Software\Clients\StartMenuInternet\IEXPLORE.EXE
reg add "%HK_STARTMENU_IE%" /f /v "LocalizedString" /t REG_EXPAND_SZ /d "@%systemroot%\iexplore.exe,-702"
reg add "%HK_STARTMENU_IE%\DefaultIcon" /f /ve /t REG_EXPAND_SZ /d "%systemroot%\iexplore.exe,0"
reg add "%HK_STARTMENU_IE%\DefaultIcon" /f /v "IconsVisible" /t REG_DWORD /d 1
reg add "%HK_STARTMENU_IE%\shell\open\command" /f /ve /t REG_EXPAND_SZ /d "%systemroot%\iexplore.exe"

:: Set IExplore as default Internet Browser for XP Menu
reg add "HKLM\Software\Clients\StartMenuInternet" /f /ve /t REG_SZ /d "IEXPLORE.EXE"



:: Make sure AudioSrv is started (workaround for some apps using audio)
net start audiosrv

:: Disable Driver Signing
xpeinit.exe -y

::--------------------------------
:: Create XPE shortcuts
::--------------------------------
%PM% "Creating Shortcuts..."
echo.>> %_LOGFILE%
echo [Shortcut Creation]>> %_LOGFILE%
echo - %TIME%: Begin>> %_LOGFILE%
start /wait xpeinit.exe -l
echo - %TIME%: End>> %_LOGFILE%

:end
ENDLOCAL

;)


And now, No BSOD :ph34r: it works fine :w00t:

#6 Sha0

Sha0

    WinVBlock Dev

  • Developer
  • 1682 posts
  • Location:reboot.pro Forums
  • Interests:Booting
  •  
    Canada

Posted 28 May 2010 - 12:07 PM

There's also WinVBlock.




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users