Inital commit.

This commit is contained in:
2019-11-11 19:22:39 -05:00
parent f89d330f14
commit a052b43b22
80 changed files with 5989 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
REM Set the value for how many folders Outlook should display
REM Note: this should be at least 500 (Outlook's default value)
set FOLDER_LIMIT=1000
REM Create the registry key and value to change Outlook's folder limit
reg add "HKLM\SYSTEM\CurrentControlSet\services\MSExchangeIS" /ve /f
reg add "HKLM\SYSTEM\CurrentControlSet\services\MSExchangeIS\ParametersSystem" /ve /f
reg add "HKLM\SYSTEM\CurrentControlSet\services\MSExchangeIS\ParametersSystem" /v objtFolderView /t REG_DWORD /d %FOLDER_LIMIT% /f