Know Computers More Here.
Tuesday, 10 March 2026
Friday, 30 January 2026
Network connections listing in Ubuntu
Open terminal
>>Command 1 lspci : will list all PCI devices
Now try this command:
lspci | egrep -i --color 'network|ethernet'
>>Also command 2 Ip Link
Ip link command shows network adapters
The command will list network cards available and installed and highlight Ethernet if found .
Wednesday, 3 December 2025
Bypass microsoft account login and windows 11 update windows 11
The command start ms-cxh:localonly (or start ms-cxsh:localonly as typed in the prompt, both referring to the same command) is used during the Windows 11 Out-of-Box Experience (OOBE) to bypass the Microsoft account requirement and proceed with creating a local user account.
This command is a replacement for the older OOBE\BYPASSNRO command, which Microsoft has started to remove in newer Windows 11 builds.
Commands:
start ms-cxh:localonly
ms-cxsh:localonly
windows 11 powershell command to check model number and serial number of computer
Get-CimInstance -ClassName Win32_ComputerSystem | Select-Object Model
For serial number
the Win32_ComputerSystem class does not contain a property named Serial.
To obtain the serial number, you should use the Win32_BIOS class instead
Get-CimInstance Win32_BIOS | Select-Object SerialNumber
Friday, 20 June 2025
windows 11 space cleanup
1. Delete search database .db files after stopping of windows search service
2. Use Disk cleanup tool to free space
3. Delete content in prefetch and temp folder by Run command and typing Temp and then ok then delete
Similarly delete content of prefetch folder
Thursday, 12 June 2025
Time zone configuration in Microsoft Windows 10 and Microsoft Windows 11
1.
Run command prompt as administrator
2. Enter command
tzutil /s "India Standard Time"
Replace India Standard Time with timezone of your choice
Wednesday, 18 September 2024
Trusted installer permission restore of a folder
Hi
Fir it in find user dialogue
Enter
NT Service\TrustedInstaller
And then ok
After it permission will be restored
Tuesday, 4 June 2024
User agent switch in Google Chrome windows
Procedure
Right-click on page in chrome and select Inspect. The browser displays an inspection panel.
Click on the three-dots settings icon in the inspection panel.
Select More tools and then Network conditions.
In the User agent section, disable Use browser default.
In the drop-down list, select Custom....
In the text box below Custom..., enter the UA string the browser should use.
Refresh the browser page. The page is fetched from the IP Office using the custom UA.
Subscribe to:
Comments (Atom)
-
1.Open a new window in Firefox and type "about:config" without the quotes and hit enter 2.Confirm that you want to continue In the...
-
I faced today this weird issue. During opening file pop up opens with options to set up printers. But I not gave print command & prompt ...
-
The command start ms-cxh:localonly (or start ms-cxsh:localonly as typed in the prompt, both referring to the same command) is used during th...