Remotely Rename Computer’s Hostnames
Below is a PowerShell script that will change the Hostname of a domain computer remotely. You will need to build a .csv file of computer’s Hostnames you wish to change …
Below is a PowerShell script that will change the Hostname of a domain computer remotely. You will need to build a .csv file of computer’s Hostnames you wish to change …
If you need to zip up all the files in directory and send them to a new folder here is a quick PowerShell script that will work. This script will …
Smart card certificates can be annoying if you have to insert other coworker’s Common Access Card (CAC) into your system. A system can quickly fill up with dozens of users …
Microsoft disabled changing the local admin account of computers via GPO due to a security vulnerability. This link goes into further detail regarding this issue: MS14-025-Vulnerability If you want to change …
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\user\desktop\Users.CSV ForEach($User in $UserPwds) { …
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 …