If you’re running VirtualBox on Windows 11 and notice a green turtle icon in the bottom right corner of your VM window, you’re not alone. This icon indicates that VirtualBox is running without hardware virtualization (VT-x/AMD-V), which severely impacts performance and compatibility. Continue reading
Category Archives: Reference
Disable Clipboard History on Samsung Android Phone
The default built-in Samsung keyboard maintains a clipboard history which cannot be easily disabled. Importantly, the Samsung keyboard collects clipboard history even if another keyboard is used! Continue reading
Fix Slow Start Menu Search in Windows 11
If the Windows 11 Start Menu is really slow to display search results, try resetting the Client WebExperience and Client CBS apps. Run the following from an elevated Powershell prompt:
Get-AppxPackage -AllUsers *MicrosoftWindows.Client.WebExperience* | Reset-AppxPackage Get-AppxPackage *MicrosoftWindows.Client.WebExperience* | Reset-AppxPackage Get-AppxPackage *MicrosoftWindows.Client.CBS* | Reset-AppxPackage
Logging and Reviewing DNS Client queries in Windows using PowerShell
By default, Windows does not log DNS queries, but the log can be enabled. Continue reading
Synchronizing Windows User Folders with Resilio Sync
When syncing a windows User profile folder, there are some paths withing the profile folder that will not sync, or are not desirable to sync. To exclude these folders, take the following steps: Continue reading
Display Wi-Fi Keys in Windows Command Line or PowerShell
To retrieve a saved Wi-Fi key from the command line:
; List Profiles netsh wlan show profiles ; Get key for profile netsh wlan show profiles <SID Name> key=clear
References:
Force Files to Download rather than Open in browser
There are certain circumstances where it’s desirable to force files hosted on an Apache web server to download rather than rendering in the browser. This can be accomplished using the following .htaccess file… Continue reading
Hyper-V Coexistence
Disable Hyper-V
bcdedit /set hypervisorlaunchtype off
Enable Hyper-V
bcdedit /set hypervisorlaunchtype auto
Get Windows 10 Version from USB or ISO Image
From an elevated command prompt:
dism /Get-WimInfo /WimFile:I:\x64\sources\install.esd /index:1
Adjust drive letter and path accordingly. Alternatively, the filename may be .wim.
Connecting to a Windows 2000 Share from Windows 7
Open the “Local Security Policy” manager (can be found in the Start Menu search.
Navigate to Local Policies, Security Options. Then find the “Network security: LAN Manager authentication level” entry and set it to “Send LM &NTLM – use NTLMv2 session security if negotiated.”.
Alternatively, this policy can be set via the command line:
REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Lsa /v LmCompatibilityLevel /t REG_DWORD /d 00000001 /f
This shouldn’t adversely affect connection to Windows 7+ shares.
Source: http://www.dslreports.com/faq/16438
Update:
The setting above causes problems when attempting to connect to a remote desktop through a remote desktop gateway server (running Windows Server 2012 R2). It must be set to the default “Send NTLMv2 Only”.
This policy can be set via the command line:
REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Lsa /v LmCompatibilityLevel /t REG_DWORD /d 00000003 /f