Let's you add an user email account to windows 2003 pop3 service using script. The script is written in VBA 6 (You can use it in Visual basic 6, Excel, Access, ...), you can modify it for VB Script or VB.Net. Manage accounts locally or remotelly
Tutorial Details:
Add an email account to a windows 2003 pop3 service using script
Add an email account to a windows 2003 pop3 service using script
ActiveX RegEdit. ActiveX User account Manager Pure-ASP Upload
Export MDB/DBF from ASP Active LogFile WebChecker ActiveX/ASP Multi Dictionary object
See
also
IISTracer, real-time IIS monitor and logging tool.
Huge ASP file upload with progress bar.
Do you like this article?
Please, rate it
and write review!
Rated:
by Aspin.com users
What do you think?
5 Stars 4 Stars 3 Stars 2 Stars 1 Star
Top messages
22.3.2003 19:18:41
Read and write SQL image data, store binary file to sql table.
( WSH , Database , Conversion , VBScript )
4.5.2002 9:16:43
Send an email from ASP (WSH) using VBSscript, CDONTS and Outlook.
( ASP / ASP.Net , WSH , VBScript , Email )
7.12.1999 21:31:33
Base64 decode VBS function (vb decoder algorithm), source code
( http , Conversion , VBScript )
Add an email account to a windows 2003 pop3 service using script
Areas > ASP / ASP.Net > Email
Areas > VBA
You can use two ways to manage windows 2003 pop3 service and it's email accounts. Microsoft has two basic ways to do it:
- using pop3 service snapin to mmc (p3server.msc) for interactive work
- using winpop.exe command line. The command line can be used to manage accounts from script, but you will have a lot of work with monitoring output, etc.
Better way is to use P3Admin.dll and it's programming interface. The DLL is not finished work (as you can see inside the DLL), but is is a better way for the task than command line.
You can manage the accounts locally or remotelly. You will need P3Admin.dll, P3Store.dll, Pop3Auth.dll, Pop3evt.dll, pop3perf.dll and pop3snap.dll DLLs (registerred using regsvr32)
Next function lets you add an user email account to windows 2003 pop3 service using script or other programming environment. The script bellow is written in VBA 6 (You can use it in Visual basic 6, Excel, Access, ...), you can simply modify the script for VB Script or VB.Net.
...
'next command creates 'franta@market.cz' pop3 account
' on 'hlavni' computer with '5koni' password.
AddPop3User "hlavni", "franta", "market.cz", "5koni"
...
'Adds an user account To a Windows 2003 POP3 service
'2005 Antonin Foller, http://tips.motobit.com
Public Function AddPop3User(MachineName As String, _
UserName As String, _
DomainName As String, _
Password As String) As P3ADMINLib.P3User
'get a configuration object.
Dim P3 As New P3ADMINLib.P3Config
'get the object from a VB Script/JScript
'Set P3 = CreateObject("P3Admin.P3Config")
'Connect To the remote computer.
If Len(MachineName) > 0 Then P3.MachineName = MachineName
Dim Domain As P3ADMINLib.P3Domain
Dim User As P3ADMINLib.P3User
'get the domain object
On Error Resume Next
Set Domain = P3.Domains.Item(DomainName)
If Err = &H80070003 Then
'The domain is registerred In SMTP
' but Not In POP3
ElseIf Err = &H8007054B Then
'the domain does Not exists. Create it.
On Error Resume Next
P3.Domains.Add DomainName
If Err <> 0 Then
'On Error GoTo 0
Err.Raise Err, , "Domain " & DomainName & " cannot be added."
End If
End If
'add a user account
On Error Resume Next
Domain.Users.AddEx UserName, Password
If Err = &H8007050 Then 'ERROR_FILE_EXISTS
'the user account already exists.
'do some action In this Case.
End If
'get the created user account
Set User = Domain.Users.Item(UserName)
Set AddPop3User = User
End Function
See also for 'Add an email account to a windows 2003 pop3 service using script' article: Some support VBA functions for mailenable mail server Lets you create postoffice, mailboxes, logins, email adresses from VBA or VBScript.
Check if a pop3 email account exists in a windows 2003 pop3 service Let's you check if a pop3 user email account exists in a windows 2003 pop3 service
If you like this page, please include next link on your pages:
<A
Href="http://www.motobit.com/tips/detpg_add-pop3-user-account-windows/"
Title="Let's you add pop3 user account
to a windows 2003 pop3
service using script (VBScript) or
Visual basic from WSH, ASP,
office or ASP.Net."
>Add an email account to a windows 2003 pop3 service using script</A>
IISTracer - IIS ISAPI real-time monitor IISTracer is a real-time monitoring tool for Microsoft IIS, which will show/log you what is happenning on IIS server right now. It let's you reveal problems with long-running scripts (.asp, .cgi, cfm...), hang-up states and low resource situations and lets you stop long-running requests (uploads/downloads).
ActiveX User account Manager - Set of simple objects for creating, deleting, and managing user accounts, groups, servers and domains in the Windows NT environment.
Active log file - Hi-performance text file logging for ASP/VBS/VBA applications. Lets you create daily/weekly/monthly log files with variable number of logged values and extra timing and performance info.
ActiveX windows registry editor - Intuitive, easy to use COM interface to windows registry. Set of classes to read/enumerate/modify windows registry keys and values from ASP, VBS and T-SQL.
ActiveX/ASP Multi Dictionary object - Free-threaded hi-speed dictionary algorithm with unique/nonunique keys (map/multimap). Connect to another dictionary object in the same process. Lock and Unlock methods to synchronize tasks (application scope). Share ASP Application/Session objects.
Export DBF/MDB from ASP - Conversion from recordset to MDB/DBF. Direct binary output of MDB or DBF files from ASP pages with one row of code.
Pure-ASP upload - lets you upload files using Pure ASP VBS code (using multipart/form-data and input type=file).
ByteArray - Works with safearray binary data (VT_UI1 | VT_ARRAY) - save/restore binary data from disk, find, work with code pages, convert to string/hexstring(SQL).
WebChecker - Checks http, https, ftp and gopher internet connections in regular intervals. Lets you monitor web site functionality (uptime). Enables restart or notification on problems.
HTTPLog ISAPI filter - Lets you log incomming/outgoing http header and document data to separate files. Monitor of IIS service input/output.
© 1996 – 2006 Antonin Foller, PSTRUH Software , e-mail help@pstruh.cz
Optimalizace · WebDesign · Kurzy, Finance · Akcie · Investice · Letenky · Nemovitosti · Firmy · Zajezdy · Hypoteky · CZK · Phone directory
Read
Tutorial at: Click here to view the tutorial
Rate Tutorial: ASP Email Systems Add an email account to a windows 2003 pop3 service using script Tutorial
View Tutorial: ASP Email Systems Add an email account to a windows 2003 pop3 service using script Tutorial
Related
Tutorials:
Scripting power
saves the day
for your Java
apps
Scripting power
saves the day
for your Java
apps |
Use Microsoft's
Internet Information Server as a Java servlet engine -
JavaWorld June
2000
Use Microsoft's
Internet Information Server as a Java servlet engine -
JavaWorld June
2000 |
JavaMail quick start
JavaMail quick start |
Create email-based apps with JAMES
Create email-based apps with JAMES |
Deploy code
servers in Jini systems
Deploy code
servers in Jini systems |
Repair invalid cached services in the Service Locator pattern
Repair invalid cached services in the Service Locator pattern |
Jabber away with instant
messaging
Jabber away with instant
messaging |
J2SE 1.4
breathes new life into the CORBA community, Part
3
J2SE 1.4
breathes new life into the CORBA community, Part
3 |
J2EE 1.4 eases Web service development
J2EE 1.4 eases Web service development |
Test email components in your software
Test email components in your software |
Once again, only
introduction
Once again, only
introduction |
JLAN Server v3.3
JLAN Server v3.3
JLAN Server is a high performance JavaTM based file server supporting Windows file sharing (SMB/CIFS), NFS and FTP protocols.
Write your own virtual filesystems with the core server handling all protocol exchanges with the client.
Incl |
Reporting Application Errors by Email
Reporting Application Errors by Email
It is common practice for server-side applications to log messages to files on the server's file system. These logs are a vital source of information for system administrators and the application development team. If |
Getting Started with Java Message Service (JMS)
The Java Message Service (JMS) is designed to allow Java applications to use enterprise messaging systems. It makes it easy to develop enterprise applications that asynchronously send and receive business data and events. Learn how to implement it for you |

