DU arbeitest mit Office 365 auf einem fremden PC und vergisst ein Fenster zu schließen?
- Möglichkeit: Passwort ändern
- Möglichkeit Laut MS Support erfolgt nach 6 Stunden! ein Loggout
- Du bist Admin und kannst die LogouZeit selbst einstellen:
Software installieren:
https://technet.microsoft.com/en-us/library/dn568015.aspx
= unter Windows Powershellerweiterungen
- However you can set a time frame for the session validity.
- Please refer this article : https://support.microsoft.com/en-in/kb/2573296
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.