Posted On March 31, 2019

IT Infrastructure Systems Design

kimconnect 0 comments
blog.KimConnect.com >> Virtualization , Windows >> IT Infrastructure Systems Design

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Function to Install Application and Its PowerShell Wrapper

# This function checks on whether a particular app has a corresponding PowerShell wrapper. If…

PowerShell: Quick Snippet to Remove Virtual Machine Snapshots in VMM

$vmNames=@( 'MACHINE1', 'MACHINE2' ) foreach($vmName in $vmNames){ $checkpoint = Get-SCVMCheckpoint -VM $vmName if($checkpoint){$checkpoint|%{Remove-SCVMCheckpoint -VMCheckpoint $_…

Remote Desktop Logon Error: ‘the user account used to connect to remote PC did not work

Symptom: The user account did not work error Resolution:In the instance that we've experienced, it…