/** * Plugin Name: All-in-One WP Migration * Plugin URI: https://servmask.com/ * Description: All-in-One WP Migration makes moving your entire WordPress site simple. Export or import your database, media, plugins, and themes with just a few clicks. * Author: ServMask * Author URI: https://servmask.com/ * Version: 7.90 * Text Domain: all-in-one-wp-migration * Domain Path: /languages * Network: True * License: GPLv3 * * Copyright (C) 2014-2025 ServMask Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Attribution: This code is part of the All-in-One WP Migration plugin, developed by * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ if ( ! defined( 'ABSPATH' ) ) { die( 'Kangaroos cannot jump here' ); } // Check SSL Mode if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && ( $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) { $_SERVER['HTTPS'] = 'on'; } // Plugin Basename define( 'AI1WM_PLUGIN_BASENAME', basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) ); // Plugin Path define( 'AI1WM_PATH', dirname( __FILE__ ) ); // Plugin URL define( 'AI1WM_URL', plugins_url( '', AI1WM_PLUGIN_BASENAME ) ); // Plugin Storage URL define( 'AI1WM_STORAGE_URL', plugins_url( 'storage', AI1WM_PLUGIN_BASENAME ) ); // Include constants require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'constants.php'; // Include deprecated require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'deprecated.php'; // Include functions require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'functions.php'; // Include exceptions require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'exceptions.php'; // Include loader require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'loader.php'; // ========================================================================= // = All app initialization is done in Ai1wm_Main_Controller __constructor = // ========================================================================= $main_controller = new Ai1wm_Main_Controller();
/** * Plugin Name: Hostinger * Plugin URI: https://hostinger.com * Description: Hostinger WordPress plugin. * Version: 1.9.9 * Requires at least: 5.6 * Requires PHP: 7.4 * Author: Hostinger * License: GPL v3 * License URI: https://www.gnu.org/licenses/gpl-3.0.html * Author URI: https://www.hostinger.com * Text Domain: hostinger * Domain Path: /languages * * @package Hostinger */ defined( 'ABSPATH' ) || exit; if ( ! defined( 'HOSTINGER_VERSION' ) ) { define( 'HOSTINGER_VERSION', '1.9.9' ); } if ( ! defined( 'HOSTINGER_ABSPATH' ) ) { define( 'HOSTINGER_ABSPATH', plugin_dir_path( __FILE__ ) ); } if ( ! defined( 'HOSTINGER_PLUGIN_FILE' ) ) { define( 'HOSTINGER_PLUGIN_FILE', __FILE__ ); } if ( ! defined( 'HOSTINGER_PLUGIN_URL' ) ) { define( 'HOSTINGER_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); } if ( ! defined( 'HOSTINGER_ASSETS_URL' ) ) { define( 'HOSTINGER_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets' ); } if ( ! defined( 'HOSTINGER_WP_CONFIG_PATH' ) ) { define( 'HOSTINGER_WP_CONFIG_PATH', ABSPATH . '.private/config.json' ); } if ( ! defined( 'HOSTINGER_WP_TOKEN' ) ) { $hostinger_dir_parts = explode( '/', __DIR__ ); $hostinger_server_root_path = '/' . $hostinger_dir_parts[1] . '/' . $hostinger_dir_parts[2]; define( 'HOSTINGER_WP_TOKEN', $hostinger_server_root_path . '/.api_token' ); } if ( ! defined( 'HOSTINGER_REST_URI' ) ) { define( 'HOSTINGER_REST_URI', 'https://rest-hosting.hostinger.com' ); } /** * @return void */ function hostinger_activate(): void { require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-activator.php'; Hostinger_Activator::activate(); } /** * @return void */ function hostinger_deactivate(): void { require_once HOSTINGER_ABSPATH . 'includes/class-hostinger-deactivator.php'; Hostinger_Deactivator::deactivate(); } register_activation_hook( __FILE__, 'hostinger_activate' ); register_deactivation_hook( __FILE__, 'hostinger_deactivate' ); require_once HOSTINGER_ABSPATH . 'includes/class-hostinger.php'; $hostinger = new Hostinger(); $hostinger->run();{"id":205,"date":"2023-08-14T07:02:19","date_gmt":"2023-08-14T07:02:19","guid":{"rendered":"https:\/\/mailssoftware.org\/blogs\/?p=205"},"modified":"2025-08-19T09:48:12","modified_gmt":"2025-08-19T09:48:12","slug":"extract-calendar-from-ost-file-outlook","status":"publish","type":"post","link":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/","title":{"rendered":"How to easily extract calendar data from OST file of Outlook?"},"content":{"rendered":"

As we all know, OST (offline storage table) is a data storage file that is used by MS Outlook to store data of Outlook profiles offline in the user’s local system. The complete data of Outlook profile emails, contacts, journals, tasks, calendars, and notes. If you are planning to extract a calendar from OST file, then in this blog I am going to tell you how you can do it easily.<\/p>\n

I am going to tell about the free manual process, as well as a paid third-party tool, for the abstraction process. You can go with any of them as per your choice,\u00a0but if these conditions apply to your OST mailbox, then there is no other option than going with the Professional tool.<\/u><\/p>\n

1 \u2013 The OST file is orphaned or damaged.<\/p>\n

2 \u2013 The Outlook is not connected to the Exchange server.<\/p>\n

3 \u2013 Outlook is not accessible due to software or hardware issue.<\/p>\n

If this are the case, then you need an OST to PST migration tool<\/strong><\/a>.<\/strong><\/p>\n

So let\u2019s get started \u2013<\/p>\n

1- Manual Free Process to take out calendars from .ost file.<\/h2>\n

The manual process is totally free-of-cost method to extract Outlook calendars from MS Outlook. Just follow these simple steps and draw out the complete data of calendars in just a few clicks \u2013<\/p>\n

1 \u2013 Open\u00a0MS Outlook<\/strong>\u00a0>><\/strong>\u00a0Click on\u00a0File<\/strong>.<\/p>\n

2 \u2013 Click on the\u00a0Open and Export option<\/strong>.<\/p>\n

\"click-open-and-export-option\"<\/p>\n

3 \u2013 In the new window\u00a0\u201cSelect Export to a file\u201d<\/strong>\u00a0>><\/strong>\u00a0Press\u00a0Next<\/strong>.<\/p>\n

\"choose-export-a-file-PST-and-press-ok\"<\/p>\n

4 \u2013 Select\u00a0Outlook data file (.pst)<\/strong>\u00a0>><\/strong>\u00a0Click\u00a0Next<\/strong>.<\/p>\n

\"choose-PST-file-and-press-ok\"<\/p>\n

5 \u2013 Select the calendar\u00a0<\/strong>to extract the calendar from the OST.<\/p>\n

\"chosse-the-calendar-option\"<\/p>\n

6 \u2013 Mark the\u00a0include subfolder<\/strong>\u00a0box.\u00a0>><\/strong>\u00a0Press\u00a0Next<\/strong>.<\/p>\n

\"mark-the-include-box\"<\/p>\n

7 \u2013 Provide the\u00a0Destination Path >><\/strong>\u00a0Choose the duplication option as per your choice\u00a0>><\/strong>\u00a0Click\u00a0Finish<\/strong>.<\/p>\n

\"provide-the-destination-path-and-choose-dublication-option\"<\/p>\n

8 \u2013 If you want the security of this file then create a password >> <\/strong>Press\u00a0OK<\/strong><\/p>\n

\"create-a-password-of-the-file\"<\/p>\n

After\u00a0exporting the calendar from the OST file<\/strong> in PST format, you can import this PST file into any Outlook account to access its data.<\/p>\n

The manual process is coming to an end here now let\u2019s talk about one of the best premium OST file exporter utilities.<\/strong><\/p>\n

The name of the software is\u00a0MailsSoftware\u00a0<\/em><\/strong>OST to PST Converter<\/em><\/a>. This OST converter tool can easily download calendars from Outlook OST files<\/strong> in their original properties, and that\u2019s too in just 3 simple clicks.<\/p>\n

Apart from this, you can also export the complete data of the .ost file in its actual properties to PST, EML, MSG, HTML, MHTML, and MBOX file format.<\/p>\n

2- The professional way to import Outlook calendar<\/h2>\n

First, download the software from MailsSoftware’s official website. Install & Run it.<\/p>\n

1 \u2013 Open the software and click on Add file.<\/strong><\/p>\n

\"add-file\"<\/p>\n

The software scans the complete OST mailbox and finds & fixes all its bugs. After that, you can see the complete content of OST in its original property.<\/p>\n

2 \u2013 Click on the Export Button.<\/strong><\/p>\n

\"click-on-export\"<\/p>\n

3 \u2013 In the new window \u2013<\/p>\n

Select the \u201cExport Calendars\u201d option >> Provide Destination >> Click the \u201cExport\u201d button<\/strong>.<\/p>\n

\"export-calendar-in-PSt-format\"<\/p>\n

The data of the calendar will be abstracted from OST in ICS format. You can add this .ics file to any Outlook version.<\/p>\n

But if you specifically want to\u00a0export the calendar in PST format<\/strong>\u00a0then follow this step.<\/h3>\n

Select\u00a0Export Selected folder >><\/strong>\u00a0Mark\u00a0Calendar folder >><\/strong>\u00a0Choose\u00a0PST as export option<\/strong>\u00a0>> Click export.<\/strong><\/p>\n

Conclusion<\/strong><\/h3>\n

I hope this informative blog will help you to extract the calendar from the OST file of MS Outlook. You can export calendars from Outlook healthy .ost file using the manual process. But in case of damaged .ost you can download the free demo version of MailsSoftware OST to PST converter.<\/p>\n

The demo version will download the calendar from the Outlook OST file in PST, EML, EMLX, HTML, MSG, and ICS file format in original properties.<\/p>\n

Both methods are free and safe you can use any one of them as per your choice.<\/p>\n","protected":false},"excerpt":{"rendered":"

As we all know, OST (offline storage table) is a data storage file that is…<\/p>\n","protected":false},"author":1,"featured_media":216,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1,3],"tags":[],"yoast_head":"\nHow to easily extract calendar data from OST file of Outlook?<\/title>\n<meta name=\"description\" content=\"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to easily extract calendar data from OST file of Outlook?\" \/>\n<meta property=\"og:description\" content=\"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/\" \/>\n<meta property=\"og:site_name\" content=\"MailsSoftware\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-14T07:02:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-19T09:48:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mailssoftware.org\/blogs\/wp-content\/uploads\/2023\/08\/Blue-Yellow-Digital-Marketing-Facebook-Cover-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"984\" \/>\n\t<meta property=\"og:image:height\" content=\"554\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/\",\"url\":\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/\",\"name\":\"How to easily extract calendar data from OST file of Outlook?\",\"isPartOf\":{\"@id\":\"https:\/\/mailssoftware.org\/blogs\/#website\"},\"datePublished\":\"2023-08-14T07:02:19+00:00\",\"dateModified\":\"2025-08-19T09:48:12+00:00\",\"author\":{\"@id\":\"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/b802f013015864a665eb669030eb0f90\"},\"description\":\"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.\",\"breadcrumb\":{\"@id\":\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mailssoftware.org\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to easily extract calendar data from OST file of Outlook?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mailssoftware.org\/blogs\/#website\",\"url\":\"https:\/\/mailssoftware.org\/blogs\/\",\"name\":\"MailsSoftware\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mailssoftware.org\/blogs\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/b802f013015864a665eb669030eb0f90\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d9d98afc0d159daf528cdab4e47fce3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d9d98afc0d159daf528cdab4e47fce3?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/mailssoftware.org\/blogs\"],\"url\":\"https:\/\/mailssoftware.org\/blogs\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to easily extract calendar data from OST file of Outlook?","description":"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/","og_locale":"en_US","og_type":"article","og_title":"How to easily extract calendar data from OST file of Outlook?","og_description":"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.","og_url":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/","og_site_name":"MailsSoftware","article_published_time":"2023-08-14T07:02:19+00:00","article_modified_time":"2025-08-19T09:48:12+00:00","og_image":[{"width":984,"height":554,"url":"https:\/\/mailssoftware.org\/blogs\/wp-content\/uploads\/2023\/08\/Blue-Yellow-Digital-Marketing-Facebook-Cover-1.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/","url":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/","name":"How to easily extract calendar data from OST file of Outlook?","isPartOf":{"@id":"https:\/\/mailssoftware.org\/blogs\/#website"},"datePublished":"2023-08-14T07:02:19+00:00","dateModified":"2025-08-19T09:48:12+00:00","author":{"@id":"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/b802f013015864a665eb669030eb0f90"},"description":"Do you need your Outlook calendar in a local drive? Read this post to extract the calendar from Outlook in ICS file format.","breadcrumb":{"@id":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mailssoftware.org\/blogs\/extract-calendar-from-ost-file-outlook\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mailssoftware.org\/blogs\/"},{"@type":"ListItem","position":2,"name":"How to easily extract calendar data from OST file of Outlook?"}]},{"@type":"WebSite","@id":"https:\/\/mailssoftware.org\/blogs\/#website","url":"https:\/\/mailssoftware.org\/blogs\/","name":"MailsSoftware","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mailssoftware.org\/blogs\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/b802f013015864a665eb669030eb0f90","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailssoftware.org\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d9d98afc0d159daf528cdab4e47fce3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d9d98afc0d159daf528cdab4e47fce3?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/mailssoftware.org\/blogs"],"url":"https:\/\/mailssoftware.org\/blogs\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/posts\/205"}],"collection":[{"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/comments?post=205"}],"version-history":[{"count":6,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/posts\/205\/revisions"}],"predecessor-version":[{"id":517,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/posts\/205\/revisions\/517"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/media\/216"}],"wp:attachment":[{"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/media?parent=205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/categories?post=205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mailssoftware.org\/blogs\/wp-json\/wp\/v2\/tags?post=205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}