Recommended Posts

Open authui.dll located in C:\Windows\system32

UIFILE > 12400 - button set 1

UIFILE > 12401 - button set 2

UIFILE > 12402 - button set 3

Changing text colours

User Name : Line: 508

Status Text: Line: 523

Connect Message: Line: 63

Switch User Button: Line: 198

Lines should look like this: foreground = "white"

you can replace "white" with name of the colour or

you replace Lines with this:

foreground="argb(a,b,c,d)"

Line: must then look like this:

a=Alpha colour value

b=Red colour value

c=Green colour value

d=Blue colour value

Values are from 0 to 255

Changing Size of User List:

Line: 115

Changing height:

Line look like this:

<element resid="UserListTemplate" height="475rp" sheet="UsersStyle" layoutpos="client" layout="filllayout()">

here you can change hight of user list

value for hight looks like this:

height="475rp"

Change 475 with size you want

Change width:

Replace line 115 with this:

<element resid="UserListTemplate" width="475rp" height="475rp" sheet="UsersStyle" layoutpos="client" layout="filllayout()">

now you can change width of user list

value for width looks like this:

width="475rp"

Change 475 with size you want

Note:

changing size of user list will also affect password entering page and some other stuff!!!

I recommend minimum width and height of 330rp.

Changing positions of user list:

Line: 9

replace line with one of these:

Top left:

<element layoutpos="left" layout="verticalflowlayout(1,2,2,0)">

Top Middle:

<element layoutpos="client" layout="verticalflowlayout(1,2,2,0)">

Top Right:

<element layoutpos="right" layout="verticalflowlayout(1,2,2,0)">

Left:

<element layoutpos="left" layout="verticalflowlayout(1,2,2,2)">

Center (this is default position):

<element layoutpos="client" layout="verticalflowlayout(1,2,2,2)">

Right:

<element layoutpos="right" layout="verticalflowlayout(1,2,2,2)">

Bottom Left:

<element layoutpos="left" layout="verticalflowlayout(1,2,2,1)">

Bottom:

 
<element layoutpos="client" layout="verticalflowlayout(1,2,2,1)">

Bottom Right:

<element layoutpos="right" layout="verticalflowlayout(1,2,2,1)">

Status animation size:

Change size

Line: 75

change 20 at

width="20rp" height="20rp"

with size you want

if you don't want to have animation change "20rp" to "0rp" on both hight and width

Animation images are located in imageres.dll file

Change size of User picture on entering password page:

change size of overlay:

go to

Line: 627 and 628

Lines should look like this

width = "190rp"

height = "190rp"

change 190rp with size you want

Change position of user picture under overlay

go to Line: 641

Line: should look like this

padding="rect(32rp, 32rp, 32rp, 32rp)"

how margins work Left, Top, Right, Bottom

change 32rp

Change size of user picture inside overlay

go to

Line: 711 and 712

Lines should look like this

  
width = "126rp"
height = "126rp"

change 126 with size you want

Note:

Changing Size of user picture is important if you changed size of overlay

Change size of Password Submit Button:

Line: 113

Change 30rp in width="30rp"and height="30rp" to size you want

Change how far is submit button from password field:

go to

Line: 809

Line: should look like this

  
margin = "rect(4rp, 0rp, 0rp, 0rp)"

how margins work Left, Top, Right, Bottom

Password entering field:

Lines:

765: width of password field image

766: height of password field image

768: margins of password field image (margin = "rect(Left, Top, Right, Bottom)")

770: defines margins where the password entering field will be based on background

image of password field (borderthickness = "rect(Left, Top, Right, Bottom)")

Enable overlay of scroll bar default state:

Line:

911 and 912 and make new Line between these two Lines so that Line: 912 will be 913

now you have one empty Line: add this to that Line:

  
content = "resbmp(12212,2,-1,0,0,1,1)" 

1st Note:

By default this image is black so if you didn't edited this image you will have black square on scroll bar, edit bitmap 12212!!!

2nd Note:

After adding this will be you have to add +1 to all Lines that are mentioned here and are after Line: 912!!!

Disable Branding Picture (picture that says "Windows 7 ****" at the bottom of the screen):

This Will hide only picture without the buttons

Line: 86

replace line with this:

<element id="atom(Branding)" layoutpos="none"/>

Move Shutdown and shutdown Options buttons to the left:

replace Line 91 with this

