Path to MCSA for Windows 2016

Being an IT administrator involves more than just answering tickets and checking backups. A good IT administrator will be proactively seeking knowledge to become more valuable and efficient for his employer. One way to accomplish this is to become certified. Over the next several month I will work towards my MCSA for Windows Server 2016.… Continue reading Path to MCSA for Windows 2016

Query current versions of Firefox and Java from Internet.

Hello, again… With security risks caused by having outdated and vulnerable versions of Java and Firefox, it’s important you maintain the latest vendor releases. Here’s a short snippet of PS that will query that information for you to compare to your AD computers: $firefox = get-weburl -url “https://www.mozilla.org/en-US/firefox/releases/” -Content | fl * | findstr “releasenotes”… Continue reading Query current versions of Firefox and Java from Internet.

Powershell AD administrator – adding a new user.

Adding, removing, or modifying AD users are the most common tasks of any Windows administrator. Having a well defined Powershell script makes this job much easier and consistent. Okay, users my rough version of the new user: # Description: Creates a new AD user in OU=Office Users,OU=Everett Users,DC=Corp,DC=local Takes the like user and adds new… Continue reading Powershell AD administrator – adding a new user.

Managing ADSI Users with PowerShell

Platform: Windows 2012 Module Required: activedirectory Here are some quick and dirty ways to find locked out, disabled, expired, expiring, inactive, locked out, password expired, password never expires. Using Get-Aduser with a little more scripting get-aduser -filter * -properties * | select-object name, @{name=”lastlogon”;expression={[datetime]::fromfiletime($_.lastlogon)}} | s ort-object lastlogon The rest of the examples are from… Continue reading Managing ADSI Users with PowerShell

2018 New Years Resolutions?

It’s procedural for us to come up with resolutions for the New Year. Being a Windows administrator, RDP is a common way to carry out many tasks that now are fully compatibly with Powershell. If you are still running on an older version of Windows Server, e.g., Windows 2003, please just upgrade! My resolution is… Continue reading 2018 New Years Resolutions?

Inexpensively monitoring a network with more than 100 workstations and many servers.

This post is not a technical post with details on installing or troubleshooting Nagios, you can use Google for doing that much. This post is a short synopsis of what you need to get started with Nagios. Our budget for IT doesn’t include overhead for purchasing fancy network monitoring tools like Microsoft’s System Center. This… Continue reading Inexpensively monitoring a network with more than 100 workstations and many servers.

Best practices for remotely accessing servers for a small business.

The most common tasks a Windows administrator has is to remotely access their server. This is simplified by Microsoft providing a couple RDP licenses. It’s so easy, but can just as easily open up vulnerabilities to your entire network. Here are a few things to consider: There are automated systems always scanning for port 3389,… Continue reading Best practices for remotely accessing servers for a small business.