Windows Thread, BGinfo help! in Technical; Hi All,
This problem is really annoying me and im sure its something simple,
I want to run bginfo at ...
-
2nd January 2008, 11:13 PM #1 BGinfo help!
Hi All,
This problem is really annoying me and im sure its something simple,
I want to run bginfo at startup so ive made a startup script as follows:
Code:
start "\\nelson\Netlogon\BGinfo.exe \\nelson\Netlogon\bginfo\logon.bgi /timer:0"
Right, ive asigned it in group policy to machines but its just not working...i dont want to deploy it to the local machine i just want to run it from a share from a server, im sorry if this has been discussed before but i cant for the life of me figure it out! :@:@
-
-
IDG Tech News
-
3rd January 2008, 12:24 AM #2
- Rep Power
- 16
Re: BGinfo help!
I think the quotes are only requirde for a window title. It could be that the command processor thinks that the bginfo command is the title and has thrown a syntax error because it can't find what it thinks is a command.
-
-
3rd January 2008, 01:05 AM #3 Re: BGinfo help!
Insted of calling it from a script, if you program it to be directly run as a logon script its self within group policy, it will work. Put in;
\\nelson\Netlogon\BGinfo.exe as the file name and
\\nelson\Netlogon\bginfo\logon.bgi /timer:0 in the box marked perameters.
This is how I had mine setup, although we stopped using it now as it caused us a few problems. (nothing technical, but we found if the students knew the machine names, a few of them were exploiting the messaging functions, so we turned off BGinfo and re-named our machines, we do use the messageing functions legitimately, so we didn't want to loose them!)
Mike.
-
-
2nd October 2008, 02:04 PM #4
- Rep Power
- 14
I cannot seem to get this to work at all.
I have it set on login script as above:
\\server\netlogon\bginfo\bginfo.exe
\\server\netlogon\bginfo\student.bgi /timer:0
but nothing shows, just normal blue desktop. Do any group policys interfre with this? we were using gpo wallpaper but it just gives us a headache.
all I need is to be able to have the wallpaper on a server share (as we use it for important info and to advertise school events) so we can change it, and just display the machine name and username on the screen
Any ideas?
-
-
2nd October 2008, 02:08 PM #5 I just create a shortcut of bginfo.exe and dump it in the Startup folder for all users on my servers 
Works fine!
-
-
2nd October 2008, 02:08 PM #6 I think bginfo.exe must be copied to the local machine. It's only 700K so won't cause any problems, even on wireless.
This is what I use:
Code:
@ECHO OFF
net time \\SERVERNAME /set /yes
REM * Sets Background desktop *
if exist %systemroot%\bginfo.exe goto BGINFO
copy \\SERVERNAME\netlogon\BGINFO\BGINFO.EXE %SYSTEMROOT% /Y
:BGINFO
%SYSTEMROOT%\bginfo.exe /i"\\SERVERNAME\netlogon\bginfo\Adminlogon.bgi" /timer:0
REM * Sets Background desktop *
%SYSTEMROOT%\bginfo.exe /i"\\SERVERNAME\netlogon\bginfo\logoff.bgi" /timer:0
-
-
2nd October 2008, 02:18 PM #7
- Rep Power
- 14

Originally Posted by
Michael
I think bginfo.exe must be copied to the local machine. It's only 700K so won't cause any problems, even on wireless.
This is what I use:
Code:
@ECHO OFF
net time \\SERVERNAME /set /yes
REM * Sets Background desktop *
if exist %systemroot%\bginfo.exe goto BGINFO
copy \\SERVERNAME\netlogon\BGINFO\BGINFO.EXE %SYSTEMROOT% /Y
:BGINFO
%SYSTEMROOT%\bginfo.exe /i"\\SERVERNAME\netlogon\bginfo\Adminlogon.bgi" /timer:0
REM * Sets Background desktop *
%SYSTEMROOT%\bginfo.exe /i"\\SERVERNAME\netlogon\bginfo\logoff.bgi" /timer:0
Do you run this in the login script as a bat?
also, what are the two bgi's? I only have one
-
-
2nd October 2008, 02:29 PM #8 Yes my login scripts are bat files. The two bgi files are for the user logon:
Adminlogon.bgi, Stafflogon.bgi or Studentlogon.bgi
So the desktop looks different for different user levels (hope this makes sense).
Logoff.bgi is used on the Windows logon/logoff screen (where you press ctrl+alt+del) and enter your username and password. Typically this is where I write the school name which looks smart.
Last edited by Michael; 2nd October 2008 at 02:33 PM.
-
-
2nd October 2008, 03:05 PM #9
- Rep Power
- 14
Cheers, you are a genius! I now have it working woo
-
-
2nd October 2008, 03:08 PM #10 Is that a startup script? And does the bat file actually copy the bginfo.exe to the systemroot folder if it doesn't already exist?
Also, how can you get it to display the free space on a users home directory?
This is drive letter H:\ for us.
-
-
2nd October 2008, 03:22 PM #11
- Rep Power
- 14
Is there a way to change the colour of the icon text, we use a white background image, but xp uses white text with shadows and its not all that clear.
grey icon text would be good, but not sure how :\
-
-
2nd October 2008, 03:24 PM #12
- Rep Power
- 14
you also need to add the /accepteula comment to the /i on bginfo.exe
-
-
2nd October 2008, 03:27 PM #13 Here's the way I've done it... saves using the stupid GPO wallpaper setting as well 
You need...
- folder on the server (sysvol or netlogon ideal) to store the .bgi file and .bmp for the wallpaper
- exe copied to the C: drive of each computer via script
- logon script to run it
So add this as part of your startup script for machines...
if exist c:\windows\bgibmp goto copyexe
mkdir c:\windows\bgibmp
cacls "c:\windows\bgibmp" /E /G "Authenticated Users":F
:copyexe
if exist c:\windows\bgibmp\bginfo.exe goto lastbit
copy "\\domain\sysvol\domain\usersettings\tools\Bginfo. exe" c:\windows\bgibmp /Y
:lastbit
exit
On a logon script assigned to users OU have this bit...
c:\windows\bgibmp\bginfo.exe /i"\\domain\sysvol\domain\UserSettings\tools\teachp c.bgi" /accepteula /timer:0
Bit above assumes you domain is called domain and the .bgi file is in usersettings\tools under sysvol. Just change as required
End result is this...
Last edited by gshaw; 2nd October 2008 at 03:34 PM.
-
-
2nd October 2008, 03:36 PM #14
Is that a startup script? And does the bat file actually copy the bginfo.exe to the systemroot folder if it doesn't already exist?
No, it's a logon script.
Also, how can you get it to display the free space on a users home directory?
This is drive letter H:\ for us.
I'm not quite sure how to do this. If you use the value <free space> it works for the local C:\ drive only. Not sure how to change this to a home directory such as H:\
--------------------------------------------------------------------------------
Is there a way to change the colour of the icon text, we use a white background image, but xp uses white text with shadows and its not all that clear.
grey icon text would be good, but not sure how :\
If you double click your bgi file, this should automatically open using BGINFO.exe as they are associated. You can change the font colour using the built in toolbar and highlighting the relevant text.
-
-
2nd October 2008, 03:39 PM #15 
Originally Posted by
gshaw
Here's the way I've done it... saves using the stupid GPO wallpaper setting as well
You need...
- folder on the server (sysvol or netlogon ideal) to store the .bgi file and .bmp for the wallpaper
- exe copied to the C: drive of each computer via script
- logon script to run it
So add this as part of your
startup script for machines...
if exist c:\windows\bgibmp goto copyexe
mkdir c:\windows\bgibmp
cacls "c:\windows\bgibmp" /E /G "Authenticated Users":F
:copyexe
if exist c:\windows\bgibmp\bginfo.exe goto lastbit
copy "\\domain\sysvol\domain\usersettings\tools\Bginfo. exe" c:\windows\bgibmp /Y
:lastbit
exit
On a
logon script assigned to users OU have this bit...
c:\windows\bgibmp\bginfo.exe /i"\\domain\sysvol\domain\UserSettings\tools\teachp c.bgi" /accepteula /timer:0
Bit above assumes you domain is called
domain and the .bgi file is in
usersettings\tools under sysvol. Just change as required
End result is this...

Wow. I'm loving the wallpapers. Could I have a copy, please?
-
SHARE: 
Similar Threads
-
By ninjabeaver in forum How do you do....it?
Replies: 16
Last Post: 24th August 2007, 12:49 PM
-
By _Bat_ in forum Scripts
Replies: 18
Last Post: 19th June 2007, 09:02 AM
-
Replies: 17
Last Post: 16th September 2006, 01:25 AM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules