treekmostly22
New Member
Windows PowerShell gives a proper accurate result for OST to PST conversion. But the users who don't know how to use PowerShell scripting there would find it tough for those. Let me show you the straight part of the OST conversion to Outlook PST.
To convert an OST file to PST using Windows PowerShell, start by running Windows PowerShell as an administrator.
1. Step: Pass Cmd:- “PS C:\Users\256> Set-ExecutionPolicy -ExecutionPolicy Unrestricted”
2. Step: Verify the Execution policy > Enter Capital Y as "yes"
3. Step: Navigate your desktop user and your OST files.
“cd C:\Users\YourUsername\Desktop”
4. Step: Pass Cmd:- New-Object -ComObject Outlook.Application | % {
$_.Session.AddStoreFromFile("C:\Users\YourUsername\Desktop\yourfile.ost")
}
5. Step: Now you have the CSV File and Convert it into a PST File.
To convert an OST file to PST using Windows PowerShell, start by running Windows PowerShell as an administrator.
1. Step: Pass Cmd:- “PS C:\Users\256> Set-ExecutionPolicy -ExecutionPolicy Unrestricted”
2. Step: Verify the Execution policy > Enter Capital Y as "yes"
3. Step: Navigate your desktop user and your OST files.
“cd C:\Users\YourUsername\Desktop”
4. Step: Pass Cmd:- New-Object -ComObject Outlook.Application | % {
$_.Session.AddStoreFromFile("C:\Users\YourUsername\Desktop\yourfile.ost")
}
5. Step: Now you have the CSV File and Convert it into a PST File.