Automatically configure users sip details in WM5.1
Windows Server Forum Index Windows Server
Server discussion on Windows platform.
 
 FAQFAQ   MemberlistMemberlist     RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
Google
 
Web winserverhelp.com
Automatically configure users sip details in WM5.1

 
Post new topic   Reply to topic    Windows Server Forum Index -> Live Communications Server
Author Message
Oz
Guest





Posted: Tue Jan 04, 2005 4:11 pm    Post subject: Automatically configure users sip details in WM5.1 Reply with quote

Hi,

Is there a resource kit/WSH for windows Msgr5.1 that allows me to configure
the users sip address to their login, which is the upn and is the same as
the sip anyway.

Cheers
OZ.
Back to top
Thomas Wenzl [MVP]
Guest





Posted: Thu Jan 06, 2005 6:17 am    Post subject: Re: Automatically configure users sip details in WM5.1 Reply with quote

Oz wrote:
Quote:
Is there a resource kit/WSH for windows Msgr5.1 that allows me to
configure the users sip address to their login, which is the upn and
is the same as the sip anyway.

you're talking about the client configuration (WM5.1), arent' you?

There's no official WSH script for this task. All what you would
have to do is to set the appropriate registry values. You'll find all
required values beyond HKCU\Software\Microsoft\MessengerService.

For example:
- UserMicrosoft RTC Instant Messaging (REG_SZ)
- RTCState (REG_BINARY)
- Transport (REG_BINARY)
- ServerAddress (REG_SZ)

BTW, using group policies won't work, because REG_BINARY
values can't be set using GPOs.

Regards
--
Thomas Wenzl [MVP for Live Communications Server]

Share what you know, learn what you don't!
(Deja/Google)
Back to top
Oz
Guest





Posted: Fri Jan 14, 2005 10:16 pm    Post subject: Re: Automatically configure users sip details in WM5.1 Reply with quote

Cheers for that using a few batch files i managed to set this up
perfectley!.
Executed from login script, simple but works fine!!!

hostcmd.bat
=========
@echo off
taskkill /f /im msmsgs.exe >nul
regedit /s killmsgr.reg
call ctreg.bat
regedit /s "u:\%username%MSGR.reg"
start "MSGR" /D"%programfiles%\Messenger\" /I /B
"%programfiles%\Messenger\msmsgs.exe"

ctreg.bat
=========
@ECHO OFF
ECHO Windows Registry Editor Version 5.00 >"U:\%USERNAME%MSGR.REG"
ECHO.>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService]>>"U:\%USERNAME%MSGR.REG"
ECHO "MSNState"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "RTCState"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "UserMicrosoft RTC Instant
Messaging"=%username%@Domain>>"U:\%username%msgr.reg
ECHO "AlwaysOnTop"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO
"WindowRect"=hex:99,04,00,00,71,00,00,00,75,05,00,00,10,03,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "WindowMax"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "FirstTimeUser"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AddToFirewallExceptionList"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "UsedGroupsView"=dword:00000001>>"U:\%USERNAME%MSGR.REG"
ECHO "CEIP Preference"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AppSettings"=hex:02,03,00,80>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService\GroupStateCacheU]>>"U:\%USERNAME%MSGR.REG"
ECHO "GroupView"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"

killmsgr.reg
========
Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Microsoft\MessengerService]
Back to top
toml@online.microsoft.com
Guest





Posted: Wed Jan 19, 2005 10:18 pm    Post subject: Re: Automatically configure users sip details in WM5.1 Reply with quote

Of course now that you have all expended efforts an article gets published
with info. If you can provide feedback on its value that would be great. I
am interested to know if it meets your intended purpose before bulk
recommendation.

http://support.microsoft.com/?id=842296

Tom
--------------------
From: "Oz" <oz@somewhere.really.dunno.com>
References: <edAeNXk8EHA.3368@TK2MSFTNGP10.phx.gbl>
<uH1POU48EHA.1408@TK2MSFTNGP10.phx.gbl>
Subject: Re: Automatically configure users sip details in WM5.1
Date: Fri, 14 Jan 2005 16:16:59 -0000
Lines: 46
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#zNYKSl#EHA.2196@TK2MSFTNGP14.phx.gbl>
Newsgroups: microsoft.public.livecomm.general
NNTP-Posting-Host: webct.nwhc.ac.uk 194.70.45.154
Path:
cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP14
..phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.livecomm.general:5230
X-Tomcat-NG: microsoft.public.livecomm.general

Cheers for that using a few batch files i managed to set this up
perfectley!.
Executed from login script, simple but works fine!!!

hostcmd.bat
=========
@echo off
taskkill /f /im msmsgs.exe >nul
regedit /s killmsgr.reg
call ctreg.bat
regedit /s "u:\%username%MSGR.reg"
start "MSGR" /D"%programfiles%\Messenger\" /I /B
"%programfiles%\Messenger\msmsgs.exe"

