Skip to main content

How to Add Outlook Email to Office 365 Manually

 Read this blog to solve how to upload PST to Office 365 or how to add Outlook Email to Office 365 query with manual & alternative solutions. Frequently it is seen that Outlook users face difficulties in moving Outlook PST files to Office 365 manually because the manual method is technical & confusing so, in this blog, we will describe both manual and alternative solutions to get Outlook data into Office 365 properly.

Moving Outlook PST File to Office 365 Manually

 Office 365 doesn’t have a direct import function to upload PST to Office 365 without Outlook but a drive shipping trick can do this task. So if you want to know how to add Outlook Email to Office 365 then firstly, you must follow the given requirements for this process –


·        Users should be given created a folder for the import-export role to add PST file in Office 365.

·        Organization must have FedEx and DHL accounts.

·        Protection timing must be set for an unlimited time frame.

·        Hard disk in which PST file is moved must be BitLocker encrypted & less in size or 6TB.

Now follow the provided steps –

Step a. Download Import Tool

Follow the given steps to download the Import tool and safe key

·        Go to https://protection.office.com web page and login with Office 365 account then click on Permissions >> Management >> Import

·        After that go with the left side and Users >> Import >> choose Ship data on physical hard drives showing function under the +” icon.

·        Click on the Download tool function to install the WAI Import tool

·        Get the displayed key & store it in a file.

·        Now go to Cancel to close the page.

Step b. Save PST File in Hard Drive

·        Go with WAI Import Export Tool stored location under the CMD on your system.

·        After that follow the provided command to save the PST file on Hard Disk.

 /j: –Journal File Name that has the information about the drive.

* /t: – Hard Disk’ drive letter and it is connected to the local system.

* /id: –the copy session name for getting PST file to Exchange Online.

* /srcdir: save path of stored .pst files.

* /stir: save location route of Microsoft cloud where PST will be added.

* /SK: secure key.

* /logdir: log file storage location.

* /encrypt: BitLocker encryption key.

After that run the provided command to add the PST file in Office 365 by ImportExportTool of WAI.

Step c. Generate PST CSV File or Import Mapping

Microsoft Data Center adds the PST file to its azure data storage from Hard Disk. The import facility accepts data existing in Mapping or CSV files for checking the user mailbox PST which needed to be added. So download the CSV file and open it on your computer.

Step d. Create PST Import Job

·        After that go to O365 Admin Center Import Page & choose Import Services >> New Job + >> Ship Data on Hard Drive.

·        Check the options “hard drives are ready” & “I have access to mapping file” from the ‘New Job’ page Then go with the Next button.

·        Provide the name to the Import PST process.

·        Go with the ‘+’ icon & go to the location of the stored WAI ImportExport.exe tool.

·        Add journal file >> then next to import PST for Exchange Online storage.

·        Click the ‘+’ function & select the CSV file created in the previous step. Click on the Next button.

·        Provide the contacts information and hit on the finish function.

Step e. Ship Hard Drive

At last, users have to send the hard drive disk to MS headquarters. You must save the tracking number shipping label to track your shipment.

How to Add Outlook Email to Office 365 Alternatively

The above-mentioned manual ship method of moving Outlook PST files to Office 365 is not simple for the non-techniusersuser and if any step is missed by mistake then your data may lose. So if you don’t want to go with the manual trick and want an urgent solution then go with Outlook to Office 365 Converter which is capable of directly uploading PST to Office 365 without Outlook and also supports the function to directly add Outlook data files to Office 365 without any data loss. It supports the  ‘load Outlook profile’ function that helps to add configured Outlook data for migration. So you don’t need to search Outlook (configured) data individually. It also supports Add Files/Folder option to upload PST to Office 365 without Outlook. If you have confusion then you can also download it freely and add 25 Outlook data files and emails to Office 365 free of cost. Therefore, you can simply also checkout both processes before going with any decision to solve how to add Outlook Email to Office 365 perfectly.

Comments

Popular posts from this blog

Join the Beauty Course for Massage Beauty License Training

Massage Beauty School of California: Massage beauty program is one of the top ten beauty courses which are well recognized and sought after in the beauty sector. Several students from various cities and states enroll in this training program to get better learning opportunities and understand the minute technicalities of beauty massaging services. Certified schools and beauty institutes located in Los Angeles are offering cutting-edge training to the students who are eligible for the program. Palace Beauty College is an accredited beauty school that does offer a massage therapy program and also offers holistic learning facilities to the students. The college has years of experience in providing massage therapy license training in Los Angeles for more than half a decade now. The college maintains its official website to reach out to distant students and provide them relevant information related to the available beauty courses. The college takes pride in its impressive infrastru...

Having issue with MDaemon Outlook Connector to connect MDaemon data with Outlook

Migration from MDaemon to Outlook is the right way to access MDaemon data in Outlook by using Outlook Connector Migration from MDaemon to Outlook Without Outlook Connector Migration from MDaemon to Outlook Overview: MDaemon Mail Server provides Outlook Connector for MDaemon which let you view and open MDaemon data with Outlook. Using Outlook Connector users will be able to view MDaemon Mail and contacts in Outlook. But if have you deleted any file from MDaemon then it will also missing from Outlook as well.   The way MDaemon Outlook Connector works is by keeping a locally cached copy file of the mail body in a database and the attach   files as a separate file. This is completely different from Microsoft Outlook Exchange caching where everything is kept in one OST file. The problem with this is it takes around 30 minutes to open Outlook (from a cold boot) which is quite unacceptable!! Sometimes users couldn’t able to send and receive email while using Ou...

Most frequently asked interview question on String in java

 Here we describe difference between (==) and .equals() :- Both of them very much  differ  in their significance and working as equals() method is present in the java.lang.Object class and it is expected to check for the equivalence of the state of objects! That means, the contents of the objects. Whereas the '==' operator is expected to check the actual object instances are same or not. Let us see an example we have two String objects and they are being pointed by two different reference variables as a1 and a2. a1 = new String("xyz"); a2 = new String("xyz"); Now, if you use the "equals()" method to check for their equivalence as if(a1.equals(a2)) System.out.println("a1.equals(a2) is TRUE"); else System.out.println("a1.equals(a2) is FALSE"); You will get the output as TRUE as the 'equals()' method check for the content equivality. Lets check the '==' operator.. if(s...