Information Technology
Wednesday, 18 March 2020
Tuesday, 21 January 2020
How to reset ESXi evaluation license
- Login to the HOST via SSH or Shell
- Remove /etc/vmware/license.cfg
- Copy /etc/vmware/.#license.cfg to /etc/vmware/license.cfg
- Restart the vpxa service
Or simply copy the code below and paste it into your SSH session.
rm -r /etc/vmware/license.cfg
cp /etc/vmware/.#license.cfg /etc/vmware/license.cfg
/etc/init.d/vpxa restart
VM - Win Server 2016 No Network Adapter
Win Server 2016 VM Not Showing Network Adapter
The driver is usually installed with the VMware Tools installation.
Install VMWare Tools with Complete option
Reboot the VM.
To Find the Hyper-V host name from inside the VM
To Find the Hyper-V host name from inside the VM
You can find the Hyper-V host name in the guest VM’s registry at the following key:
HKLM\SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters
Monday, 18 November 2019
Refresh Wallpaper Force Fully using Command Line
Refresh Wallpaper Force Fully using Command Line
Run Command Prompt as Administrator
rundll32.exe user32.dll, UpdatePerUserSystemParameters
Friday, 8 November 2019
Enable Dot NET 3.5 Windows 10
Copy sxs folder to local system
run below command
Dism /online /enable-feature /featurename:NetFx3 /All
/Source:D:\sxs /LimitAccess
Thursday, 31 October 2019
Uninstalling .NET framework
If you were to use Remove-WindowsFeature PowerShell cmdlet, you can add the –whatif switch to see the list of features that would also be impacted.
Remove-WindowsFeature Net-Framework-45-Features –WhatIf
To completely Uninstall .NET framework , run below command.
Uninstall-WindowsFeature Net-Framework-45-Features
Wednesday, 30 October 2019
Thursday, 24 October 2019
Windows 2012 R2 Remote Booting Black Screen With Command Prompt Only
Windows 2012 R2 Remote Booting Black Screen With Command Prompt Only
If you ever find yourself in a situation where Windows Server 2012 R2 decides to spontaneously switch from regular GUI Windows to Windows Server Core, here’s how you switch it back.
Dism /online /enable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /all
The command will take a while, but when it is complete all your GUI goodies will return. After a reboot and a long wait you will get your Start menu back!
If you ever find yourself in a situation where Windows Server 2012 R2 decides to spontaneously switch from regular GUI Windows to Windows Server Core, here’s how you switch it back.
Dism /online /enable-feature /featurename:Server-Gui-Mgmt /featurename:Server-Gui-Shell /featurename:ServerCore-FullServer /all
The command will take a while, but when it is complete all your GUI goodies will return. After a reboot and a long wait you will get your Start menu back!
Subscribe to:
Posts (Atom)
Windows 10's God Mode
God Mode in Windows 10 gives you quick access to a ton of handy settings in one place. Right-click on the desktop and go to New > ...
-
ERROR : C:\Windows\system32>gpupdate /force Updating policy... Computer Policy update has completed successfully. User Policy coul...
-
Windows 2012 R2 Remote Booting Black Screen With Command Prompt Only If you ever find yourself in a situation where Win...
-
To Find the Hyper-V host name from inside the VM You can find the Hyper-V host name in the guest VM’s registry at the following key: ...