Mostrando entradas con la etiqueta Server. Mostrar todas las entradas
Mostrando entradas con la etiqueta Server. Mostrar todas las entradas

lunes, 29 de febrero de 2016

Get Office 365 users using Powershell

Sometimes, at work I need to check the licensed users in Office 365, I can check them from the Office 365 Admin website, but I’m not sure if I’m able to export them to an Excel (Or CSV file).

So, in order to do that I’ll do it using our little friend, the uncle PowerShell.

Before jumping into the commands, you will need to install some modules to connect to your Azure Office 365 platform.

  1. First install the  Microsoft Online Services Sign-In Assistant for IT Professionals RTW
  2. Then Azure Active Directory Module for Windows PowerShell (64-bit version) 
Now, open a powershell terminal and type:
 
PS C:\WINDOWS\system32> Connect-MsolService
A new window will pop up, enter your Office 365 credentials there. And then, if you don't have any error, you will be in. Now type the following command:
PS C:\WINDOWS\system32> Get-MsolUser | Where-Object {$_.isLicensed -eq "TRUE"} | Export-Csv C:\LicensedUsersOffice365.csv


And that is it, you will have an excel file of all your licensed users on Office 365.

lunes, 15 de junio de 2015

Remote Desktop Connection Manager

Remote Desktop Connection Manager

One of the best free software tool from Microsoft to administrate and manage Windows Server.
It's free, easy to use and very intuitive.


Download Link:

NOTE: For the installation you must to have .NET Framework version 2.0  installed in your pc/server.

Here is a link to install the .NET Framework version 3.5 and 2.0 in Windows 8, 8.1, 10 :)
https://msdn.microsoft.com/en-us/library/hh506443(v=vs.110).aspx

Kind regards.