PowerShell: Find Computers Last Logon Date
Oct23

PowerShell: Find Computers Last Logon Date

KB ID 0001612 Problem I had to find the last time a particular server had logged on for a client the other week, so we knew for sure it was dead! Solution The two commands you may need are; Locate Servers Last Login Time Get-ADComputer -Filter {OperatingSystem -Like ‘*SERVER’} -Properties lastlogondate,operatingsystem | Select name,laslogondate,operatingsystem Locate Clients Last Login Time Get-ADComputer -Filter...

Read More
Why is my Computer So Slow?
Nov17

Why is my Computer So Slow?

KB ID 0000290  Problem “Why is my computer running slowly” “My computer is not as fast as it was” “What’s making it run so slow?” “It just Crawls” “I have to turn in on, then go and make a cup of coffee” These are questions every techy hates “Why is my PC running so slowly?”, my reply is always “How long have you had it?” If its a business...

Read More
PowerShell Web Access
Nov17

PowerShell Web Access

KB ID 0001036 Problem One of my goals for this year is to become more proficient with PowerShell. During my studies I came across PowerShell Web access and thought it was so cool, I’d have a play with it. What is PowerShell Web Access? It’s a web service that runs on a Server 2012 IIS web server. It lets you remote connect to that host (via https) and then launch a PowerShell secure connection to any machine in your...

Read More
Cisco AnyConnect – Securing with Microsoft Certificate Services
Nov17

Cisco AnyConnect – Securing with Microsoft Certificate Services

Part 1 (How to Configure Microsoft Certificate Services for AnyConnect) KB ID 0001030  Problem I’ve done a lot of AnyConnect deployments, and I’ve even done them with certificates in the past. I’ve seen plenty of articles and blogs that say ‘It would be better to use a PKI deployment like Microsoft Certificate Services’, but there’s very little info out there on how to set it up. I have a client...

Read More