Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by lineonecorp
at 2024-07-20 13:18:37
Point:500 Replies:10 POST_ID:829040USER_ID:11943
Topic:
Outlook Groupware Software;;Powershell
I have a bunch of individual PST's - is there a scripted way to merge them into a single PST e.g. with Powershell? Please not I do not want any 'manual' solutions.
Author: lineonecorp replied at 2024-07-29 01:26:45
Perfect. Thanks.
Expert: thims replied at 2024-07-28 03:31:48
Yes. It would be something like this:
@echo offset CLI=C:Program Files (x86)ReliefJet EssentialsExecutorCli.exeset TARGET=D:Testset PROFILE=Outlook"%CLI%" /p Profile="%PROFILE%" /u OutlookStorageCreate TargetFile="%TARGET%PSTMerged.pst"for %%f in (*.pst) do ( "%CLI%" /p Profile="%PROFILE%" /p File="%%f" /u OutlookStorageMerge For=* Target=\PSTMerged)"%CLI%" /p Profile="%PROFILE%" /u OutlookStorageCreate TargetFile="%TARGET%PSTMerged.pst" Detach=True 1:2:3:4:5:6:7:8:9:10:
Edit CLI, TARGET and PROFILE variables (CLI = path to ReliefJet's ExecutorCli.exe, TARGET = path to destination folder, PROFILE = Outlook profile name). Then put this code in, say, Merge.bat file, put this file in folder that contains your pst1.pst, pst2.pst, .... and run it from there.
This batch creates (or opens) %TARGET%PSTMerge.pst file, merges all *.pst in the current folder into PSTMerge.pst and then detaches PSTMerge from your Outlook profile.
This batch creates (or opens) %TARGET%PSTMerge.pst file, merges all *.pst in the current folder into PSTMerge.pst and then detaches PSTMerge from your Outlook profile.
Author: lineonecorp replied at 2024-07-26 19:55:46
Thanks. The batch file I take it would be from Reliefjets?
Expert: thims replied at 2024-07-25 00:35:01
Sure. You can have a batch file that will do it automatically.
Author: lineonecorp replied at 2024-07-24 14:02:26
Thanks for jumping on this. I will give it a gander. Quick question - try before I try before I buy: will this allow batching? In other words I point to a folder of PST's - PSTfolder which has in it: pst1, pst2,pst3 -and I say 'Merge' and voila they are merged into PSTmerged.
Assisted Solution
Expert: thims replied at 2024-07-23 13:50:08
250 points EXCELLENT
I'm one of the developers. You can download the trial and try before buy. You can merge Outlook storages (including PST files) or merge Outlook folders. There are tools for splitting, exporting to PST and many more (over 90 utilities) included.
Here is the example of the command line:
Here is the example of the command line:
ExecutorCli.exe /p Profile="Outlook" /u OutlookStorageMerge For=\SourceStorage Target=\TargetStorage 1:
where "Outlook" is the name of your Outlook profile, SourceStorage and TargetStorage are paths to the required storages. The product provides a GUI tool that constructs command lines automatically.
Moreover, you can contact support and we'll provide you with ready-to-run scripts for your particular needs free of charge.
Moreover, you can contact support and we'll provide you with ready-to-run scripts for your particular needs free of charge.
Author: lineonecorp replied at 2024-07-23 12:48:15
Thanks. However I don't see any reference to merging PST's. Have you used it for that purpose? If so what command/script did you use? It's not practical for me to buy the product or spend time on it unless I know for sure it can do what I want.
Accepted Solution
Expert: thims replied at 2024-07-23 07:42:42
250 points EXCELLENT
There is a commercial tool: ReliefJet Essentials. Professional Edition provides command line that can be easily utilized to merge PST files or any other Outlook storages/mailboxes.
Author: lineonecorp replied at 2024-07-20 19:46:06
Thanks. I looked over this but I'm not sure that this is exactly what I am looking for. I don't want to import or export. I have two or more PST's and I want to merge them into one - stick them into a folder somewhere, run a script and voila I have one PST file.
For instance a folder contains monday.pst, tuesday.pst and wednesday.pst. I run my script and now the folder contains combined.pst which is monday.pst, tuesday.pst and wednesday.pts combined into one big PST.
For instance a folder contains monday.pst, tuesday.pst and wednesday.pst. I run my script and now the folder contains combined.pst which is monday.pst, tuesday.pst and wednesday.pts combined into one big PST.
Expert: duncanb7 replied at 2024-07-20 13:25:02
Take a look at this link that using PowerShell to merge PST file without using third party software
https://www.simple-talk.com/sysadmin/exchange/importing-psts-with-powershell-in-exchange-2010-sp1/
Duncan
https://www.simple-talk.com/sysadmin/exchange/importing-psts-with-powershell-in-exchange-2010-sp1/
Duncan