Desktop Solution Help

  • Thread starter Thread starter ROJ22
  • Start date Start date
R

ROJ22

Hello all,

I am hoping that perhaps someone can help me out.

I work for a fairly large banking firm, that is growing fairly
quickly, and I need to find a solution for my desktops.

I am running Windows Server 2003 SP1, with all of my workstations
running Windows XP SP1.
Is there an easy way for a user to find his/her workstation name
without having to walk them thru the standard, My Computer ->
Properties -> Computer Name.
Someone had told me that there is a Group Policy that would put an
Icon or something in the bottom right hand corner of the taskbar for
the user to easily click on to display the system properties.
Any help with this would be greatly appreciated.

Thank you,
Roger
 
You could try this VBS code:
Dim netshl
Set netshl = createobject("wscript.network")
msgbox "The computer name is: " & netshl.computername
Set netshl=Nothing
wscript.quit
You may be able to copy a shortcut or code out the desktop with GP or logon
scripts.
Brian

ROJ22 said:
Hello all,

I am hoping that perhaps someone can help me out.

I work for a fairly large banking firm, that is growing fairly
quickly, and I need to find a solution for my desktops.

I am running Windows Server 2003 SP1, with all of my workstations
running Windows XP SP1.
Is there an easy way for a user to find his/her workstation name
without having to walk them thru the standard, My Computer ->
Properties -> Computer Name.
Someone had told me that there is a Group Policy that would put an
Icon or something in the bottom right hand corner of the taskbar for
the user to easily click on to display the system properties.
Any help with this would be greatly appreciated.

Thank you,
Roger

--
Posted using the http://www.windowsforumz.com interface, at author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.windowsforumz.com/Group-Policy-Desktop-Solution-Help-ftopict548416.html
Visit Topic URL to contact author (reg. req'd). Report abuse:
http://www.windowsforumz.com/eform.php?p=1734703
 
Back
Top