PDA

View Full Version : How to Create a Custom Refresh Image in Windows 8



razorsedge
December 7th, 2012, 04:06 AM
60022

how you can create a custom refresh image. This means next time you refresh your Windows 8 PC, you can use a custom image instead of the one that shipped with your PC. When you refresh your PC, all your files as well as Metro applications that you downloaded from the Windows store are kept. This is great, however, all your non-metro applications and PC settings are removed. If you are like me and have a lot of non-metro apps this can be very annoying, but you can fix this by creating a refresh image that already has your apps installed and your settings tweaked.
Creating A Custom Refresh Image Right-click the bottom left corner of your screen and select Command Prompt (Admin) from the context menu.

60023


To create a custom refresh image we use the recimg.exe utility.


recimg /createimage C:\CustomRefreshImages\Image1



60026

The reason we are using a subfolder on our drive is that you can actually create multiple refresh images and switch between them, to create another image we could do the following:


recimg /createimage C:\CustomRefreshImages\Image2



60027

When you create an image using the /createimage parameter, the image you create is automatically set as the default refresh image. If you have multiple refresh images you can choose the active image by using the /setcurrent parameter.


recimg /setcurrent C:\CustomRefreshImages\Image1



60024

You can also use the /showcurrent parameter to show the active image.

60025

That’s all there is to it, now you just need to refresh you pc.

article page: http://www.howtogeek.com/108944/how-to-create-a-custom-refresh-image-in-windows-8/