Free Web Site Hosting Services include "hostsearchbox.php"; ?>
Below is the listing of the hosting providers providing free web hosting services. These services helps you building your sites even if you have no experience in HTML writing.
Zero |

Linux Hosting Plans include "hostsearchbox.php"; ?>
Proxima Web-Hosting
Our basic hosting packages include support for a wide variety of web technologies, backed by instant account management with our Personal Control panel. With our guaranteed |
developing a Session Bean and a Servlet and deploy the web application on
JBoss 3.0
developing a Session Bean and a Servlet and deploy the web application on JBoss 3.0
Writing Calculator Session Bean and Calling through JSP
Previous Tutorial Index Next
In this lesson I will show you how to develop a Calculator Stateless Session |
Your suggestions
Your suggestions
Use the form on this page to tell us your ideas for enhancing our products, or improving our customer service, or anything else that comes to mind.
Subject:
Suggestion:
Your name:
Your Email:
|
Struts Validator Framework Tutorial with Example
Struts Validator Framework Tutorial with Example
Struts HTML Tags
Struts Validator Framework
This lesson introduces you the Struts Validator Framework. In this lesson you will learn how to use Struts Validator Framework to validate the user |
Web Hosting Guide. What is Web Hosting Plan?
Web Hosting Guide. What is Web Hosting Plan?
What is Web Hosting Plan?
Web hosting plan is the different plans provided by Hosting Companies for hosting your web site. Web hosting plans include the storage limit, bandwidth, access to server |
|
|
|