Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions src/content/docs/reference/policies/SignOut.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "SignOut"
description: "Configure sign-out behavior for enterprise users."
category: "Authentication"
---

Configure sign-out behavior for enterprise users.

By default, shutting the browser down signs the session out, so the next launch requires the user to sign in again.
Set this policy to lock the session on shutdown instead, so that returning users only need to unlock it.

## Examples

<PolicyExample policy="SignOut" />

## Values

- `Shutdown`: Controls what happens to the session when the browser shuts down.
- `Action`: (**required**) A string, one of:
- `lock`: Lock the session, so the next launch only requires the user to unlock.
- `signout`: Sign the session out, so the next launch requires a full sign-in.
This is what happens when the policy is not set.

## Compatibility

<PolicyCompat policy="SignOut" />

**CCK2 Equivalent:** N/A\
**Preferences Affected:** N/A
1 change: 1 addition & 0 deletions src/plugins/inject-oma-uri.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const NO_ADMX_EQUIVALENT = new Set([
"EnterprisePoliciesEnabled", // Registry bootstrap, outside the ADMX namespace.
"MicrosoftEntraSSO", // macOS only.
"SecurityLogging", // Configured through the admin console, not local policy.
"SignOut", // Configured through the admin console, not local policy.
"Watermark", // Configured through the admin console, not local policy.
]);

Expand Down
Loading