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
2
votes
1 answer

Predicting conditional probabilities based on contexts with only 1 state

It seems that PST cannot predict the conditional probabilities of the next state after contexts which consist of a single state, e.g. EX-EX Consider this code: # Load libraries library(RCurl) library(TraMineR) library(PST) # Get data x <-…
histelheim
  • 4,938
  • 6
  • 33
  • 63
2
votes
1 answer

Calculate lift for context-state relationship in a probabilistic suffix tree?

PST gives me probabilities and conditional probabilities for various contexts and following states. However, it would be very helpful to be able to calculate the lift (and its significance) of the relationship between a context and a following…
histelheim
  • 4,938
  • 6
  • 33
  • 63
2
votes
1 answer

Where in the sequence of a Probabilistic Suffix Tree does "e" occur?

In my data there are only missing data (*) on the right side of the sequences. That means that no sequence starts with * and no sequence has any other markers after *. Despite this the PST (Probabilistic Suffix Tree) seems to predict a 90% chance of…
histelheim
  • 4,938
  • 6
  • 33
  • 63
2
votes
2 answers

Getting log-likelihood from probabilistic suffix tree

Here is my code: library(RCurl) library(TraMineR) library(PST) x <- getURL("https://gist.githubusercontent.com/aronlindberg/08228977353bf6dc2edb3ec121f54a29/raw/c2539d06771317c5f4c8d3a2052a73fc485a09c6/challenge_level.csv") data <- read.csv(text =…
histelheim
  • 4,938
  • 6
  • 33
  • 63
2
votes
0 answers

SOLR index outlook pst file

I am trying to index an Outlook PST file to SOLR. I have heard about OutlookPSTParser but I am unsure how to use it in the following context. The code below works great for documents.
2
votes
1 answer

nmapi parsing pst files

is any sample how to parse pst files? official site has nothing
kusanagi
  • 14,296
  • 20
  • 86
  • 111
2
votes
1 answer

Apache Spark, reading outlook .pst file

I'm trying to read data in from Enron emails and then analyse it. Currently all the files are zipped and then in .pst format. Is there anyway to read the .pst data directly into spark? I'm currently going down the route of expanding the PST in…
2
votes
1 answer

Powershell: Get Attachments of E-Mails from PST File

Currently, I'm trying to get attachment names from E-Mails within a PST-File. I want to do this via Powershell. My code bracket works fine so far, except for one thing. It Just writes System.__ComObject as the attachments name. Any ideas? ## Path…
MaxM
  • 23
  • 1
  • 4
2
votes
1 answer

How can I extract EDB (ms exchange storage file) to PST Under Linux? (preferably in Python)

I can extract and read messages from PST files using libpst , but i want to extract from edb files too (not online exchange server but from offline files). And in Linux. Any python lib or any kind for linux commandline tool should help. Thanks.
Phyo Arkar Lwin
  • 6,673
  • 12
  • 41
  • 55
2
votes
0 answers

Outlook 2010 C# Interop -- Not Getting All Items in Inbox

My inbox has just over 16,000 items in it. I have a business need to grab all the items in this inbox and compare them against another data set. Using Outlook Interop, I was unable to get but about 5,000 items until I read this post on this site. In…
Dan7el
  • 1,995
  • 5
  • 24
  • 46
2
votes
2 answers

Registry key to find pst locations?

For outlook 2010 we had the outlook profiles set under:- HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows Messaging Subsystem\\Profiles. Similar location for outlook 2013 is:-…
Barun Sharma
  • 1,452
  • 2
  • 15
  • 20
2
votes
1 answer

How to convert time from UTC to PST in rails

I Ruby on rails application, i am getting time in UTC from database (i.e. in active record object). I want to convert the time to PST before displaying to UI. I tried doing this dataFromDB = DataTable.find_by_sql("select time from datatables"); …
Ajay
  • 473
  • 7
  • 25
2
votes
1 answer

Checking if pst file is password protected

Is there a way to check if a microsoft outlook pst file is password protected or not using c#. I'm trying to read the pst file using the below code. Microsoft.Office.Interop.Outlook.Application app = new…
agasthyan
  • 725
  • 3
  • 8
  • 17
1
vote
1 answer

Rename Folders in Outlook PST-File

since a few days I'm trying to rename the sent mail folder, deleted elements and the inbox folder via c#. I've tryed something like this: List mailItems = new List(); Outlook.Application app = new…
HW90
  • 1,953
  • 2
  • 21
  • 45
1
vote
3 answers

Where does Outlook store which PST files are mounted?

I'd like to programmatically add a PST file to a person's Outlook profile. I found some code here: http://www.eggheadcafe.com/community/aspnet/65/10030171/try-this-code.aspx While that does the trick, it still leaves the question - "Where does…
SqlRyan
  • 33,116
  • 33
  • 114
  • 199
1 2
3
13 14