<element layout="flowlayout(0,1,2,2)" layoutpos="left">

Status Text Background:

Line 79:

replace Line with this:

<element id="atom(StatusText)" width="600rp" background="resbmp(999,7,-1,0,0,1,1)" borderthickness="rect(0rp, 75rp, 0rp, 0rp)" padding="rect(0rp, 0rp, 0rp, 0rp)"/>

You will need to add bitmap(*.bmp) image named 999 to "Bitmap" resource group and it must be at least 600px width

Move Status Animation on top of status text:

Replace Line 77 with one of the following:

Top Center

<element id="atom(Status)" visible="false" Enabled="false" layout="verticalflowlayout(0,0,2,2)" minsize="size(0rp,36rp)">

Top Right

<element id="atom(Status)" visible="false" Enabled="false" layout="verticalflowlayout(0,0,1,2)" minsize="size(0rp,36rp)">

Top Left

<element id="atom(Status)" visible="false" Enabled="false" layout="verticalflowlayout(0,0,0,2)" minsize="size(0rp,36rp)">

Add Window:

Replace Line 15 with this:

</div><div><element id="atom(Window)" background="resbmp(998,7,-1,0,0,1,1)" borderthickness="rect(left, top, right, bottom)" </div><div>padding="rect(left, top, right, bottom)" layout="borderlayout()"></div><div>

You will need to add bitmap(*.bmp) image named 998 to "Bitmap" resource group

Changing Sizing margins:

change left, top, right, bottom in borderthicknes

Change Position marines:

change left, top, right, bottom in padding but be aware that position margins is distance from sizing margins, you can also use negative values

Note:

You will need to add "rp" after each value, Sample:

borderthickness="rect(12rp, 12rp, 12rp, 44rp)" padding="rect(15rp, 16rp, 71rp, 71rp)"

Changing fonts:

1st Way:

1.

Open file authui.dll.mui with restorator located in "C:\Windows\system32\en-US" (you may need to replace C:\ with your Windows 7 HDD partition letter and en-US with

your language folder) and expand "String"

2.

Find lines 64 - 68 and modify them, Description:

texte.jpg

Note!

This is not recommended to use if you want to release your logon to public

2nd Way:

1.

Cut text from UIFILE your editing in Restorator and past it to notepad

2.

Find and replace (press CTRL + H to open Replace window)

resstr(11800)

with

9;normal;shadow;Segoe UI

Used in Message, Short Message, Label, Locked Sub Message, Small Text, LargeText

resstr(11801)

with

9;normal;shadow|underline;Segoe UI

Used in Link, Label, Security Information, Command Links

resstr(11802)

with

11;normal;shadow;Segoe UI

Used in Label, Security Information, Command Links

resstr(11803)

with

12;normal;shadow;Segoe UI

Used in Message Caption, Connect Message

resstr(11804)

with

18;normal;shadow;Segoe UI

Used in Status Text, Locked Message, Large Text

3.

Cut text from notepad and past it in to Restorator

Note!

You will need to change font before you replace it, see description in 1st Way of changing fonts

Make User List vertical:

Replace Line 117 with this:

<selector id="atom(UserList)" sheet="UsersStyle" layout="verticalflowlayout(1,1,0,0)" padding = "rect(12rp, 0, 0, 0)"/>

Move User Image to the left side of the text:

Replace Line 120 with this:

<UserTile resid="UserTileTemplate" margin="rect(0rp,10rp,0rp,10rp)" layout="flowlayout(0,2,2)" sheet="UsersStyle">

Move Options Bar To Top:

Bar That have Windows 7 branding image Shut down buttons and accessibility button

Replace Line 82 with one of this

Top:

<element layoutpos="top" layout="borderlayout()">

Bottom:

<element layout="borderlayout()">

I will add some more stuff ASAP

Link to comment
https://www.neowin.net/forum/topic/879070-windows-7-logon-editing-guide/
Share on other sites

  • 2 months later...
  • 3 weeks later...

Thanks for this tutorial.

I really wanted to change the startup screen font.

Thanks

This doesn't look that different from an XP logon screen. What about a 64-bit version of Windows. Ole Reshacker won't work on 64-bit resources

this is for windows 7 not xp

is their a gui tool that does all the above?

ive not bothered with the whole skinningthemeing thing since the early days of xp.

im working on the tool https://www.neowin.net/forum/topic/911834-logon-workshop/

