Nov 112016
 

DU arbeitest mit Office 365  auf einem fremden PC und vergisst ein Fenster zu schließen?

  1. Möglichkeit: Passwort ändern
  2. Möglichkeit Laut MS Support erfolgt nach 6 Stunden! ein Loggout
  3. Du bist Admin und kannst die LogouZeit selbst einstellen:

Software installieren:

https://technet.microsoft.com/en-us/library/dn568015.aspx

= unter Windows Powershellerweiterungen

We can achieve this through PowerShell :

Step 1

Need to install Azure AD module PowerShell tool :

Prerequisite Program :  Microsoft Online Services Sign-In Assistant for IT Professionals BETA  : http://www.microsoft.com/en-us/download/details.aspx?id=41950

Manage Windows Azure AD using Windows PowerShell  : http://technet.microsoft.com/en-us/library/jj151815.aspx

After installation Right Click and Launch Windows Azure AD PowerShell as Administrator

Step 2

Connect PowerShell to Office 365 by running the below mentioned commands.

Set-ExecutionPolicy unrestricted -Force

$LiveCred = Get-Credential

connect-msolservice -credential $Livecred

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $LiveCred -Authentication Basic -AllowRedirection

Import-PSSession $Session

When you see the credential prompt, please enter your Office 365 Global Administrator’s Login credentials and press enter

Step 3

Copy and run the following command line as it is paste it on the PowerShell and press enter

Set-OrganizationConfig -ActivityBasedAuthenticationTimeoutInterval 00:45:00

In the above mentioned command time format is HH:MM:SS, so set it according to your requirement.

Sorry, the comment form is closed at this time.