stombeur / windows-headstart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quickly replicate your current software from/to windows machines

Currently using chocolatey, MS Web Platform Installer and git.

Chocolatey can be installed by typing the following in a cmd.exe window:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

In order to export current situation from your source machine in a regular cmd.exe session:
@powershell -noprofile -executionpolicy unrestricted -file .\export_choco.ps1 @powershell -noprofile -executionpolicy unrestricted -file .\export_webpi.ps1 @powershell -noprofile -executionpolicy unrestricted -file .\export_repo.ps1

In order to import current situation on your target machine in a regular cmd.exe session:
@powershell -noprofile -executionpolicy unrestricted -file .\import_choco.ps1 @powershell -noprofile -executionpolicy unrestricted -file .\import_webpi.ps1 @powershell -noprofile -executionpolicy unrestricted -file .\import_repo.ps1

Happy replicating!

About