Setting up Sap Splash screen.

Hi All,
Can any guide me how to setup a splash screen to display the system information?
Thanks in advance.
regards,
Kalyani.

Following is the procedure for setting up splash screen:
1. use tcode SE61
2. Select documnet class ' general text'
3. Enter name : 'ZLOGIN_SCREEN_INFO
4. add the information to be displayed.
regards,
Shashi.

Similar Messages

  • SAP splash screen gifs?

    Anyone have a collection of SAP splash screen gifs?
    Id like to play around and customize my sandbox system using different splash screens.
    Most gifs I have do not have the appropriate mime type associated with it.
    Is the procedure still the same in NW04s?
    Add via smw0 and use new pic via sm30 manipulation of SSM_CUST?
    Thanks!!

    Hi Fidel
    I know this will not be so much help. But try to find the standard file at your frontend SAP GUI directory and put the new one in place of it after taking its backup.
    Regards
    *--Serdar <a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d">[ BC ]</a>

  • Sap splash screen

    hi,
    in sap initial logon screen next to logon id & password
    i want to display different client detail as text
    like 100 -develo/200 sanbox /900 prod etc
    Pl tel me the steps how this can be done

    If you want to enter text to the screen after logging in we can only keep JPEG and GIF files. Enter the text you want in a paint and save it as JPEG or GIF file and follow the below steps.
    Go to T-codeSMW0
    select X - Binary data for WebRFC application
    Hit Enter
    Click Execute
    Click Settings -> Maintain MIME types
    Click the Create button
    Fill in :- TYPE : image/gif       EXTENSION : .GIF
    Click Save
    Click Back to the Binary data for WebRFC
    Click Create
    Fill in :- Obj. name : ZXXXX.GIF Description : Company Logo
    Click Import and specify the filename where your GIF file is located.File type is BIN. Finish press the Transfer button.
    If successful, your logo will be shown in the Binary data for WebRFC.
    Transaction codeSM30 - Table/View - SSM_CUST
    Click Maintain
    Click New Entries
    Name                     Value to be set
    START_IMAGE      ZXXXX.GIF
    RESIZE_IMAGE     NO
    once just log off and login again.
    Thanks,
    Pundari

  • AMT hangs at splash screen

    Hi CRM Mobile Experts,
    I have a workstation installed with MSA and MSV. The same workstation also serves as the development workstation where the Mobile Application Studio and AMT is installed. The problem that i am having now is the access to AMT.
    The very first time when i installed AMT without MAS, i was able to access the AMT with my userID and password and i also can see all the predefined roles.
    Then, i uninstall AMT and proceed to install MAS with the AMT again and then point to the Mobile Repository Server accordingly. Now that after the installation of MAS (Mobile Application Studio), i am unable to load the AMT. When i clicked on the shortcut of the AMT application, it just hangs on the SAP splash screen.
    I have the following configuration in my registry:
    security --> AMTARS
    dns: ars_db
    Owner: dbo
    user: arsadmin
    password: <blank>
    Did i missed anything in my setup? Please advice why i am unable to load the AMT. I have also applied SAP Note 65916 and 657434.
    Please help!

    Hi Rohit,
    It is pointing to an active server. I ran a data source check and here's the results:
    Microsoft SQL Server ODBC Driver Version 06.01.7600
    Running connectivity tests...
    Attempting connection
    Connection established
    Verifying option settings
    Disconnecting from server
    TESTS COMPLETED SUCCESSFULLY!
    I'm still wondering why it's not loading the AMT!

  • Set search help dynamically to SAP Standard Screen

    Hi,
    I have one issue where I have to Create f4 help For a field present on SAP standard screen.
    Please advice how to do that.
    Can i dynamically set Search help in any screen-exit of the standard screen?
    Please help.
    Screen No is 130
    and Program is SAPLQM03.
    Here I want to attach a Zsearch help to a standard   FIELD RQM01-LS_KDPOS.
    Thanks,
    Ishani

    Hi Ishani,
    The field that you mentioned here in structure RQM01 is having a check table VBUP. So if some values are there in that table, then that will appear as F4 help to you. Consult with your functional and check how values are coming to this table VBUP. Othertahn this, I am afraid you will not be able attach any help.
    Regards,
    Abijith

  • ADD Splash Screen to the SAP B1 DE  Simple Installer.

    can i add a Splash Screen to the SAP B1 DE Simple Installer ?
    if yes how to do it.
    when i deploy my addons i want the installer to accept an installation serial & install the addons only if the serial key entered in valid.
    has someone done this thing before or can someone help me in doing this.
    thanks in advance
    Ketan Joshi

    Hi Ketan,
    You can add as many screens as you like in the simple installer. You only need to open the generated project and add you screen as the other steps already there. To desing your screen you only have to manage with .NET windows design.
    Regards
    Trinidad.

  • Splash screen ABAP (Was 6.20) SAPGui 6.20

    I love splash screens. A small pop-up window with a picture should come for say 5  to 10 seconds and disappear by a timer task.
    Giving such timer splash screens at START or END makes the application attractive. I do it in VB PB & Java.
    How to do Slash screen in ABAP SAP GUI 6.20 WAS 6.20?
    Should be thrown up as a "floating" popup.
    Regards & Hopeful
    -jnc

    With good tips from Thomas Jung
    I made 2 function modules to suit my whims.
    SAP being a serious Businesss Software you cannot have too many JPGs floating around! One or two is fun.
    In Function group uou need two screens 0806 & 2009 which are essentially blank.
    I put 2 title Bars - 0806 "SAP - JOB in Progress"; 2009 - "SAP - JOB OVER!!"
    Code listing for function: ZJNC_START_SPLASH
    Description: Show Splash at Start
    FUNCTION zjnc_start_splash.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(IMAGEFILE) TYPE  C DEFAULT 'THANKS.JPG'
    *"     REFERENCE(WIDTH) TYPE  I DEFAULT 415
    *"     REFERENCE(HEIGHT) TYPE  I DEFAULT 274
    *"     REFERENCE(TIMEOUT) TYPE  I DEFAULT 3
    *"     REFERENCE(CALLBACK) TYPE  C
          Global data declarations
      MOVE imagefile TO g_name.
      MOVE width TO picwidth.
      MOVE height TO picheight.
      MOVE timeout TO pictimeout.
      MOVE callback TO piccallback.
      TRANSLATE piccallback TO UPPER CASE.
      PERFORM getpicurl.
      CALL SCREEN 0806.
    ENDFUNCTION.
    Code listing for function: ZJNC_END_SPLASH
    Description: Show Splash at End
    FUNCTION ZJNC_END_SPLASH.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(IMAGEFILE) TYPE  C DEFAULT 'THANKS.JPG'
    *"     REFERENCE(WIDTH) TYPE  I DEFAULT 415
    *"     REFERENCE(HEIGHT) TYPE  I DEFAULT 274
    *"     REFERENCE(TIMEOUT) TYPE  I DEFAULT 3
          Global data declarations
      MOVE imagefile TO g_name.
      MOVE width TO picwidth.
      MOVE height TO picheight.
      MOVE timeout TO pictimeout.
      PERFORM getpicurl.
      CALL SCREEN 2009.
    ENDFUNCTION.
    Code listing for: LZUTILTOP
    TOP level Include of Function Group ZUTIL
    Author Jayanta Narayan Choudhuri
            Flat 302
            395 Jodhpur Park
            Kolkata 700 068
          Email [email protected]
          URL:  http://www.geocities.com/ojnc
    FUNCTION-POOL zutil.                        "MESSAGE-ID ..
    TYPE-POOLS: abap.
    DATA: graphic_url(255),
          g_result   TYPE i,
          g_linesz   TYPE i,
          g_filesz   TYPE i,
          g_name(100).
    TYPES: t_graphic_line(256) TYPE x.
    DATA: graphic_line TYPE t_graphic_line,
          graphic_table TYPE TABLE OF t_graphic_line.
    DATA: picwidth        TYPE i,
          picheight       TYPE i,
          pictimeout      TYPE i,
          piccallback(60) TYPE c,
          first           TYPE boolean.
          CLASS ZCL_ES_SPLASH_SCREEN  DEFINITION
    CLASS zcl_es_splash_screen DEFINITION.
      PUBLIC SECTION.
        EVENTS on_close.
        METHODS constructor
          IMPORTING
            !i_num_secs  TYPE i DEFAULT 5
            !i_url       TYPE c
            !i_width     TYPE i
            !i_height    TYPE i.
      PROTECTED SECTION.
        METHODS handle_end_of_timer
          FOR EVENT finished OF cl_gui_timer.
      PRIVATE SECTION.
        DATA container TYPE REF TO cl_gui_dialogbox_container.
        DATA image     TYPE REF TO cl_gui_picture.
        DATA timer     TYPE REF TO cl_gui_timer.
    ENDCLASS.                    "ZCL_ES_SPLASH_SCREEN  DEFINITION
    CLASS ZCL_ES_SPLASH_SCREEN IMPLEMENTATION
    CLASS zcl_es_splash_screen IMPLEMENTATION.
      METHOD constructor.
        DATA: image_width     TYPE i,
              image_height    TYPE i.
        COMPUTE image_width  = i_width + 30.
        COMPUTE image_height = i_height + 50.
        CREATE OBJECT container
           EXPORTING
             width                       = 10
             height                      = 10
             top                         = 10
             left                        = 10
             name                        = 'DialogSplash'.
        CALL METHOD container->set_caption
          EXPORTING
            caption = g_name.
        CREATE OBJECT image
          EXPORTING
            parent = container.
        CALL METHOD image->load_picture_from_url
          EXPORTING
            url = i_url.
        image->set_display_mode( image->display_mode_normal_center ).
        cl_gui_cfw=>flush( ).
        container->set_metric( EXPORTING metric = image->metric_pixel ).
        DATA: myleft TYPE i,
              mytop  TYPE i.
        COMPUTE myleft = ( 800 - image_width ) / 2.
        COMPUTE mytop  = ( 600 - image_height ) / 2.
        IF myleft < 0.
          MOVE 0 TO myleft.
        ENDIF.
        IF mytop < 0.
          MOVE 0 TO mytop.
        ENDIF.
        container->set_position(
          EXPORTING
            height            = image_height
            left              = myleft
            top               = mytop
            width             = image_width ).
        cl_gui_cfw=>update_view( ).
        CREATE OBJECT timer.
        timer->interval = i_num_secs.
        SET HANDLER me->handle_end_of_timer FOR timer.
        timer->run( ).
        cl_gui_cfw=>flush( ).
      ENDMETHOD.                    "constructor
      METHOD handle_end_of_timer.
    I wanted NAMASTE to remain until JOB was complete.
       IF container IS NOT INITIAL.
         container->free( ).
         CLEAR container.
         FREE  container.
       ENDIF.
       IF timer IS NOT INITIAL.
         timer->free( ).
         CLEAR timer.
         FREE  timer.
       ENDIF.
       cl_gui_cfw=>flush( ).
        RAISE EVENT on_close.
      ENDMETHOD.                    "handle_end_of_timer
    ENDCLASS.                    "ZCL_ES_SPLASH_SCREEN  IMPLEMENTATION
          CLASS lcl_event_handler DEFINITION
    CLASS lcl_event_handler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS: on_close FOR EVENT on_close OF zcl_es_splash_screen.
    ENDCLASS. "lcl_event_handler DEFINITION
    CLASS lcl_event_handler IMPLEMENTATION
    CLASS lcl_event_handler IMPLEMENTATION.
      METHOD on_close.
        IF sy-dynnr = 2009.
          LEAVE PROGRAM.
        ELSE.
          MOVE abap_false TO first.
          PERFORM (piccallback) IN PROGRAM (sy-cprog).
        ENDIF.
      ENDMETHOD. "on_close
    ENDCLASS. "lcl_event_handler IMPLEMENTATION
    DATA: splash TYPE REF TO zcl_es_splash_screen.
    *&      Module  STATUS_0806  OUTPUT
    MODULE status_0806 OUTPUT.
      IF first IS INITIAL.
        first = abap_true.
        SET TITLEBAR 'TITLE0806'.
        CREATE OBJECT splash
            EXPORTING
              i_num_secs = pictimeout
              i_url      = graphic_url
              i_width    = picwidth
              i_height   = picheight.
        SET HANDLER lcl_event_handler=>on_close FOR splash.
      ENDIF.
    ENDMODULE.                " STATUS_0806  OUTPUT
    *&      Module  STATUS_2009  OUTPUT
    MODULE status_2009 OUTPUT.
      IF first IS INITIAL.
        first = abap_true.
        SET TITLEBAR 'TITLE2009'.
        CREATE OBJECT splash
            EXPORTING
              i_num_secs = pictimeout
              i_url      = graphic_url
              i_width    = picwidth
              i_height   = picheight.
        SET HANDLER lcl_event_handler=>on_close FOR splash.
      ENDIF.
    ENDMODULE.                " STATUS_2009  OUTPUT
    *&      Form  getpicurl
    FORM getpicurl.
      OPEN DATASET g_name FOR INPUT IN BINARY MODE.
      REFRESH graphic_table.
      CLEAR   g_filesz.
      DO.
        CLEAR graphic_line.
        READ DATASET g_name INTO graphic_line ACTUAL LENGTH g_linesz.
        ADD g_linesz TO g_filesz.
        APPEND graphic_line TO graphic_table.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE DATASET g_name.
      CLEAR graphic_url.
      CALL FUNCTION 'DP_CREATE_URL'
        EXPORTING
          type                 = 'IMAGE'
          subtype              = 'GIF'
        TABLES
          data                 = graphic_table
        CHANGING
          url                  = graphic_url
        EXCEPTIONS
          dp_invalid_parameter = 1
          dp_error_put_table   = 2
          dp_error_general     = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        EXIT.
      ENDIF.
    ENDFORM.                    "getpicurl
    Extracted by Direct Download Enterprise version 1.2 - E.G.Mellodew. 1998-2004 UK.

  • Tecra M3 - Stuck at Toshiba BIOS Splash Screen

    Not sure what to do here with this one...
    Bit of history... we bought my niece a used laptop for surfing/movies which worked fine when I had it a few weeks setting it up and such, she had it a week and it's now dead. Some days it works, some days won't even turn on. So, after much work determined it to be a motherboard issue, and since it was a $200 DELL, we optedto buy another laptop.
    I grabbed a used Tecra M3, been playing with it all week, games, surfing, you name it, seemed a gtood solid performer. I give it to her, she goes upstairs, plugs it in, powers on and just sits at the splash screen.
    Two nephews have no issues with theirs, wondering if possible the power outlet surging and killing the systems? She's 16, so (hopefully) knows how to handle a laptop carefully.
    Regardless... can't afford another dead laptop. Stuck at startup BIOS splash screen, won't go beyond that. Won't let me into the BIOS, and if I hit too many keeps too many times, laptop just beeps per keystroke.
    Any advice?
    Solved!
    Go to Solution.

    Well, not much of a support forum... 2nd posting and neither issue I had had any responses at all.
    In case someone see's this because having the same issue, the hard drive was very loose, barely making contact and fell off when I touched it. Pushed it all the way back in and works fine. Pegs on the panel designed to prevent the drive from becomming lose, not very good, still allowed the drive enough wiggle room to shake loose.

  • Splash screen for a desktop app (non mobile app)

    I'm using fb4linux, 4.5.1A SDK, I'm developing a non-mobile (i.e. desktop application) and I would like to add a splash screen to it.
    I've added mobilecomponents.swc to the library path, and the application starts like this:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
       width="400" height="400" xmlns:local="*"
       preloader="spark.preloaders.SplashScreen"
       splashScreenImage="@Embed('assets/splashscreen.png')"
       splashScreenMinimumDisplayTime="1500">
    When I debug it, no splash scren is shown and I get the following error:
    ReferenceError: Error #1065: Variable flash.display::StageAspectRatio is not defined.
        at spark.preloaders::SplashScreen/prepareSplashScreen()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:340]
        at spark.preloaders::SplashScreen/Stage_resizeHandler()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:407]
    The problem seems to be triggered by the line that sets the preloader, because if I remove it, the error is gone (although no splash screen is shown either).
    Any ideas how to make it work?
    Thanks!

    import [install folder]\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks\libs\mobile to your build path
    Note: You must add the frameworks\libs\mobile\mobilecomponents.swc to the library path of the application to support the splash screen in a desktop application.

  • BLACK SCREEN on start up with 3 beeps, FREEZES when power unplugged, IF IT BOOTS splash screen freezes, OVERHEATING REQUIRED TO BOOT - 0x7B, Event 41 kernel-power

    Issue: One day I unplug the power, the screen freezes and I get frozen music sound. I shut down, start up, I get 3 beeps (1 short 2 long), which indicates a Video failure according to the Thinkpad Laptop beep code list.
    How I solve the issue day-to-day: I turn the heat up - I disconnect the battery and hard drive and plug in the power then turn it on. I will wait until the underneath is searing hot with a blanket blocking the fan's flow of air, I mean way hot because any
    cooler and it won't start. Plug stuff back in, Hard drive first, Battery second, turn off with power button hold, unplug power, replug power. 
    I turn it on, no beeps, it goes past the first Lenovo screen, then gives me a prompt because it "didn't shut down properly" and continue regular startup. What happens next is the Windows logo appears,
    and just as the animated windows logo starts to move (you see 2 small colored dots on the screen), it freezes. I see this every time, I know naturally that it means that the laptop is still too hot to go past that point, so I shut it down and try again. After
    about 5 - 10 tries it will go past the splash screen and into the login area, then it's all fine. 
    Sometimes when I unplug the power from the back by accident it will freeze. By accident I mean that the connector wiggles it's self out easily. This unplug freezing thing started happening about 1 week before the 3 beep black screen problem started rolling,
    so I'm putting 2 together.
           Errors:
    I got a Blue Screen of Death the first time I started it up with the overheating ritual, but I never got it since. It was 0X7B.
    I got another Blue Screen of Death about a week ago, but came as it was on already and I had been using it, and said something about disabling Cache or Shadowing in BIOS. I never got it since.
           Event Viewer events found:
    1. Kernel-Power, Summary page.
    There are critical events for a few things like Kernel-Power, Event ID 41, Task Category (63). There are 19 of them, each day 1 or 2 of them but mostly 1, so this maybe corresponds to my daily ritual.
    "The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly."
    2. Kernel-Processor-Power - Event ID 37, task category (7)
    "The speed of processor 1 in group 0 is being limited by system firmware. The processor has been in this reduced performance state for 71 seconds since the last report."
    3. LMS - HCMI - Event ID 2, Task Category: none
    "LMS Service cannot connect to HECI driver".
    I came across a very sluggish performing control panel for Nvidia before and after this problem, and I tried installing a newer version, which I had to jump through a few hoops to do, like uninstalling first, not just updating. At first it said that the
    driver wasnt for the system, which was wrong. I made it work somehow, but it was still sluggish. I rolled it back to an earlier driver, and now it works fine. No sluggish performance / slight freeze window thing going on.
                 MSCONFIG.exe, Boot Advanced Options: I have tried twice to change this 1 setting, check box "Number of processors" and change to 2 processors, because I do have 2 processors. I have been able to change
    this in the past, but it does not save the setting now, and I believe this option was selected before I started having problems, and settings did not disappear then.
    What could this be. The small round BIOS battery? The video card like everyone presumes? (I.E. the entire motherboard replacement), Software? The wiggly power input area? (Not enough power getting in?), Firmware of some sort? The BIOS software being wrong?
    SYSTEM INFO:
    Thinkpad T61p 6457-A24, Intel core 2 duo (T7700) 2.4GHz, Intel 120GB SSD 6Gb/s, NVIDIA Quadro FX 570M (256 MB),
    Windows 7 64 bit Home Premium (6.1, Build 7601), BIOS Ver 1.00PARTTBLx
    Display: 1680 x 1050 (32 bit 60 Hz), Integrated RAMDAC, Main driver: nvd3dumx.dll,nvwgf2umx,nvwgf2,
    Version 8.17.12.9688, Date 5/31/2012, DDI version 10, Driver model WDDM 1.1
    Please excuse the small text at the beginning, there isn't an option to un-do that error.

    You are very wrong about that mystified. What do YOU think made my computer work without beeping at all hu? (I bet you're gonna tell me). I figured it out.
    RE-INSTALL WINDOWS 7 OS.
    SOLVED.
    DOESN'T BEEP ANY MORE.
    THAT IS A PART OF microsoft ISN'T IT.
    ::: EGO KILLER 9000 :::

  • Desktop Manager Will not Load. Hangs on splash screen when loading, then crashes

    My desktop manager is not loading, and hangs whenever it is attempted to load. I have done a clean uninstall, removed rim registry entries, and did a fresh download and install 3 times with full shut downs between each attempt. I am running Windows 7 service pack 1 with an HP Laptop. It is an HP Pavilion dv6 Notebook PC. Product Number LY080UA. I hope that is enough information, but I will give more if asked and informed how to gather such info.
    When I right click on the Desktop Manager Icon, I choose to run as Admin. Once it loads the splash screen shows. After a little bit (4-6 seconds) a small Icon appears in my systems tab at the bottom right of my screen. This stays for a little while and then goes away. After this happens the Splash screen hangs, and get a black border around it. If I click on the Splash screen it grey out and says not responding, prompting windows to ask me if I want to wait for the program or close. If I choose to wait, it will sit there and do nothing. If I close it will prompt windows to "look for an error" but has not yet been able to return an answer.
    When I log into safe mode, Desktop Manager loads, but does not work well as only a bare bones set of drivers are enabled. If I turn off all but the non-essential services off using services.msc it will load, but again the services needed for it to run and the services for windows to be fully functional are not on at all.
    I have attempted to turn off all but the Desktop manager in the start up, using msconfig, but that does not help either.
    I am at my wits end here, and would really like some help with this. It loads up (desktop manager) on my Desktop, but I am unable to log that mammoth box around with me while I travel.
    Thank you for your time and efforts, I will be very grateful for any and all help.

    I'm having the exact same problem here! I'm running Windows 7 Ultimate SP1 x64. Please help! This was posted a month ago.

  • W540 stuck on ThinkPad splash screen

    I've got W540 (32GB RAM, 500GB HDD) running Windows 7.1 64bit that is constantly getting stalled at the ThinkPad splash screen during powerup.
    It will often stall at the "ThinkPad" splash screen.  
    Other times it will stall at the "ThinkPad" splash screen with the "To interrupt normal startup, pess Enter" message displayed.
    I've seen other entries that reference this issue with:
    - using a SSD, I'm a standard HDD.
    - a broken USB port.  Mine all look OK (is there a way to actually test them?)
    I've updated to the latest Bios and reset the Bios defaults with no change.
    I've run the hardware diagnostic tests and found no errors.
    When I say "stall" on the splash screens I sometimes find if I leave it alone long enough (maybe 5+ minutes) it will continue to the normal Windows boot up.
    This is the 2nd W540 out of a pool of laptops to display symptoms similar to this.
    Anyone got information on what may cause a stall at the ThinkPad splash screen?
    Thanks.

    Not knowing your exact set up, but KNOWING that this is a blind black box with no activity light like a normal workstation, you need to do workarounds.
    Normally, on my older workstation, I could see the HD light blink and the rate would give me an inkling of the process.
    The WORKAROUND: we now need to calibrate your computer clock to your watch, or use a cell phone time keeper which would already be synced if the W540 is connected to the WiFi (no switch so the W540 has to be connected, unless there is no access point).  As an aside, I have found that when there are large MS updates, like last Tuesday, or other such WiFi connected updated, the compute also hangs with the user having NO KNOWLEDGE that the WiFi is talking / or calling home to some cloud device.
    Back to the workaround: Boot the system, and when there appears to be a crash or hang in the sequence, note the time of the 'event' and also note the time when it appears to restart.  Once properly booted, and I cannot tell you how often this has happened to my W540, check the even times in the [Event Viewer].  Too long to explain, Google the term "Win 7 Event Viewer", or check this:
    MS Help - Event Viewer
    Then find out where the computer chokes and restarts by checking the time in the events and the cause.  These are i/o routines which the Lenovo Gods have decide to shield us from such WORKSTATION task.
    FWIW, often I get <Program Not Responding>, when in fact it is performing a numbers intensive task.... yet I cannot tell what is happening as there is no i/o light. Usually unlocks when the task is finished, which may be what is happening on your system.  You need to find out the task that is  causing the wait.
    Odd, the Lenovo Gaming machines Y50 have these lights, albeit atrophied:  see lower 4 indicator lights....

  • Pavillion Elite e9120y Hangs at HP splash screen, I've tried it all...

    About a month ago I came home to find my PC stuck on the HP splash screen. After hours of trial and error I managed to repair the boot sectors by manually inputing codes into a command prompt. Unfortunately, I had to go to work immediatly after. When i returned, the screen was stuck at the splash screen again, and I haven't seen windows yet..
    This desktop is about 2 years old now (no longer under warantee), although its relatively lightly used. At the time of failure it was running Vista 64 Bit. None of the hardware has been ugraded/modified in any way.
    Only sometimes can I reach any of the splash screen menus (BIOS, Diagnostics, etc). These actions, and reaching the post screen, can only be executed by unplugging the power cord from the PSU for X amount of time (usually 5-10 mins, which is annoying to do EVERY time..)
    Things I've tried:
    -Removing all plugged in components except the stock keyboard and monitor
    -Re-seating all of the components/wires
    -Tested Mobo (removed memory, it beeped and made me happy ha)
    -Individually seated each RAM stick in each slot.
    -Repairing boot sectors
    -Removing CMOS battery to reset
    -Removing biult in media card reader (rare, yet prospectable issue)
    -Many of the things in the recovery disk
    -Removing USB ports from Mobo incase of short circuit (I think I did that correctly..)
    Notes:
    -Ever since I was able to first repair the boot sectors, my PC will NOT make it to the Windows Recovery Environment (The disk reading progress will freeze at a random spot on the progress bar and will not complete)
    -Diagnostics froze after the Memory test completed
    -*cringes* I have not backed up ANYTHING due to lack of funds for an external HD (though I've purchased one now incase I make it to my OS), so reformatting is really not an option.. Too many important school documents
    -I have close to 10 years of intermediate software/hardware building/troubleshooting experience, but there are still many things that I do not know or may have overlooked! Any help is appreciated!
    -*Sometimes* the post screen/BIOS does not display my 2 optical drives and/or my 1 hard drive device
    -It's new favorite thing to do is say "Reboot and select proper media device," even though my boot order is correctly set in BIOS
    Quick recap:
    -HP Elite 9120y Vista 64 bit
    -Cannot boot to Windows (most commonly hangs at splash screen)
    -I've tried as much as I can think of/find online, and I'm tearing my hair out. Any help would be amazing!
    I'm sure I missed something, though I tried to cover it all for anyone willing to help. PLEASE!!!! 
    Thanks,
    -Andrew

    Well I knew that there were quite a few problems with mobos used by HP, but I was unaware of the lawsuit. Unfortunately, its far past its warrantee. It's just unfortunate because all of the components are in great shape and it was treated very well. And aside from Windows Vista, it performed great all along until the day it decided to do this. I have literally tried everything, the next step is diagnosis from my computer engineering friends hah. You'd think being a student at a tech school would aid my effort.  So far, no help..
    There appear to be as many solutions to this problem as people walking the planet.. and none of them work!
    Anyone who has fixed this problem please leave any information. Even if I have already tried that and it didn't solve my problem, it's worth a second shot. This computer was not cheap!

  • NB200 freezes at Toshiba splash screen.

    Hi,
    I have an NB200-11L that's been sitting around with an annoying problem for a while now.
    When I power on the laptop it freezes at the 'Toshiba - leading innovation' BIOS splash screen and goes no further.
    I get the same problem with or without AC power
    I've tried replacing the HDD but still get the problem.
    With no HDD in the system it tries to boot from the network & also allows me access to the BIOS (currently version 1.20)
    Anyone else had issues like this & been able to resolve it ?
    Thanks in advance :)
    Chris

    Few days ago I saw the same problem on my friends Satellite A205 (US model). After removing HDD I was able to enter BIOS settings.
    Ive set BIOS to default settings, replaced the HDD with new one and now everything works perfectly.
    HDD was defective and obviously HDD identification by BIOS has blocked the whole system.
    I recommend you to obtain new HDD and do the same.

  • Satellite Pro L300-1FN does not boot - hangs at BIOS splash screen

    My Satellite pro L300-1FN is refusing to boot up. When switched on the laptop displays the toshiba/insyde H20 BIOS splash screen and the "Press F2 go to Setup Utility, F12 go to boot menu" message and flashes the hard disk access light but does not attempt to continue loading. I have left the bios at the splash screen but it does nothing for many hours on AC or runs the battery flat while on battery.
    Is there a way of re-setting the BIOS on this unit? If it were a desktop unit I would remove the CMOS battery to force a BIOS reset but this is impossible on a laptop. The hard disk is fine as I have connected it to another system to remove valuable data.

    *I managed to fix this issue* ,,, thanks to some other dudes on other forums
    What i did was Format a Floppy disk as MS-DOS boot using a Windows XP PC and USB floppy drive, then downloaded the latest BIOS for my L300-1BW laptop model, copied *.fd bios image to the floppy disk and renamed it to BIOS.fd.
    Connect FDD to the toshiba laptop with out AC connected. Held Power button for 12 seconds, connected AC adapter, then held Fn+F, powered on , and kept the Fn+F keys held down for about 10 seconds into the reading of the floppy drive just to be sure, then let go. The screen was black throughout the process. I left this for a few minutes, or until it had finished, the laptop rebooted itself, and voila, it now goes passed the TOSHIBA POST logo screen :)
    I hope this helps others with Toshiba Laptops. should work for any Toshiba laptop.

Maybe you are looking for