Questions tagged [pst]

File format used by Microsoft Outlook to store data locally.

Personal Storage Table (pst) is a file format used by Microsoft Outlook to store data locally. This includes emails, calendar events etc.

196 questions
0
votes
2 answers

How to programatically write a PST file

Possible Duplicate: How can I create an Outlook PST file using .Net? How can I write an Outlook PST file with headers? Preferably in .NET, though C++ or anything else would be useful too I have looked at the PST SDK by Microsoft, but it appears…
chris
  • 581
  • 10
  • 25
0
votes
2 answers

What's the best way to deduplicate with the info I have?

I need to find and remove duplicate files (.pst) and eventually get the unique emails. Currently, I am using Powershell to recursively go through folders to find only .pst files and then export specific metadata into a .csv file. It has been…
User_1403834
  • 411
  • 2
  • 7
  • 20
0
votes
1 answer

VBS Script for listing out Outlook Profile Info

I have found some code on the Internet for listing out Outlook Profile Info and I would like to it, but it gives the error: Type mismatch:'[string: "A"]', at line 74 (code 800A000D). I don't know why it's not working. Here is the code: Option…
0
votes
1 answer

Merge pop pst into exchange pst file remotely

I have a pst file I want to upload to an exchange server and be made a permanent part of the exchange mailbox. Can this be accomplished by going into file->advanced->export->"import from another program" and importing the pst file? I need to make…
Scott S
  • 389
  • 7
  • 20
0
votes
1 answer

Using Outlook Redemption with VB

Ok so here is what I am trying to do: I need to access a bunch of PSTs on my computer, cycle through each email and make a modification to a text tag in the email then finish up with the same PST + modifications. I have found out that I need to use…
0
votes
1 answer

Reading pst (Outlook) files from IIS ASP.NET application

I have to create sort of a .PST file based Web Mail. I need to read all MailItems, Folders, Contacts and everything i can from PST files given by the user. I am currently using DCOM interop to create a Application and use Session to add my file's…
-1
votes
1 answer

How to convert UTC datetime into PST datetime in php

$utc_date = '2020-07-31T00:00:00.000Z'; Now i want this date in yyyy-mm-dd hh:mm:ss format like (2020-07-31 00:00:00), So can we achieve in PHP? How can we do it in easiest way?
-1
votes
1 answer

How to convert PST timezone date to Local TimeZone in Javascript?

I'm getting the date in PST TimeZone and need to convert it to local TimeZone. I'm developing a product in CRM so TimeZone can be changed user to user. I tried to use moment JS but for that, we need to specify the country/ city name and all I'm…
Sharique Khan
  • 162
  • 2
  • 12
-1
votes
2 answers

Displaying unix time in PST shows an extra hour

So I've a very basic form setup and I've this query running once it gets submitted $insert = "INSERT INTO data(name, time, time_end) VALUES ('".$name."', '".time()."', '".time()."' + 176400) ;"; mysqli_query($conn, $insert); and I've this…
i0N77
  • 43
  • 7
-1
votes
1 answer

Can I convert a Microsoft Outlook PST file to CSV on the Mac without having Outlook installed

I have a Microsoft Outlook PST file. However, I don't have Outlook installed. Is it possible to generate a CSV file on the Mac without having Outlook installed?
-1
votes
2 answers

.bat file to search for pst files

Can anyone help me with a (simple as possible) batch file I can unleash on a users profile to search for PST files. I would need to see the location of any PST files that were found. Thanks all
user1986920
  • 15
  • 1
  • 4
-2
votes
1 answer

How to read Outlook nickname list file (.NK2)?

Anyone know how to read Outlook nickname list file (.NK2)? Any document on how its format is?
user112020
-2
votes
2 answers

Create an Outlook Archive with Powershell

I have to create archive (.pst file) for mailbox in Outlook. I use an exchange server 2016. If i do the "microsoft way" (https://support.microsoft.com/en-us/office/archive-items-manually-ecf54f37-14d7-4ee3-a830-46a5c33274f6) i always find mails that…
-2
votes
1 answer

How to Convert EMLs to PST?

Do any one have the solution that how can I convert my EMLs to PST. I have searched a lot and couldn't find any suitable solution for JAVA..
Deepak Singh
  • 86
  • 4
  • 27
-2
votes
1 answer

Combining multiple personal folder inboxes into one using VBA/Outlook

I am wondering if there is a way using VBA/Outlook to look through a number of personal folders (all added to Outlook and called personal folders) and copy the contents of the inboxes (the folder will always be called Inbox) to a single…
1 2 3
13
14