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:
|
Displaying 1 - 50 of about 4768 Related Tutorials.
|
Windows Web Hosting
. It support Windows 2003
hosting with ASP and ASP.NET support...
Windows Web Hosting,Windows Hosting,Windows Hosting Service...;
Windows Web Hosting is the hosting service provided |
jQuery to validate Email Address
;
In this jQuery tutorial we will develop a program that validate
the email...
jQuery to validate Email
Address
 ... will be calling a server side PHP script to get the "result". You
can |
How does Email works
.
When recipient log on his mail account, gets his Email.
Mailing... Program Interface):
MAPI is used to send Email with in windows application...
How does Email works
Sending Email with Attachment
 ...;
This Example shows you how to send a Attachment in the message using
java mail api |
Java Building a Simple Web Service ? A Tutorial Tutorial
Building a Simple Web Service ? A Tutorial
Building
a Simple Web Service ? A Tutorial... service and a client web application
using eclipse IDE along with Lomboz
plug
in. We |
Vehicle Tracking Systems - Overview
.
It was the shipping industry that first started using vehicle tracking systems. When large fleet... to improve their customer service. The systems enable the operators to identify the empty...
Vehicle Tracking Systems,Tracking Vehicles,Tracking Systems |
VB and ASP programmers
VB and ASP programmers
VB and ASP programmers...;
Position Vacant:
VB and ASP programmers
Job Description
Visual basic programmer with ASP knowledge to develop |
MySQL Creating account and changing password
MySQL Creating account changing password
MySQL Creating account and changing password
 ... creating account or you want to change
the password then make new user |
VoIP Phone Systems
, you can potentially lower your monthly phone service bills and add features...
VoIP Phone Systems
VoIP Phone Systems...;
Introduction
of VoIP Phone Systems
Voice over Internet |
Installing MySQL on Windows
In this tutorial we are using mysql-essential-5.0.24a-win32.msi, which is
the latest version of MySQL at the time of writing the tutorial. You download
the windows...
Installing MySQL on Windows
Installing MySQL |
Online Marketing and Email Campaign
Online Marketing and Email Campaign
Online Marketing and Email Campaign
 ... and Email
Campaign
Job Description
Your |
Reseller Web Hosting
Reseller Web Hosting,Reseller Hosting Plan,Reseller Hosting Account,Web... hosting in which the account owner
split up their allotted web space... Hosting account start
online business instantly.
In this page you will find |
The Dangers of Peer-to-Peer Systems
customers using their service - analogous to a symbiotic relationship. The tools...
The Dangers of Peer-to-Peer Systems
The Dangers of Peer-to-Peer Systems
  |
Java Complete Hibernate 3.0 Tutorial Tutorial
;
This tutorial provide step by step instructions on using Hibernate...
Hibernate Tutorial,Hibernate 3 Tutorials,Java Hibernate Example,Hibernate Online Code
Complete Hibernate 3.0 Tutorial |
Java Script Programming Books
with ASP. By the end of this book, you will have mastered the art of using...
Java Script
Programming Books
Java Script... Yourself Java Script
The World Wide Web began as a simple repository |
Complete Hibernate 3.0 Tutorial
;
This tutorial provide step by step instructions on using Hibernate...
Hibernate Tutorial,Hibernate 3 Tutorials,Java Hibernate Example,Hibernate Online Code
Complete Hibernate 3.0 Tutorial |
J2EE Tutorial - Introduction
J2EE Tutorial - Introduction
J2EE Tutorial..., HOD
Email... want to know whether J2EE is Java atall or something else. This
tutorial |
Objective C on Windows
. GNUset
is objective c compiler for windows, that we will be using in our tutorial...
Objective C on Windows, Objective C Windows, Objective C Windows Compiler, Objective C Compiler for Windows
Objective C |
J2EE Web Service Development with Attachments Using Axis
Service Development with Attachments Using Axis... attachment. Recently I implemented a web service with attachments using Axis... service that can handle attachments and the client to access the web service using |
Struts 2 E-mail Validator
Email Validator
Struts 2 E-mail Validator
 ...;
The email... is empty or not and contains a valid email address or not. If the entered value
does |
MySQL Tutorial - SQL Tutorials
. In this online training/tutorial we are using
MySQL 5.0 which is the latest...
MySQL Tutorial,Free MySQL Tutorials,MySQL Programming Tutorials,Online MySQL Help for Beginners
MySQL Tutorial - SQL Tutorials |
What is POP?
for communication in the form of email. Email is the
most wanted service over internet... that allows the computer to communicate the email server for
uploading and ...; internet connection. POP has a small email server with some
limited space that saves |
J2EE Web Service Development with Attachments Using Axis
Service Development with Attachments Using Axis... attachment. Recently I implemented a web service with attachments using Axis... service that can handle attachments and the client to access the web service using |
Microsoft Blues
Dean
With the advent of Service Pack 2 for Windows XP operating system... party applications dont work.
This service pack was needed to keep viruses...
Maybe there was an almighty rush to release this service pack before it had |
Mysql Alter Add Multiple Columns
with Example
The Tutorial illustrate an example from 'Mysql Alter Add Multiple Columns...
Mysql Alter Add Multiple Columns
Mysql Alter Add...;
Mysql Alter Add Multiple Columns is used to modify |
iPhone
is a multi-touch smartphone that has successfully combined multimedia, email, business.... iPhone Applications or iPhone web apps can be developed using a variety of tools like... authorised mobile service providers.
  |
Open Source Email Servers written in Java
|
Open Source Email Servers written in Java
|
The Complete Spring Tutorial
Tutorial By Farihah Noushene
Email...
Spring Tutorial,Java Spring Tutorials,Spring 2.5 Beginners Tutorial
The Complete Spring Tutorial
In this tutorial I |
Security in Web Service
for Square area calculation. Make this web service secured using...
Adding user to GlassFish
To add users to Glassfish using...
Security in Web Service
  |
JavaScript - JavaScript Tutorial
Javascript Tutorial,Online Java Script Help,Free Javascript Tutorials... you will find most of
the things about java script. JavaScript tutorial...;
Email validation is JSP using |
JavaScript - JavaScript Tutorial
Javascript Tutorial,Online Java Script Help,Free Javascript Tutorials... you will find most of
the things about java script. JavaScript tutorial...;
Email validation is JSP using |
VoIP Unlimited
;
VoIP Unlimited Services
As the VoIP service provider space becomes.... For instance, Greg Galitzine sent me an email with a press release stating... to pay a one-time fee of $999 for a lifetime of unlimited VoIP phone service. Yeah |
Send E-mail in HTML
;
The Tutorial describes you a code that help you to send Email in HTML. In
this Tutorial, the code create...
Send Email in HTML
|
|