The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Change Windows 7 Logon Background

    Discussion in 'Alienware' started by findvikas, Mar 23, 2009.

  1. findvikas

    findvikas Notebook Deity

    Reputations:
    272
    Messages:
    1,184
    Likes Received:
    1
    Trophy Points:
    56
    Many of us have used LogonStudio in past to change the logon screen’s background image since Windows XP days
    There is a good news with Windows7 & Server 2008 R2.

    I have discovered a new registry key in Windows7 & Windows Server 2008 R2 which allows you to choose any background image of your choice.
    Source: http://www.withinwindows.com/2009/0...lly-support-logon-ui-background-customization

    To make it simple I have come up with this simple batch file (ahh… old DOS memories)

    Save the below script as ChangeLogonUI.bat

    Code:
    [B]@ECHO OFF
    @REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background /v OEMBackground /t REG_DWORD /d 1 /f
    @MKDIR %windir%\system32\oobe\info\backgrounds
    @COPY %1 %windir%\system32\oobe\info\backgrounds\backgroundDefault.jpg[/B]
    Run it as C:\>ChangeLogonUI.bat c:\myimage.jpg

    I have saved this Batch file to SendTo folder for easy access. Now just right click any JPG file under 256kb and send it to the changelogonui.bat file.


    To restore the original, which you might not want to do

    Save this in a separate file, RestoreToOriginal.bat may be

    C:\>RestoreToOriginal.bat
    Code:
    [B]@ECHO OFF
    @REG ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background /v OEMBackground /t REG_DWORD /d 0 /f
    [/B]
    Hope you find it useful & handy

    Here is a screenshot of one of my Logon Screens (worst VGA camera ever)

    [​IMG]
     
  2. davepermen

    davepermen Notebook Nobel Laureate

    Reputations:
    2,972
    Messages:
    7,788
    Likes Received:
    0
    Trophy Points:
    205
    that's cool! thanks.
     
  3. The_Moo™

    The_Moo™ Here we go again.....

    Reputations:
    3,973
    Messages:
    13,930
    Likes Received:
    0
    Trophy Points:
    455
    nice logon and thanks for your effort