├── .gitignore ├── LICENSE.md ├── README.md ├── scripts ├── README.md ├── add_to_startup.ps1 ├── archive_executable.ps1 ├── disable_edge_ui.ps1 ├── disable_firewall.ps1 ├── disable_screensaver.ps1 ├── disable_windows_key.ps1 ├── disable_windows_update.ps1 ├── download_folder.ps1 ├── download_from_bitbucket.ps1 ├── download_release.ps1 ├── enable_autologin.ps1 ├── install_chocolatey_development.ps1 ├── install_chocolatey_production.ps1 ├── launch_application_cycle.ps1 ├── publish_folder.ps1 ├── publish_release.ps1 ├── publish_to_bitbucket.ps1 ├── set_admin_username.ps1 ├── set_background.ps1 ├── set_computer_name.ps1 ├── set_ip.ps1 ├── set_power_settings.ps1 ├── set_scheduled_reboot.ps1 ├── set_timezone.ps1 └── settings │ ├── config.ps1 │ ├── power_settings.conf │ └── power_settings.pow ├── set_configuration.ps1 ├── setup_development.ps1 └── setup_production.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/add_to_startup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/add_to_startup.ps1 -------------------------------------------------------------------------------- /scripts/archive_executable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/archive_executable.ps1 -------------------------------------------------------------------------------- /scripts/disable_edge_ui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/disable_edge_ui.ps1 -------------------------------------------------------------------------------- /scripts/disable_firewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/disable_firewall.ps1 -------------------------------------------------------------------------------- /scripts/disable_screensaver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/disable_screensaver.ps1 -------------------------------------------------------------------------------- /scripts/disable_windows_key.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/disable_windows_key.ps1 -------------------------------------------------------------------------------- /scripts/disable_windows_update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/disable_windows_update.ps1 -------------------------------------------------------------------------------- /scripts/download_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/download_folder.ps1 -------------------------------------------------------------------------------- /scripts/download_from_bitbucket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/download_from_bitbucket.ps1 -------------------------------------------------------------------------------- /scripts/download_release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/download_release.ps1 -------------------------------------------------------------------------------- /scripts/enable_autologin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/enable_autologin.ps1 -------------------------------------------------------------------------------- /scripts/install_chocolatey_development.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/install_chocolatey_development.ps1 -------------------------------------------------------------------------------- /scripts/install_chocolatey_production.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/install_chocolatey_production.ps1 -------------------------------------------------------------------------------- /scripts/launch_application_cycle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/launch_application_cycle.ps1 -------------------------------------------------------------------------------- /scripts/publish_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/publish_folder.ps1 -------------------------------------------------------------------------------- /scripts/publish_release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/publish_release.ps1 -------------------------------------------------------------------------------- /scripts/publish_to_bitbucket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/publish_to_bitbucket.ps1 -------------------------------------------------------------------------------- /scripts/set_admin_username.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_admin_username.ps1 -------------------------------------------------------------------------------- /scripts/set_background.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_background.ps1 -------------------------------------------------------------------------------- /scripts/set_computer_name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_computer_name.ps1 -------------------------------------------------------------------------------- /scripts/set_ip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_ip.ps1 -------------------------------------------------------------------------------- /scripts/set_power_settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_power_settings.ps1 -------------------------------------------------------------------------------- /scripts/set_scheduled_reboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_scheduled_reboot.ps1 -------------------------------------------------------------------------------- /scripts/set_timezone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/set_timezone.ps1 -------------------------------------------------------------------------------- /scripts/settings/config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/settings/config.ps1 -------------------------------------------------------------------------------- /scripts/settings/power_settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/settings/power_settings.conf -------------------------------------------------------------------------------- /scripts/settings/power_settings.pow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/scripts/settings/power_settings.pow -------------------------------------------------------------------------------- /set_configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/set_configuration.ps1 -------------------------------------------------------------------------------- /setup_development.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/setup_development.ps1 -------------------------------------------------------------------------------- /setup_production.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/HEAD/setup_production.ps1 --------------------------------------------------------------------------------