Using Non-Maskable Interrupt (NMI) facilities to troubleshoot unresponsive VMware Virtual Machine. 1, Need to identify the ESXi host name, Where the hung VM running. 2, Login to ESXi server using Putty and run ‘vmdumper –l’ for find world id(wid) of the hung VM 3, Run ‘vmdumper <wid> nmi. 4, After send NMI signal, we can see dump creation in the VM console. 5. Export the System log on particular VM,
Get the Windows 10 Key from Powershell and VB script Get the windows key from Powershell PS C:\WINDOWS\system32> (Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey xxxxx-xxxxx-xxxxx-xxxxx-xxxxx -================================= Set WshShell = CreateObject("WScript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) Function ConvertToKey(Key) Const KeyOffset = 52 i = 28 Chars = "BCDFG-HJKMP-QRTVW-XY234-6789" Do Cur = 0 x = 14 Do Cur = Cur * 256 Cur = Key(x + KeyOffset) + Cur Key(x + KeyOffset) = (Cur \ 24) And 255 Cur = Cur Mod 24 x = x -1 Loop While x >= 0 i = i -1 KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput If (((29 - i) Mod 6) = 0) And (i <> -1) Then i = i -1 KeyOutput = "-" & KeyOutput End If Loop While i >= 0 ConvertToKey = KeyOutput End Function
Removing invalid linked clone entries automatically using the ViewDBChk tool in VMware Horizon View 5.3 and later versions (2118050) he ViewDbChk tool allows administrators to scan for and fix provisioning errors that can not be addressed using View Administrator C:\Program Files\VMware\VMware View\Server\tools\bin viewdbchk.cmd --scanMachines --desktopName Intertrust_Global_Desktop_x64 --limit 6 --force To run the View DbChk tool: If required, unzip the tool into a new folder. Click Start > Run , type cmd , and click OK . The Command Prompt window opens. Navigate to the ViewDbChk tool: For version Horizon View 6.1, ViewDbChk is located under: C:\Program Files\VMware\VMware View\Server\Tools\bin . For Horizon View 5.3 or 6.0, navigate to the folder created during the unzip process in step 1. Enter ViewDbChk with the required flags as listed below into the command prompt to find and clean your database ...
Comments
Post a Comment