and sorry for delay i forgot about this topic

  • 3 months later...
  • Eric locked this topic
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Anthropic pulls Fable 5 and Mythos 5 after US export control order by Pradeep Viswanathan In April this year, Anthropic launched the Claude Mythos Preview frontier model with state-of-the-art cyber and coding capabilities for a select set of companies around the world. After preparing appropriate guardrails, early this week, Anthropic launched Claude Fable 5 and Mythos 5, its most capable AI models. Claude Fable 5 is for general users and comes with strict safeguards, while Mythos 5 is designed with fewer safeguards for cybersecurity and biology use cases. Today, Anthropic abruptly suspended access to its Fable 5 and Mythos 5 AI models for all customers after receiving an export control directive from the US government. The company received the directive from the government today at 5:21 p.m. ET, and the received letter did not provide any details regarding the national security concern. Anthropic understands that the government became aware of a method to bypass, or “jailbreak,” Fable 5, which might be the reason behind the directive. The order was issued under national security authorities and requires the company to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether they are inside or outside the United States. The restriction also applies to foreign national employees working at Anthropic. As a result, the company has disabled both models for all customers to ensure compliance. Access to previous Anthropic models like Opus and Sonnet is not affected by this government order. The company highlighted that it had developed strong safeguards to reduce the possibility that Fable is misused for tasks related to cybersecurity. In fact, many developers are complaining that the safeguards are going overboard. Additionally, the company worked with the US government, the UK AISI, multiple private third-party organizations, and internal teams to red-team Fable’s safeguards for thousands of hours. Finally, Anthropic noted that no testers have yet been able to find a universal jailbreak on Fable 5. As expected, Anthropic disagrees that a narrow potential jailbreak should lead to the recall of a commercial model used by hundreds of millions of people. It warned that applying this standard across the AI industry could effectively halt new frontier model deployments. Anthropic concluded by mentioning that it is working to restore access to Fable 5 and Mythos 5 as soon as possible and plans to share more details within the next 24 hours.
    • Brave Browser 1.91.172 is out.
    • Any Video Converter Free 9.2.3 by Razvan Serea Any Video Converter is an All-in-One video converting tool with an easy-to-use graphical interface, fast converting speed and excellent video quality. Any Video Converter supports all popular video formats and converts your videos to different video formats including MP4, MOV, MKV, M2TS, M4V, MPEG, AVI, WMV, ASF, OGV, WEBM, and more. It supports converting videos to customized percent (50%, 100%, 200%, and more) or resolution (480p, 720p, 1080p, 4K, and more); It supports encoding videos into x264, x265, h263p, xvid, mpeg, wmv, and more. Any Video Converter Free key features: Compatible with Windows 11/10/8.1/8/7 (32-64bit) User interface are available in 14 languages Convert all kinds of video formats including high-definition videos Extract audio from any videos and save as MP3/WMA for your mp3 player Take snapshot from any videos and build your own picture collection Support high-definition for both input and output Batch add videos from hard drive and batch convert Customize output parameters completely as you like Manage your output videos files by group or output profile Merge several video files into a single and long one Clip a video into segments Free Audio Filter: Adjust audio volume and add audio effects Crop frame size to remove black bars and retain what you want only Adjust the brightness, contrast, saturation Rotate or flip or add noise/sharpen effects Produce output video with subtitles of your own dialogue and much, much more... Any Video Converter Free 9.2.3 changelog: Fixed video download engine auto-update failures. Added custom speed control support in the speed change tool. Added support for downloading YouTube AI-generated subtitles. Added support for preserving original audio stream in the format convert tool (e.g., Dolby Atmos, DTS:X). Fixed other bugs and improved overall performance. Download: Any Video Converter Free 9.2.3 | 7.6 MB (Freeware) View: Any Video Converter Free Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Not sure what country you’re in but in many countries you can absolutely jail the sellers behind businesses… in fact I’d say in most countries you can do that
    • I guess we are done since you refuse to read my comment you replied to or my other comment in another thread you were also a part of here.
  • Recent Achievements

    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
    • Rookie
      Rimplesnort went up a rank
      Rookie
    • One Year In
      Markus94287 earned a badge
      One Year In
    • One Month Later
      Markus94287 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      506
    2. 2
      +Edouard
      175
    3. 3
      PsYcHoKiLLa
      148
    4. 4
      ATLien_0
      92
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!