For calculating the available storage given a certain number of disks, nodes, and RF:
“No problem can be solved from the same level of consciousness that created it.” Albert Einstein (1879-1955)
Sunday, 8 January 2023
HCI - Calculating the Available Storage
Wednesday, 28 December 2022
How to fix Windows 11 update stuck at 0%, 61%, 99%, 100%
- 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.
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:
Analysis Service in Power BI Report Server
We couldn’t connect to the Analysis Services server. Make sure you’ve entered the connection string correctly... link
-
//convert BASE64 string to Byte{} array function base64ToArrayBuffer(base64) { var binaryString = window.atob(base64); var binar...
-
var htmlToPdf = new NReco.PdfGenerator.HtmlToPdfConverter(); htmlToPdf.PageFooterHtml = @"<div style='text-align:right; font-s...
-
static void Main(string[] args) { // create a dummy list List<string> data = GetTheListOfData(); // split the lis...