Hi,
I found a web part that you can include on the home page of SPS, I've made a couple of changes to it, so it will only show the users name and increased the font a little.
Below is the exported web part code, just copy and paste into a new text file and save it as a .dwp and then import it into your portal.
<?xml version="1.0"?>
<WebPart xmlns="urn:schemas-microsoft-com:webpart:">
<Title>User Details</Title>
<Description>Displays Users Name and IP Address using in built in Server Vars</Description>
<Content>'Generic Web Part Function. REQUIRED.
Function GetContent(nod)
' Displays user details and IP address
' pinched from MS Extranet sample
Dim UserName ' var for Username
Dim IPAddress ' var for remote_address
Dim strHTMLRet ' Output string
Dim BrowserVersion
Dim UserNameRep
Dim FullName
On Error Resume Next
'get username - note this bit of code required because if anonymous then blank string
UserName = request.servervariables("Logon_User"
if Len(UserName) = 0 then
UserName = "Anonymous"
end if
UsernameRep=Replace(ucase(UserName) , "\", "/"
set adsUser = getObject("WinNT://" & UserNameRep)
FullName = adsUser.FullName
' get ip
IPAddress = request.servervariables("REMOTE_ADDR"
' get browser
BrowserVersion = request.servervariables("HTTP_USER_AGENT"
' Build up output string
strHTMLret = "<DIV style=""font-size: 150%"">"
strHTMLRet =strHTMLret & "Welcome: " & FullName &"</div>"
'Return string to Dashboard
GetContent = strHtmlRet
End Function</Content>
<ContentLink></ContentLink>
<XSL></XSL>
<XSLLink></XSLLink>
<MasterPartLink></MasterPartLink>
<RequiresIsolation>0</RequiresIsolation>
<ContentType>1</ContentType>
<IsIncluded>1</IsIncluded>
<AllowRemove>1</AllowRemove>
<IsVisible>1</IsVisible>
<FrameState>0</FrameState>
<AllowMinimize>1</AllowMinimize>
<HasFrame>0</HasFrame>
<Zone>4</Zone>
<PartOrder>0</PartOrder>
<PartImageSmall></PartImageSmall>
<PartImageLarge></PartImageLarge>
<CustomizationLink></CustomizationLink>
<CacheBehavior>0</CacheBehavior>
<CacheTimeout>0</CacheTimeout>
<PartStorage></PartStorage>
<Namespace></Namespace>
<Height></Height>
<Width></Width>
<DetailLink></DetailLink>
<HelpLink></HelpLink>
</WebPart>
Hope this helps
Steve.