X-Setup Pro Plugins
Note for everybody who is visiting this page via a search engine like Google: This page shows the HTML version (with full source code) of one of our many plugins included with our tweaker utility X-Setup Pro. With this tool you can change over 1,700 settings for Windows and other applications - settings that are normally hidden deep inside the registry. Read more about X-Setup Pro on our Product page.
If you are interested in using this plugin, because it contains a tweak you would like to have, it's easy as 1-2-3-4:
- Download X-Setup Pro from our
Download page.
- Install it on your computer and execute it.
- On the welcome screen, select "Classic mode".
- Simply use the information about the path and the name of the plugin shown below to easily locate it.
Plugin details
This is the HTML representation of the plugin PST (Ansi) Max Size (Version 1.01) which can be found in the following path(s) in X-Setup Pro classic: Program Options\Microsoft Office\MS Office 2003\Outlook
The plugin can be executed on the following Windows versions (Operation Systems):
Any Windows version; Windows 95 Windows 98 Windows ME Windows 2000 Windows XP and Windows 2003
Description :
Normally each Outlook installation has at least one *.PST file (Personal Folder) associated with it. This PST file is used to store all your information like contacts, emails, notes etc.
There are two different types of PST files: ANSI (also known as 97-2002 PST) and Unicode (2003 and up PST). Regardless which version of a PST file you are using, they share the same problem: Both have a maximum file size and if the file size grows above this limit, the PST file is trashed and you might loose all information in it.
The limit for the ANSI version if it is 2048 MB and the Unicode version has a maximum size of 3984500 MB.
This setting can be used to prevent the PST file to grow above the limit you specify here. Any PST file Outlook deals with will be check every time new data is about to be added if it will be above the specified maximum size. If this is true, Outlook will throw an error and do not allow the new data to be added. Please note that this error message will say something like "You do not have the required access permission", it will not tell you that the PST file is getting to big!
Normally, a limit of 2020 MB will be specified for the ANSI version of PST files and the Unicode version has no maximum size.
However, you might also use this setting to prevent a user to create bigger PST files than your backup-device can handle. For example, if you backup the data on CD-R, the maximum file size could be set to 700 MB so it still fits on a CD.
To disable any maximum file size restriction, simply clear the field.
The plugin was created by Xteq Systems Copyright © Xteq Systems
The plugin offers the following user-interface controls: Max. Size (MB)
Below is the code of this plugin written in "VBScript". Please note
that this code can only be executed inside X-Setup Pro.
sP="HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook"
sV=sP & "\PST\MaxFileSize"
Sub Plugin_Initialize
if RegPathExists(sP) then
i=RegReadValue(sV)
SetUIElement 1,i
else
Call Disable()
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
i=GetUIElement(1)
if len(i)>0 then
Call RegWriteValue(sV,i,2)
else
If RegValueExists(sV) then Call RegDeleteValue(sV)
end if
End Sub
Sub Plugin_Terminate
End Sub
Comment by the author:
http://www.planet-outlook.de/pst.htm
You can get more detailed information about this plugin inside the application X-Setup Pro. Get the most popular tweaker software for free: Download X-Setup Pro
|