Select a product
- Select a category.
Save Active Project only
Saves only the active project at the interval you specify. This setting is only used by Project if Auto Save is turned on.
If you enable this setting, Project will only save the active project at specified intervals.
If you disable or do not configure this setting, the user's default setting is used.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft Project 2016 |
| Category | Microsoft Project 2016 › Project Options › Save › Auto Save Options |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0ms projectoptionssave |
| Value Name | automaticsaveoption |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 2 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0ms projectoptionssave]
"automaticsaveoption"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0ms projectoptionssave]
"automaticsaveoption"=dword:00000002PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0ms projectoptionssave" -Name "automaticsaveoption" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0ms projectoptionssave" -Name "automaticsaveoption" -Value 2 -Type DWord