NO CDONTS in XP Pro? 
Author Message
 NO CDONTS in XP Pro?

How come cdonts.dll is part of Windows 2000 Pro but not XP Pro?

Jeff



Fri, 23 Jul 2004 21:50:14 GMT  
 NO CDONTS in XP Pro?

Quote:

> How come cdonts.dll is part of Windows 2000 Pro but not XP Pro?

Hi

From a newsgroup search in the windowsxp groups using Google
(http://groups.google.com/advanced_group_search ):

<qoute>
-------------------------------------------------------------------
From: Tarren (jojo_the_idiot_circus_clown)
Subject: Re: CDONTS
Newsgroups: microsoft.public.windowsxp.general
Date: 2001-10-18 16:35:17 PST

Windows XP does not come with cdonts installed.  You can take cdonts.dll
from the windows 2000 machine and put it in the c:\windows\system32 and then

regsvr32 cdonts.dll

After a reboot, you should be set to go.

-------------------------------------------------------------------


Subject: Re: CDONTS
Newsgroups: microsoft.public.windowsxp.general
Date: 2001-10-31 19:09:00 PST

IIS replaced the old CDONTS with CDOSYS.

Sub SendMessage(szTo As String, szFrom As String)
Dim Message As New CDO.Message
Dim Configuration As New CDO.Configuration
Dim Fields As ADODB.Fields
Set Fields = Configuration.Fields
With Fields
    .Item(cdoSendUsingMethod) = cdoSendUsingPort
    .Item(cdoSMTPServerPort) = 25
    .Item(cdoSMTPServer) = "yoursmtpserver.domain.com"
    .Item(cdoSMTPConnectionTimeout) = 5
    .Update
End With
With iMsg
    Set   .Configuration = Configuration
    .To = szTo
    .From = szFrom
    .Subject = "Test Message"
    .TextBody = "Message Text body"
    .Send
End With
Set Message = Nothing
Set Configuration = Nothing
Set Fields = Nothing
End Sub

--
Mark L. Ferguson MS-MVP Expert Associate
marfer's notes for XP - http://www.geocities.com/marfer mvp/xp notes.htm

.

Quote:
> What happend to cdonts how do i get this back???  I need it for  testing my
> coded pages

-------------------------------------------------------------------
</qoute>

--
torgeir



Sat, 24 Jul 2004 00:25:16 GMT  
 NO CDONTS in XP Pro?
Does this mean you can use this code in a standalone VBScript or do you
still have to use and ASP page to get it to work?

Jeff

Quote:

> > How come cdonts.dll is part of Windows 2000 Pro but not XP Pro?

> Hi

> From a newsgroup search in the windowsxp groups using Google
> (http://groups.google.com/advanced_group_search ):

> <qoute>
> -------------------------------------------------------------------
> From: Tarren (jojo_the_idiot_circus_clown)
> Subject: Re: CDONTS
> Newsgroups: microsoft.public.windowsxp.general
> Date: 2001-10-18 16:35:17 PST

> Windows XP does not come with cdonts installed.  You can take cdonts.dll
> from the windows 2000 machine and put it in the c:\windows\system32 and
then

> regsvr32 cdonts.dll

> After a reboot, you should be set to go.

> -------------------------------------------------------------------


> Subject: Re: CDONTS
> Newsgroups: microsoft.public.windowsxp.general
> Date: 2001-10-31 19:09:00 PST

> IIS replaced the old CDONTS with CDOSYS.

> Sub SendMessage(szTo As String, szFrom As String)
> Dim Message As New CDO.Message
> Dim Configuration As New CDO.Configuration
> Dim Fields As ADODB.Fields
> Set Fields = Configuration.Fields
> With Fields
>     .Item(cdoSendUsingMethod) = cdoSendUsingPort
>     .Item(cdoSMTPServerPort) = 25
>     .Item(cdoSMTPServer) = "yoursmtpserver.domain.com"
>     .Item(cdoSMTPConnectionTimeout) = 5
>     .Update
> End With
> With iMsg
>     Set   .Configuration = Configuration
>     .To = szTo
>     .From = szFrom
>     .Subject = "Test Message"
>     .TextBody = "Message Text body"
>     .Send
> End With
> Set Message = Nothing
> Set Configuration = Nothing
> Set Fields = Nothing
> End Sub

> --
> Mark L. Ferguson MS-MVP Expert Associate
> marfer's notes for XP - http://www.geocities.com/marfer mvp/xp notes.htm

> .


> > What happend to cdonts how do i get this back???  I need it for  testing
my
> > coded pages
> -------------------------------------------------------------------
> </qoute>

> --
> torgeir



Sat, 24 Jul 2004 01:10:54 GMT  
 NO CDONTS in XP Pro?
Ummm... because .... it ... uses CDOSYS instead???


Quote:

> > How come cdonts.dll is part of Windows 2000 Pro but not XP Pro?

> Hi

> From a newsgroup search in the windowsxp groups using Google
> (http://groups.google.com/advanced_group_search ):

> <qoute>
> -------------------------------------------------------------------
> From: Tarren (jojo_the_idiot_circus_clown)
> Subject: Re: CDONTS
> Newsgroups: microsoft.public.windowsxp.general
> Date: 2001-10-18 16:35:17 PST

> Windows XP does not come with cdonts installed.  You can take cdonts.dll
> from the windows 2000 machine and put it in the c:\windows\system32 and
then

> regsvr32 cdonts.dll

> After a reboot, you should be set to go.

> -------------------------------------------------------------------


> Subject: Re: CDONTS
> Newsgroups: microsoft.public.windowsxp.general
> Date: 2001-10-31 19:09:00 PST

> IIS replaced the old CDONTS with CDOSYS.

> Sub SendMessage(szTo As String, szFrom As String)
> Dim Message As New CDO.Message
> Dim Configuration As New CDO.Configuration
> Dim Fields As ADODB.Fields
> Set Fields = Configuration.Fields
> With Fields
>     .Item(cdoSendUsingMethod) = cdoSendUsingPort
>     .Item(cdoSMTPServerPort) = 25
>     .Item(cdoSMTPServer) = "yoursmtpserver.domain.com"
>     .Item(cdoSMTPConnectionTimeout) = 5
>     .Update
> End With
> With iMsg
>     Set   .Configuration = Configuration
>     .To = szTo
>     .From = szFrom
>     .Subject = "Test Message"
>     .TextBody = "Message Text body"
>     .Send
> End With
> Set Message = Nothing
> Set Configuration = Nothing
> Set Fields = Nothing
> End Sub

> --
> Mark L. Ferguson MS-MVP Expert Associate
> marfer's notes for XP - http://www.geocities.com/marfer mvp/xp notes.htm

> .


> > What happend to cdonts how do i get this back???  I need it for  testing
my
> > coded pages
> -------------------------------------------------------------------
> </qoute>

> --
> torgeir



Sat, 24 Jul 2004 17:24:36 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. cdonts in Windows XP Pro

2. WSHController with XP Pro and XP Home

3. Problem: VBS Mapping a Drive in XP Pro

4. XP Pro, Access, "Undefined Error"

5. Regedit /s and XP Pro

6. FileSystemObject lockup under XP Pro

7. Can't use File System Object on XP Pro

8. FileSystemObject in XP PRO

9. Problem: VBS Mapping a Drive in XP Pro

10. WSH 5.6 and Script Debugger on XP Pro problems

11. WSC and Windows XP pro

12. ASP Debugging in WinXP Pro/Office XP Dev

 

 
Powered by phpBB® Forum Software