Showing posts with label logon. Show all posts
Showing posts with label logon. Show all posts

Wednesday, April 29, 2015

Get list of active users and last logon time in Office365 PowerShell

This PowerShell command will give you the list of users in the system and their last logon time:

Get-mailbox -resultsize unlimited| Get-MailboxStatistics | select displayname, lastlogontime | sort-object lastlogontime


Monday, March 14, 2011

auto login on Windows 7

For a residential user, I was looking for an autologin for Windows 7. For XP, I used Tweakui, a part of the Windows XP Powertoys. But for Windows 7, I found these instructions:

  • Press the Windows key + R on your keyboard to launch the “Run” dialog box.
  • Type in control userpasswords2
  • Press Enter. The User Accounts window will display.
  • Uncheck the option “Users must enter a user name and password to use this computer”
  • Click “OK”
  • You will then be prompted to enter the current password and confirm it.
  • After doing so, you will no longer be prompted to enter your password upon login.

I found those instructions here:

Tuesday, December 9, 2008

turning off numlock at startup

To turn off numlock for the occasional computer that has numlock on when you are on the log on screen:

Set Numlock State on Startup

Start/Run/Regedit

HKEY CURRENT USER\Control Panel\Keyboard\InitialKeyboardIndicators

0 = numberlock off
2 = numberlock on

If you want the numlock on at the welcome screen you also need to change:

HKEY USERS\.DEFAULT\Control Panel\Keyboard\InitialKeyboardIndicators same number values as above.