Posts

Showing posts from June, 2019

How to monitor TFS version upgrades through backend Data Tier Servers

At times, TFS upgrades may take longer time than expected and you might have to handover the activity to somebody else in your team. But the challenge is that, your colleague may not be able to monitor the upgrade via TFS Admin Console GUI so, the turnaround is to connect the backend data tier server --> connect to tfs_configuration database and run below sql query to get detailed information on the status of TFS upgrade. Use TFS_configuration  Go  Select SJD.HostID, SH.Name, SJD.JobStatus, SJD.StartTime, SJD.EndTime, SJD.CompletedStepCount, SJD.TotalStepCount FROM tbl_ServicingJobDetail SJD Join tbl_ServiceHost SH on SH.HostID = SJD.HostID Order By StartTime desc Select top 10 * from dbo.tbl_ServicingStepDetail  Order By DetailTime desc

Install Telnet using Windows Command Prompt and PowerShell

Install Telnet using PowerShell Install-WindowsFeature -name Telnet-Client Install Telnet using Command Prompt dism /online /Enable-Feature /FeatureName:TelnetClient Note : in either scenario, open the cmd or PowerShell as Administrator 

How to identify and resolve the Azure VMs OS Blue Screen Issues after Windows Updates Failures

Issue : While trying to connect VM and seeing blue screen. This is happing after windows updates failures. Overview :  Blue screens are generally caused by problems with our computer’s hardware or drivers related. Sometimes, they can be caused by issues with Windows kernel or other registry entries mismatches.  When a blue screen occurs, Windows automatically creates a “minidump” such as memory dump file that contains information about the crash and saves it to our disk. We can view information about these minidumps to help identify the cause of the blue screen. Root Cause Analysis: After going through memory dump file in detailed, I came to know that few registry entries got replaced by recent windows updates failures, hence OS is not able to load with existing system boot entries and it’s causes the OS failures. How to fix the issues and start the  VM successfully: Since this is the VM and we can’t login with safe mode /network mode to trouble shoot the issues. We have to perform the