- Turn off Windows Update and Background Intelligent Transfer Service
- Open the Start menu search, type “cmd”, and then select the “Run as administrator” option to launch an elevated Command Prompt.
- Execute the command net stop wuauserv and net stop bits in order.
- Close Command prompt
- Delete the update files in the SoftwareDistribution folder
- Navigate to C:\Windows\SoftwareDistribution and select all the files and folders there.
- Right-click on the selected items and select Delete. If you fail to delete them, restart your computer and try again.
- Turn on the services again
- Launch Command Prompt in Admin mode.
- Run the command net start wuauserv and net start bits one by one.
- Exit Command Prompt.
“No problem can be solved from the same level of consciousness that created it.” Albert Einstein (1879-1955)
Wednesday, 28 December 2022
How to fix Windows 11 update stuck at 0%, 61%, 99%, 100%
Saturday, 10 December 2022
Setup TFT Server on Windows
Find the Windows Product Key
PowerShell
powershell "(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey"
Command Prompt
Sunday, 4 September 2022
Unsupported Transceiver in Cisco Catalyst Switch Sub-module
All SFP modules contain a number of recorded values in their EEPROM and include
- Vendor Name
- Vendor ID
- Serial Number
- Security Code
- CRC
Chrome Browser: Managed by the Organization on a Personal Computer
"If you have Microsoft Windows, Apple macOS, or Linux devices that are no longer being used in your organization, you might decide to repurpose and distribute them for personal use. Or, some users might purchase a second-hand Windows or macOS device, where Chrome browser was previously managed by an administrator in a school, company, or other group.
If devices are not properly reset, an administrator might still manage Chrome browser. Before you repurpose a device, stop managing or delete the Chrome browser." Reference
Tuesday, 19 July 2022
How to Disable ‘Show More Options’ from the Right Click Menu in Windows 11
- Click on the Start Menu and Search for “Command Prompt”.
- Press “Run as Administrator” under Command Prompt
- Once Command Prompt’s window opens you can put the following command and press enter:
Tuesday, 22 February 2022
ARP and Clear ARP Cache Entries
Windows
- View arp cache: arp -a
- Clear arp cache: netsh interface ipv4 delete arpcache
- View arp cache: arp -n
- Clear arp cache: ip -s -s neigh flush all
How to Get Full Context Menus in Windows 11
- Open Registry Editor
- Navigate to HKEY_CURRENT_USER\SOFTWARE\CLASSES\CLSID\
- Create a new registry key called {86ca1aa0-34aa-4e8b-a509-50c905bae2a2} underneath CLSID
- Create a new key called InprocServer32 underneath {86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
- Open the (Default) key in InprocServer32 and set its value to blank, then click OK.
- Close registry editor and reboot
Saturday, 19 February 2022
Can't Delete ARP Cache on Windows
arp -d produce an error:
The ARP entry deletion failed: The parameter is incorrect.
Use the following command instead:
netsh interface ip delete arpcache
SQL: Generate a range of numbers
SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n), (VALU...
-
//convert BASE64 string to Byte{} array function base64ToArrayBuffer(base64) { var binaryString = window.atob(base64); var binar...
-
static void Main(string[] args) { // create a dummy list List<string> data = GetTheListOfData(); // split the lis...
-
var htmlToPdf = new NReco.PdfGenerator.HtmlToPdfConverter(); htmlToPdf.PageFooterHtml = @"<div style='text-align:right; font-s...