VMworld 2018 Barcelona By SteveinAWS, Powershell, Trend Micro, Veeam, Vembu, VMwareTag AWS, Barcelona, Cohesity, Dell, Hackathon, NetApp, Nutanix, PowerVKE, Trend Micro, Veeam, Vembu, vExpert, VMware, VMworld, VMworld2018 VMware Social Media…
VMworld 2018 Barcelona Highlights
Stephen Hackers from Hot Wired IT Solutions affiliate partner to HTG (Howell Technology Group) made the trip to VMworld Barcelona 2018 with Kevin Howell (HTG), Graham Wight (HTG) and Tony…
Dark Web Monitoring
What solution did you use?? I'm currently looking at the following products Digital Shadows Breach Alert (RepKnight) Onion Scan (Opensource) Digital Shadows and Breach Alert both seem to scan the…
List User Profile Status On A Client Windows 10 Machine
Run on client machine to see the status of user profiles on a Windows10 machine Type the following PowerShell command : gwmi win32_userprofile | select localpath, roamingpath, status
vSphere 6.7 Update 1 is now available!
vSphere 6.7 Update 1 is now available! Download VMware vSphere. Run fewer servers and reduce capital and operating costs using VMware vSphere to build a cloud computing infrastructure. VMware Social…
VMware vSphere Security – Getting Started…
VMware vSphere Security - Getting Started... Register for vSphere Security - Getting Started 60-Day Hands-on Lab Trial VMware Social Media Advocacy
New Release: PowerCLI 11.0.0
New Release: PowerCLI 11.0.0 New Release: PowerCLI 11.0.0 PowerCLI has been moving at quite the rapid pace over the last 2 years. In 2018, we’ve been releasing roughly every other…
List Computers in Specific OU which are Enabled and Output to CSV
# Out puts computer accounts including status Enabled True or False # Targets a specific OU # Lists computer names # OU Variable to set $OU_HotWiredUK_location = "OU=Computers,OU=HotWiredHQ,OU=UK,DC=test,DC=com" # Out…
List Members of a specific AD group
#List Members of a specific AD group – output Username and User Full Name Get-ADGroupMember -Identity "AD GROUP NAME" | Select samAccountName, Name
If Not Exists – Batch Script
Create a batch file to check a text file is in the location specified, else run a task. #This batch file checks to see if a text file is…