Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Jul 21, 2024

Bulk Rename - Replace _ with space using PowerShell

How to Bulk Rename - Replace _ with space using PowerShell?


Execute below command in PowerShell to replace it,

Make sure you enter correct path.

FYI - it will rename sub folders as well.


Get-ChildItem "C:\Path\to\Files" -Recurse | Rename-Item -NewName {$_.name -replace '_',' '}

Jan 14, 2023

In Windows, how do I format a flash drive as FAT32?

Some Windows OS does not have a native option for formatting a drive in FAT32 format through the GUI; it does have the NTFS and exFAT file system options, but these are not as widely compatible as FAT32.

While Windows Vista does have a FAT32 option, no version of Windows can format a disk larger than 32 GB as FAT32.

Therefore, to format a drive in FAT32 format, you will have to either use a third-party FAT32 format utility, or manually force Windows to format your drive as FAT32 from the command line using diskpart.

Oct 25, 2022

How to find your Windows Product Key in the Registry Editor?



Use below method to get your Windows activation key using Registry Editor:

How to find your Windows product key using Command Prompt (CMD)

win10 product activation key find


 You can try below method to find your Windows activation product key via Command Prompt.

Alternate methods given in blog:

  1. PowerShell
  2. Registry Editor
  3. Third party applications/ software.

How to find your Office key from system?

 

Find Microsoft Office Key

In most cases we use loose/forget activation keys after installing Microsoft office in system.

Then we can't recover activation key from our key even though its in our system.

I was facing same problem when I was looking for my previous activation key to re-activate Microsoft Office.  I found below method working 100% with open code (no spam) or hidden trick.

You can apply below steps to get you lost Office Activation key.

Oct 16, 2022

2048 Game - Free Open Source Code (HTML5, CCS3 & JavaScript)

 
Get free open source code for 2048 game, built using HTML5, CSS3 and JavaScript language. You can also play it online, learn web game development and enjoy the game. Also you can contribute to enhance current 2048 game to new level.

2048 is a clone version of popular game 1024 available on Play Store. Source code is written in HTML5CSS3 and JavaScript language. If you are familiar with these web languages then we would suggest you to contribute in this stunning game and display your skills to the whole world. This game is licensed under the well-known MIT License.

Dec 2, 2016

Download and Install JAVA (JDK & JRE) for Windows

Download and Install JAVA (JDK & JRE) for Windows


JAVA JDK JRE - D4Techs

You can download and install latest version of JAVA (JDK, JRE) from it's official site. To know how to do this read the entire content given on D4Techs. While building a java application we require JDK to compile and JRE to run the application. So have to install it on our machine first.


Bulk Rename - Replace _ with space using PowerShell

How to Bulk Rename - Replace _ with space using PowerShell? Execute below command in PowerShell to replace it, Make sure you enter correct p...