Blogger Templates Skip to main content

Change Number of Days to Go Back to Previous Version of Windows




If you have installed a newer version of Windows 10 but are not happy with the update, you may return to the previous version of the OS that you had prior to the upgrade. In modern versions of Windows 10, the time frame before the files to go back are deleted is not very long. The user only has 10 days to observe and study any incompatibilities or issues with the big update and uninstall it.
This feature is new to Windows 10 version 1803.
Note:
It is possible to uninstall a recently installed Windows 10 build only if you haven't deleted the Windows.old folder. If you already deleted it, then the only option available for you is to perform a clean install of the previous operating system.

The option which allows restoring a previous version of Windows 10 can be found under Settings - Update & recovery - Recovery. It is called Go back to the previous version of Windows 10


The default time frame is 10 days, but you can increase it. To do so
1.       Open an elevated command prompt.
To see the current number of days available after upgrade, execute the command

dism /Online /Get-OSUninstallWindow

See the "Uninstall window" value.

2.       You can set this value representing the number of days from 2 to 60. To change the number of days, run the command

dism /Online /Set-OSUninstallWindow /Value:30

This command will set 30 days as the time frame. You Can change the value up to 60 days.

Follow: Facebook Page



Comments

Popular posts from this blog

How To Create The Matrix Rain In Command Prompt

Step 1: Open Notepad. Step 2: Copy and paste the below code in your notepad @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%. goto start       Step 3: Click on ” File ” and then ” Save As ” option. Save your file with a ” .bat ” extension i.e ” Matrix.bat “. Step 4: Run that batch file as an administrator. To enlarge The Screen Step 5: Right-click on the command prompt and Click on the properties. Step 6: Click on the Layout tab.  Step 7: Click On the window size section and enter your required resolution. Step 8: To apply changes Click on ok. To Stop The Matrix Rain: Just press CTRL + C, Then you will be asked: ” whether to terminate the job “. Now type ” y ” to stop the program. Tips : You can even add colors to your command prompt background and text. This is just by changing color codes i.e if you...

By passing windows 7/8/8.1/10 login password using ease of access

I am almost certain that this has been covered elsewhere. If you have seen this before, then I am sorry I wasted a precious few minutes of your life. 1, Boot up using a Windows 7/8/8.1/10 Installation CD or Bootable Pendrive. 2, At the first splash screen click “INSTALL NOW” then accept the license agreement click "NEXT". 3, Press "SHIT+F10" Simultaneously. Command prompt will open up. 4, Now u need to find out at what partition your OS is installed. you can check this by typing DISKPART>LIST DISK >SELECT DISK 1 > LIST VOL and in the volumes check for the BOOT partition and note down the volume label e.g "C" (it can be different for you). 5, Type in the following commands: cd C: cd Windows/system32 copy UtilMan.exe abc.exe copy cmd.exe Utilman.exe So what did we just do here? The first two commands changed our current working directory to "/Windows/system32". This location contains both "cmd.exe" (...

DHCP (Dynamic Host Configuration Protocol) | DNS (Domain Name System)

DHCP (Dynamic Host Configuration Protocol) DHCP is a network protocol that is used to assign various network parameters to a device. This greatly simplifies administration, since there is no need to assign static network parameters for each device separately. DHCP is a client-server protocol. A client is a device that is configured to use DHCP to request network parameters from a DHCP server. DHCP server maintains a pool of available IP addresses and assignes one of them to the host. A DHCP server can also provide some other parameters, such as: • subnet mask • default gateway • domain name • DNS server Cisco routers can be used as a DHCP server. DHCP process explained: DHCP client goes through the four step process:   1: A DHCP client sends a broadcast packet (DHCP Discover) to discover DHCP servers on the LAN segment. 2: The DHCP servers receive the DHCP Discover packet and respond with DHCP Offer packets, offering ...