Jump to content

Recommended Posts

Posted

I am looking for inspiration for the design of this years student and teacher backgrounds, I wondered what everyone else uses.

 

Post them up so I can be inspired :) we were thinking how boring our drab standard colours were.

Posted
I'm liking these abstract backgrounds. Are they something you've made, or downloaded off the internet and added your logo?

 

Found mine, did a search for creative commons abstract backgrounds.

Posted
We use BGInfo to overlay the school logo onto a plain blue background - how do you all get decent looking desktops for all screen resolutions? We run everything from 1024x768 up to 1080P here, so it'd look awful just using one static background.
Posted
We use BGInfo to overlay the school logo onto a plain blue background - how do you all get decent looking desktops for all screen resolutions? We run everything from 1024x768 up to 1080P here, so it'd look awful just using one static background.

 

I use a VBS script that looks at the screen resolution then applies the correct sized wallpaper for the type of screen.

Posted
I use a VBS script that looks at the screen resolution then applies the correct sized wallpaper for the type of screen.

 

Snap :)

 

Logon screen is easy as you just need to name them correctly for each resolution and Windows applies the correct one

Posted
Snap :)

 

Logon screen is easy as you just need to name them correctly for each resolution and Windows applies the correct one

 

Not quite, you are restricted on what resolutions you can sue, you cant use any old ones.

Posted
Not quite, you are restricted on what resolutions you can sue, you cant use any old ones.

 

True, although what's there covers most bases

 

backgroundDefault.jpg
background768x1280.jpg  (0.6)
background900x1440.jpg  (0.625)
background960x1280.jpg  (0.75)
background1024x1280.jpg (0.8)
background1280x1024.jpg (1.25)
background1024x768.jpg  (1.33-)
background1280x960.jpg  (1.33-)
background1600x1200.jpg (1.33-)
background1440x900.jpg  (1.6)
background1920x1200.jpg (1.6)
background1280x768.jpg  (1.66-)
background1360x768.jpg  (1.770833-)

Posted
I use a VBS script that looks at the screen resolution then applies the correct sized wallpaper for the type of screen.

 

Funny just started looking at this today so is that script on here?

Posted
Funny just started looking at this today so is that script on here?

 

Here you go:

 

Set objWMIService = GetObject("Winmgmts:\\.\root\cimv2") 
Set objSh = CreateObject("Wscript.Shell")
Set colItems = objWMIService.ExecQuery("Select * From Win32_DesktopMonitor where DeviceID = 'DesktopMonitor1'",,0) 
For Each objItem in colItems 
   intHorizontal = objItem.ScreenWidth 
   intVertical = objItem.ScreenHeight 
Next

strResolution = CStr(intHorizontal) & " x " & CStr(intVertical)

Select Case strResolution
Case "1024 x 768"
       strWallpaperPath = "C:\folder\1024x768.jpg"
Case "1280 x 1024"
       strWallpaperPath = "C:\folder\1024x768.jpg"
Case "1440 x 900"
       strWallpaperPath = "C:\folder\1024x768.jpg"
Case "1920 x 1080"
       strWallpaperPath = "C:\folder\1024x768.jpg"
Case Else
End Select

'Set the reg value
objSh.RegWrite "HKCU\Control Panel\Desktop\Wallpaper", strWallpaperPath, "REG_SZ"

'Apply the change
objSh.Run "%windir%\System32\RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters", 0, False

  • Thanks 3

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...