Check Proxy settings from Powershell

To check the proxy settings like ProxyOveride or if it is enabled or not: Get-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” To disable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 0 To enable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 1  

Continue Reading

IE Enable/Disable Proxy Settings via Registry

Whatever the reason may be to enable or disable proxy, here is a simple registry hack to turn it on or off. Open powershell in admin mode. Enable: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 1 Disable: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 0 The above method require an IE restart, alternatively if you don’t want […]

Continue Reading

Remove licensing from ESXi host

WARNING: This is for education/informational testing/development purposes only, and should not be used on a production server. WARNING: This trick will only work with an ESX(i) stand alone server.  It will not work if the ESX(i) server is connected to a vCenter Server, as the vCenter Server knows better than to let you do this.  […]

Continue Reading

How to remove hidden network adapters

Windows automatically hides devices that are not presently connected to the system, but they still exist in Windows’ configuration. This is especially problematic when changing virtual network adapters and not being able to remove IP configurations from old adapters. To resolve: Click Start, click Run, type cmd.exe, and then press ENTER. Type “set devmgr_show_nonpresent_devices=1“, and […]

Continue Reading

Quick and Simple Way to Export DHCP Scope Settings From One Server to Another

Applies to: Windows Server 2008 R2, Windows Server 2012R2, Windows Server 2016 From the command prompt on the source DHCP server run the following command: netsh dhcp server export c:\dhcp.dat all 2.  Copy the “dhcp.dat” file to the new, or destination, DHCP server and run the following command: netsh dhcp server import c:\dhcp.dat all While […]

Continue Reading

“Host SMBus controller not enabled!”

CentOS guest instances in VMware sometimes come up with the boot error message: piix4_smbus 0000:00:007.3: Host SMBus controller not enabled! This error is being caused because VMware doesn’t actually provide that level interface for CPU access, but Ubuntu try to load the kernel module anyway. How to fix it: sudo nano /etc/modprobe.d/blacklist.conf add the line: blacklist […]

Continue Reading