So, you deploy a GPO to Window 10 clients, but your in a hurry to get the clients to check in... As a SysAdmin for many years I would log…
Create an ISO file with PowerShell post by Ben Liebowitz
Recently I came across this post. As a VMware admin, you often want to create an ISO as a quick method to copy files or installation files to a VM.…
List Computer Object in an Active Directory OU using PowerShell
How to get a list of computer objects in an active directory OU ( tested against Windows 2016 Active Directory ) A quick PowerShell script using Get-ADComputer command, a wild…
Trend Micro OfficeScan 11 XG – Executables and Logs
The following is a list of key executables and a description of there task or roles when working with Trend Micro OfficeScan 11 XG. This is not a complete list.…
VMworld 2018 registration is open! Take…
Any of my contacts going to VMworld 2018? Registration is open with early-bird rates VMworld 2018 registration is open! Take... No matter what path you’re on, you’ll discover the technology,…
VMware vCenter Single Sign-On – Invalid Credentials – Native Platform Error code 1765328360
Logging in to the vCenter Server Appliance fails with the error: Failed to authenticate user or Failed to authenticate principal for tenant vsphere.local 6.5 update1 KB on issue https://kb.vmware.com/s/article/2147174 Logging…
Sysinternals – Permissions, LoggedOn, Endpoints
How to Get the permission on folders: PowerShell: Get-ChildItem | Get-ACL Path | Owner | Access or more in depth use: GUI based : Run AccessEnum against the drive or…
Client failed to RDP to RDS server following Windows Server Patching – CredSSP updates for CVE-2018-0886
CredSSP updates for CVE-2018-0886 That Monday morning issue when servers were patched on a Sunday... All Windows 10 clients fail to RDP to the RDS server following Windows Server Patching.…
Check / Set / Sync Time Source for Windows Servers
To set the time ( Tested against Windows 2016) Launch CMD as administrator exampled c:\time 09:00:00 AM - This will set the time to 9am Note a time source…
Get-AdUser -Filter {Multiple Filters Complex } -Properties | Export to CSV
#Import AD modules import-module servermanager Add-WindowsFeature -Name "RSAT-AD-PowerShell" -IncludeAllSubFeature #List AD user accounts and show DisplayName, Email, Title and export to CSV Get-ADUser -Filter * -Properties DisplayName, EmailAddress, Title |…