How to Get Weather Forecast In PowerShell
We will use an open source web service wttr.in to fetch the weather forecast. Wttr.in can be used not only to check the weather, but also for some other purposes.…
A Drink of Technology for the Thirsty Mind
We will use an open source web service wttr.in to fetch the weather forecast. Wttr.in can be used not only to check the weather, but also for some other purposes.…
Creating a real-time IT dashboard is essential for IT professionals for managing their environments and to be proactive. Every sysadmin should be able to monitor their environment and should send…
Install the following components on your system to connect to your Microsoft Azure subscription using PowerShell: Microsoft Online Service Sign-in Assistant for IT Professionals RTW Select the appropriate version of…
IMAP and POP3 are disabled on Exchange Server 2013 and 2016 servers by default. Chances are if you need to enable it, you’ll need to enable it on all your…
Open PowerShell in admin mode and enter the following: Make sure to have a .csv file with a column name of “Username” and “Password” Import-Module ActiveDirectory $UserPwds = Import-CSV C:\users\msgeek\desktop\Users.CSV…
Occasionally accidents happen and important emails or things like calendar events get deleted. If you are unlucky you won’t be able to recover the deleted items the easy way over…
To configure a user to view another users mailbox, follow these steps: 1) This step will show you what your execution policy is on your computer. Depending on what execution…
How to add, and remove, contacts and calendars permissions for users of Office 365 by using PowerShell. This can be useful should you have trouble trying to add permissions over…
In Windows PowerShell 3.0, use the Get-CimInstance cmdlet, and select the LastBootUptime property from the Win32_Operatingsystem WMI class: PS C:\> Get-CimInstance -ClassName win32_operatingsystem | select csname, lastbootuptime
If you need a list of users and their respective proxy addresses then the command below will do this 🙂 Get-ADUser –Filter * –Properties proxyaddresses | Select-Object Name, @{L =…