Skip to content

Commit

Permalink
Add StartDownloadsInTempDirectory to README
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaply committed Jul 11, 2022
1 parent c800c68 commit f791e0f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Policies can be specified using the [Group Policy templates on Windows](https://
| **[`ShowHomeButton`](#showhomebutton)** | Show the home button on the toolbar.
| **[`SSLVersionMax`](#sslversionmax)** | Set and lock the maximum version of TLS.
| **[`SSLVersionMin`](#sslversionmin)** | Set and lock the minimum version of TLS.
| **[`StartDownloadsInTempDirectory`](#startdownloadsintempdirectory)** | Force downloads to start off in a local, temporary location rather than the default download directory.
| **[`SupportMenu`](#supportmenu)** | Add a menuitem to the help menu for specifying support information.
| **[`UserMessaging`](#usermessaging)** | Don't show certain messages to the user.
| **[`UseSystemPrintDialog`](#usesystemprintdialog)** | Print using the system print dialog instead of print preview.
Expand Down Expand Up @@ -5666,6 +5667,40 @@ Value (string):
}
}
```
### StartDownloadsInTempDirectory
Force downloads to start off in a local, temporary location rather than the default download directory.

**Compatibility:** Firefox 102\
**CCK2 Equivalent:** N/A\
**Preferences Affected:** `browser.downloads.start_downloads_in_tmp_dir`

#### Windows (GPO)
```
Software\Policies\Mozilla\Firefox\StartDownloadsInTempDirectory = 0x1 | 0x0
```
#### Windows (Intune)
OMA-URI:
```
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/StartDownloadsInTempDirectory
```
Value (string):
```
<enabled/> or <disabled/>
```
#### macOS
```
<dict>
<key>StartDownloadsInTempDirectory</key>
<true/> | <false/>
</dict>
```
#### policies.json
```
{
"policies": {
"StartDownloadsInTempDirectory": true | false
}
```
### UserMessaging

Prevent Firefox from messaging the user in certain situations.
Expand Down

0 comments on commit f791e0f

Please sign in to comment.