ctreg.bat
=========
@ECHO OFF
ECHO Windows Registry Editor Version 5.00 >"U:\%USERNAME%MSGR.REG"
ECHO.>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService]>>"U:\%USERNAME%MSGR.
REG"
ECHO "MSNState"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "RTCState"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "UserMicrosoft RTC Instant
Messaging"=%username%@Domain>>"U:\%username%msgr.reg
ECHO "AlwaysOnTop"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO
"WindowRect"=hex:99,04,00,00,71,00,00,00,75,05,00,00,10,03,00,00>>"U:\%USERN
AME%MSGR.REG"
ECHO "WindowMax"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "FirstTimeUser"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AddToFirewallExceptionList"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "UsedGroupsView"=dword:00000001>>"U:\%USERNAME%MSGR.REG"
ECHO "CEIP Preference"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AppSettings"=hex:02,03,00,80>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService\GroupStateCacheU]>>"U
:\%USERNAME%MSGR.REG"
ECHO "GroupView"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"

killmsgr.reg
========
Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Microsoft\MessengerService]
Back to top
Oz
Guest





Posted: Mon Jan 24, 2005 7:25 pm    Post subject: Re: Automatically configure users sip details in WM5.1 Reply with quote

Yes i too switched to the Reg console app a day later.

I am still importing a bit more than just the user details, as my users are
so I.T illiterate i even setup there groups for them.

""Tom Laciano <MSFT>"" <toml@online.microsoft.com> wrote in message
news:GMy4vIk$EHA.2504@cpmsftngxa10.phx.gbl...
Quote:
Of course now that you have all expended efforts an article gets published
with info. If you can provide feedback on its value that would be great. I
am interested to know if it meets your intended purpose before bulk
recommendation.

http://support.microsoft.com/?id=842296

Tom
--------------------
From: "Oz" <oz@somewhere.really.dunno.com
References: <edAeNXk8EHA.3368@TK2MSFTNGP10.phx.gbl
uH1POU48EHA.1408@TK2MSFTNGP10.phx.gbl
Subject: Re: Automatically configure users sip details in WM5.1
Date: Fri, 14 Jan 2005 16:16:59 -0000
Lines: 46
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#zNYKSl#EHA.2196@TK2MSFTNGP14.phx.gbl
Newsgroups: microsoft.public.livecomm.general
NNTP-Posting-Host: webct.nwhc.ac.uk 194.70.45.154
Path:
cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP14
phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.livecomm.general:5230
X-Tomcat-NG: microsoft.public.livecomm.general

Cheers for that using a few batch files i managed to set this up
perfectley!.
Executed from login script, simple but works fine!!!

hostcmd.bat
=========
@echo off
taskkill /f /im msmsgs.exe >nul
regedit /s killmsgr.reg
call ctreg.bat
regedit /s "u:\%username%MSGR.reg"
start "MSGR" /D"%programfiles%\Messenger\" /I /B
"%programfiles%\Messenger\msmsgs.exe"

ctreg.bat
=========
@ECHO OFF
ECHO Windows Registry Editor Version 5.00 >"U:\%USERNAME%MSGR.REG"
ECHO.>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService]>>"U:\%USERNAME%MSGR.
REG"
ECHO "MSNState"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "RTCState"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "UserMicrosoft RTC Instant
Messaging"=%username%@Domain>>"U:\%username%msgr.reg
ECHO "AlwaysOnTop"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO
"WindowRect"=hex:99,04,00,00,71,00,00,00,75,05,00,00,10,03,00,00>>"U:\%USERN
AME%MSGR.REG"
ECHO "WindowMax"=hex:00,00,00,00>>"U:\%USERNAME%MSGR.REG"
ECHO "FirstTimeUser"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AddToFirewallExceptionList"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "UsedGroupsView"=dword:00000001>>"U:\%USERNAME%MSGR.REG"
ECHO "CEIP Preference"=dword:00000000>>"U:\%USERNAME%MSGR.REG"
ECHO "AppSettings"=hex:02,03,00,80>>"U:\%USERNAME%MSGR.REG"
ECHO
[HKEY_CURRENT_USER\Software\Microsoft\MessengerService\GroupStateCacheU]>>"U
:\%USERNAME%MSGR.REG"
ECHO "GroupView"=hex:01,00,00,00>>"U:\%USERNAME%MSGR.REG"

killmsgr.reg
========
Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Microsoft\MessengerService]



Back to top
 
Post new topic   Reply to topic    Windows Server Forum Index -> Live Communications Server All times are GMT
Page 1 of 1

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




New Topics Powered by phpBB