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
1
vote
4 answers

Not able to install python library on windows 10 server

I am already install Microsoft Visual C++ 2014 on my server.But not install full visual studio setup on server because space issue. I am trying to install this library. pip install libpff-python I am using above library for outlook PST data…
Anup Patil
  • 209
  • 2
  • 19
1
vote
0 answers

Custom records reader PST file format in Spark Scala

I am working on PST files, I have worked on writing custom record reader for a Mapreduce program for different input formats but this time it is going to be spark. I am not getting any clue or documentation on implementing record readers in…
BARATH
  • 364
  • 2
  • 17
1
vote
0 answers

Reset Outlook PST password programmatically

I am having trouble remembering my Outlook PST password, and cannot import that file into Outlook 2016. I have tried several forums, free password recovery software tools, but could not reset/recover the password. After browsing a lot, I found out…
Sagar
  • 2,778
  • 1
  • 8
  • 16
1
vote
2 answers

How to have powershell use a else statement to search another folder

I am trying to import some PST files into Outlook automatically, I currently am using the following script Add-type -assembly "Microsoft.Office.Interop.Outlook" | out-null $outlook = new-object -comobject outlook.application $namespace =…
1
vote
1 answer

Remove password protection from an outlook .pst file programmatically

I am working on a project which involves reading through a lot of Outlook.pst files. These files are all password protected but I have the password in question. The problem is that it's very tedious process opening each file in Outlook and enter in…
armannvg
  • 1,736
  • 1
  • 15
  • 29
1
vote
2 answers

When does PST display contexts from left to right and right to left?

Does the PST package always display contexts from right to left? In the query() function we use a string to represent a context. If I'm assuming that the context is specified from right to left (as it seems to be in the print() and cmine()…
histelheim
  • 4,938
  • 6
  • 33
  • 63
1
vote
1 answer

How to test if two lift values are significantly different from each other?

Consider this code: # Load libraries library(RCurl) library(TraMineR) library(PST) # Get data x <-…
histelheim
  • 4,938
  • 6
  • 33
  • 63
1
vote
0 answers

Comparing log-loss values for a probabilistic suffix tree?

In the PST package one can estimate the prediction quality of individual sequences using the log-loss, e.g: R> ex2 <- c("a-a-b", "a-b-a-a-b", "b-b-b-b-a") R> ex2 <- seqdef(ex2) R> predict(S1.p1, ex2, output = "logloss") logloss [1] 0.9183 [2]…
histelheim
  • 4,938
  • 6
  • 33
  • 63
1
vote
1 answer

Meaning of lag parameter in PST?

In the pmine() function in PST you can use lags. What is this lag? Does it mean that it ignores the lag first positions in the sequence? Or does it mean that you allow for lags within the subsequences? From the documentation it is hard to understand…
histelheim
  • 4,938
  • 6
  • 33
  • 63
1
vote
1 answer

What is the meaning of alpha in the context of an information gain pruning function?

In the PST package we use the value C as a cut-off for the information gain function used to prune the tree. The C value, for an alpha of 0.05 is calculated as follows: C95 <- qchisq(0.95, 1) / 2 What does it mean that the C value is based on an…
histelheim
  • 4,938
  • 6
  • 33
  • 63
1
vote
1 answer

how can I Parse/Index PST file to elasticsearch?

I am able to parse json file in elasticsaerch. is there anyway to parse/index Microsoft outlooks PST files to Elasticsearch indexes?? thank you very much
Fardin Behboudi
  • 459
  • 4
  • 15
1
vote
2 answers

How to open a PST with CDO installed on exchange server machine?

I want to read a standalone PST file on Exchange server machine. As Microsoft suggested we can't install the Outlook client on exchange server.I have installed the Exchange client and CDO 1.2 library on server. But still I am not able to open the…
1
vote
2 answers

Using Aspose To Open PST files & Copy Structure

I have an input folder full of msg email files, within these there are inbox, outbox, sent items etc. Is there any way I could use aspsoe to open the PST copy the files and structure to an output folder. I have tried PersonalStorage…
Nicola
  • 59
  • 7
1
vote
1 answer

Azcopy psts getting error 404 attempting to upload

I have been struggling to get pst files uploaded to my azure storage. I have talked with Microsoft support on the phone, at length, and it just feels like guesswork from their end so I thought I would try here. I have the Office 365 business…
1
vote
1 answer

Where do calendar messages in PST files store appointment times and dates?

I am using the PST File Format SDK to try and extract some appointment item data from an Outlook PST export: int main() { pst myfile(L"export.pst"); folder calendar = myfile.open_folder(L"Calendar"); for (folder::message_iterator msg =…
Alexandru
  • 12,264
  • 17
  • 113
  • 208