Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7439579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:43:35+00:00 2026-05-29T10:43:35+00:00

I have to create a project management application in VB.Net Framework 4 which should

  • 0

I have to create a project management application in VB.Net Framework 4 which should create a client folder in a public folder in Exchange server.

I think the only way to create a public folder is through the management console. Is there a way to connect to the Exchange server and execute the creation command file from the code but I do not know how.

Is there another way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T10:43:36+00:00Added an answer on May 29, 2026 at 10:43 am

    If you are on Exchange Service 2007 or higher you can easily create folders using the Exchange Web Services (EWS). EWS are a set of SOAP services exposed by Exchange Service making it fairly easy to do a number of different tasks on Exchange programmatically.

    The easiest way to call EWS is through the Exchange Web Service Managed API which is a .NET wrapper for calling EWS from a .NET client.

    When using EWS through the managed API you start by connecting to your Exchange Server. The endpoint of EWS is usually located at the address “/EWS/exchange.asmx” as show below:

    var service = new ExchangeService(ExchangeVersion.Exchange2010_SP1);
    service.Url = new Uri("https://server/EWS/exchange.asmx");
    service.Credentials = new NetworkCredential("username", "password", "domain");
    

    You might also use autodiscovery to connect to the server.

    After having successfully connected, you can create a public folder in the following way (see also MSDN):

    var folder = new Folder(service);
    folder.DisplayName = "New Folder";
    folder.Save(WellKnownFolderName.PublicFoldersRoot);
    

    I know you tagged your question as VB.NET but please forgive my C# code examples.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a project to create a program, which prevents the user from escaping
If you create an ASP.NET web file project you have direct access to the
I have Visual Studio 2008 and ASP.NET MVC2 project. To App_data folder I added
We use Team Foundation Server and have numerous ASP.NET Web Application Projects. Each of
For some reason, my visual studio 2008 installation doesn't have the Create Test Project
Guys; How are you doing today? I have to create a dll project on
I am working on a project where I have to create a chain with
So for my programming class we have had a project to create a virtual
I have a project where I create WiX (Windows Installer for XML) files, when
I have a maven project and I'd like to create a distribution of it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.