2
2
I don't want to care about my C:\ drive. I want to be able to casually reinstall Windows whenever I want, and be up and running quickly, with the programs, configuration, and data that I like. This process should be automated and repeatable, and driven by something I can check into github.
Off the top of my head, some of the things I want to know about:
- The best way to get all of my programs installed:
- Should I install everything from scratch into the new installation? If so, what's the best way to do that? Chocolatey?
- Or is there a way to install all my programs on a separate disk to the OS, and have them 'import' somehow into my fresh Windows installation? Does this differ from program to program?
- Automatic configuration of the Windows settings I care about. Is there a better way than powershell scripts?
- Separation of my data from the OS. E.g., is it safe to symlink my entire User folder from a separate disk? I like Windows' Libraries feature, but that doesn't cover AppData, or all of the programs that write user data to
~/.program_name
or~/Documents/Program Name
- What about all the Windows updates?
- What about drivers?
- Anything else I should think about?
I hope this isn't too broad of a question; I think it would be nice to have a bit of a canonical reference on how to make your home PC into cattle instead of a pet.
(Final note: I am a developer, with some Puppet experience, but ideally answers to this question should be useful for future readers who are superusers, but not necessarily programmers.)
Well I think this could be done quite a number of ways or even a combination of both. You could slipstream the drivers, service packs, windows updates, and other programs. In terms of settings or registry values I believe you would need to script these – Eric F – 2014-10-03T11:41:15.630
To make it more disposable and up to date you could also have an ISO to USB tool in combination with a slipstream one and then every so often update a USB stick with the slipstream install and any scripts. That way you can add updates as they come out too. – Eric F – 2014-10-03T11:44:16.977
Why not VMware? Take an image of what you want as a 'default' ? – Dave – 2014-10-03T11:48:28.247