Skip to main content

Window Logon Message using Resource Hacker

Window Logon Message using Resource Hacker

Step1. Download Resource hacker http://www.angusj.com/resourcehacker/
Step2:- Open Resource Hacker and click open.

Step3:- Choose C:>>windows>>system32>>logonui.exe

Step4:- Choose logonui.exe>String Table>1>1033 
Step5:- change the word ‘Welcome’ to ‘Your Own message‘
Step6:-After Changing the appropriate options,Compile the script by Compile script option.

Step7:- Save as the file at another location. Please ensure that it must not be the original location of logonui_new.exe

Step8:- Now open Replacer tool
Step9:- Drag & Drop logonui.exe file from system32 in Replacer than press Enter Key
Step10:- Now Drag & Drop new Save as file on Replacer. than press enter
Step10:-Press y and reboot the System

The next time you ON your system Welcome message will be changed

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv