├── .github-actions ├── .gitattributes ├── .github │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE │ │ ├── announcement.yml │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── tool-request.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── codeql-analysis.yml │ │ ├── create_github_release.yml │ │ ├── create_pull_request.yml │ │ ├── linter.yml │ │ ├── merge_pull_request.yml │ │ └── update_github_release.yml ├── .gitignore ├── .vscode │ ├── settings.json │ └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs │ ├── create-image-and-azure-resources.md │ ├── debugging-failed-builds.md │ └── resources │ │ ├── askOnError.png │ │ ├── packerResourceGroup.png │ │ ├── resourceGroupName.png │ │ └── vmCredentials.png ├── helpers │ ├── CreateAzureVMFromPackerTemplate.ps1 │ └── GenerateResourcesAndImage.ps1 ├── images.CI │ ├── credscan-exclusions.json │ ├── download-repo.ps1 │ ├── linux-and-win │ │ ├── azure-pipelines │ │ │ ├── image-generation.yml │ │ │ ├── ubuntu1804.yml │ │ │ ├── ubuntu2004.yml │ │ │ ├── ubuntu2204.yml │ │ │ ├── windows2019.yml │ │ │ └── windows2022.yml │ │ ├── build-image.ps1 │ │ ├── cleanup.ps1 │ │ └── create-release.ps1 │ ├── macos │ │ ├── anka │ │ │ ├── Anka.Helpers.psm1 │ │ │ ├── CreateCleanAnkaTemplate.ps1 │ │ │ └── Service.Helpers.psm1 │ │ ├── azure-pipelines │ │ │ ├── image-generation.yml │ │ │ ├── macos1015.yml │ │ │ ├── macos11.yml │ │ │ └── macos12.yml │ │ ├── destroy-vm.ps1 │ │ ├── helpers.psm1 │ │ ├── move-vm.ps1 │ │ ├── select-datastore.ps1 │ │ └── validate-contributor.ps1 │ ├── measure-provisioners-duration.ps1 │ └── shebang-linter.ps1 └── images │ ├── linux │ ├── Ubuntu1804-Readme.md │ ├── Ubuntu2004-Readme.md │ ├── Ubuntu2204-Readme.md │ ├── config │ │ ├── ubuntu1804.conf │ │ ├── ubuntu2004.conf │ │ └── ubuntu2204.conf │ ├── post-generation │ │ ├── cleanup-logs.sh │ │ ├── environment-variables.sh │ │ └── systemd-linger.sh │ ├── scripts │ │ ├── SoftwareReport │ │ │ ├── SoftwareReport.Android.psm1 │ │ │ ├── SoftwareReport.Browsers.psm1 │ │ │ ├── SoftwareReport.CachedTools.psm1 │ │ │ ├── SoftwareReport.Common.psm1 │ │ │ ├── SoftwareReport.Databases.psm1 │ │ │ ├── SoftwareReport.Generator.ps1 │ │ │ ├── SoftwareReport.Java.psm1 │ │ │ ├── SoftwareReport.Rust.psm1 │ │ │ ├── SoftwareReport.Tools.psm1 │ │ │ └── SoftwareReport.WebServers.psm1 │ │ ├── base │ │ │ ├── apt-mock-remove.sh │ │ │ ├── apt-mock.sh │ │ │ ├── apt.sh │ │ │ ├── limits.sh │ │ │ ├── reboot.sh │ │ │ ├── repos.sh │ │ │ └── snap.sh │ │ ├── helpers │ │ │ ├── Common.Helpers.psm1 │ │ │ ├── SoftwareReport.Helpers.psm1 │ │ │ ├── Tests.Helpers.psm1 │ │ │ ├── etc-environment.sh │ │ │ ├── install.sh │ │ │ ├── invoke-tests.sh │ │ │ └── os.sh │ │ ├── installers │ │ │ ├── Configure-Toolset.ps1 │ │ │ ├── Install-AzureModules.ps1 │ │ │ ├── Install-PowerShellModules.ps1 │ │ │ ├── Install-Toolset.ps1 │ │ │ ├── aliyun-cli.sh │ │ │ ├── android.sh │ │ │ ├── apache.sh │ │ │ ├── aws.sh │ │ │ ├── azcopy.sh │ │ │ ├── azure-cli.sh │ │ │ ├── azure-devops-cli.sh │ │ │ ├── basic.sh │ │ │ ├── bazel.sh │ │ │ ├── bicep.sh │ │ │ ├── clang.sh │ │ │ ├── cleanup.sh │ │ │ ├── cmake.sh │ │ │ ├── codeql-bundle.sh │ │ │ ├── complete-snap-setup.sh │ │ │ ├── configure-environment.sh │ │ │ ├── containers.sh │ │ │ ├── docker-compose.sh │ │ │ ├── docker-moby.sh │ │ │ ├── dotnetcore-sdk.sh │ │ │ ├── dpkg-config.sh │ │ │ ├── erlang.sh │ │ │ ├── example.sh │ │ │ ├── firefox.sh │ │ │ ├── gcc.sh │ │ │ ├── gfortran.sh │ │ │ ├── git.sh │ │ │ ├── github-cli.sh │ │ │ ├── google-chrome.sh │ │ │ ├── google-cloud-sdk.sh │ │ │ ├── graalvm.sh │ │ │ ├── haskell.sh │ │ │ ├── heroku.sh │ │ │ ├── hhvm.sh │ │ │ ├── homebrew.sh │ │ │ ├── java-tools.sh │ │ │ ├── julia.sh │ │ │ ├── kotlin.sh │ │ │ ├── kubernetes-tools.sh │ │ │ ├── leiningen.sh │ │ │ ├── microsoft-edge.sh │ │ │ ├── miniconda.sh │ │ │ ├── mongodb.sh │ │ │ ├── mono.sh │ │ │ ├── mssql-cmd-tools.sh │ │ │ ├── mysql.sh │ │ │ ├── nginx.sh │ │ │ ├── nodejs.sh │ │ │ ├── nvm.sh │ │ │ ├── oc.sh │ │ │ ├── oras-cli.sh │ │ │ ├── packer.sh │ │ │ ├── phantomjs.sh │ │ │ ├── php.sh │ │ │ ├── pipx-packages.sh │ │ │ ├── post-deployment.sh │ │ │ ├── postgresql.sh │ │ │ ├── powershellcore.sh │ │ │ ├── preimagedata.sh │ │ │ ├── pulumi.sh │ │ │ ├── pypy.sh │ │ │ ├── python.sh │ │ │ ├── r.sh │ │ │ ├── ruby.sh │ │ │ ├── rust.sh │ │ │ ├── sbt.sh │ │ │ ├── selenium.sh │ │ │ ├── sphinx.sh │ │ │ ├── sqlpackage.sh │ │ │ ├── swift.sh │ │ │ ├── terraform.sh │ │ │ ├── validate-disk-space.sh │ │ │ ├── vcpkg.sh │ │ │ └── yq.sh │ │ └── tests │ │ │ ├── Android.Tests.ps1 │ │ │ ├── Apt.Tests.ps1 │ │ │ ├── Browsers.Tests.ps1 │ │ │ ├── CLI.Tools.Tests.ps1 │ │ │ ├── Common.Tests.ps1 │ │ │ ├── Databases.Tests.ps1 │ │ │ ├── DotnetSDK.Tests.ps1 │ │ │ ├── Haskell.Tests.ps1 │ │ │ ├── Java.Tests.ps1 │ │ │ ├── Node.Tests.ps1 │ │ │ ├── PowerShellModules.Tests.ps1 │ │ │ ├── RunAll-Tests.ps1 │ │ │ ├── Tools.Tests.ps1 │ │ │ ├── Toolset.Tests.ps1 │ │ │ └── WebServers.Tests.ps1 │ ├── toolsets │ │ ├── toolset-1804.json │ │ ├── toolset-2004.json │ │ └── toolset-2204.json │ ├── ubuntu1804.json │ ├── ubuntu2004.json │ └── ubuntu2204.pkr.hcl │ ├── macos │ ├── helpers │ │ ├── Common.Helpers.psm1 │ │ ├── SoftwareReport.Helpers.psm1 │ │ ├── Tests.Helpers.psm1 │ │ ├── Xcode.Helpers.psm1 │ │ └── Xcode.Installer.psm1 │ ├── macos-10.15-Readme.md │ ├── macos-11-Readme.md │ ├── macos-12-Readme.md │ ├── provision │ │ ├── assets │ │ │ ├── select-xamarin-sdk-v2.sh │ │ │ └── select-xamarin-sdk.sh │ │ ├── bootstrap-provisioner │ │ │ ├── change_password │ │ │ ├── installNewProvisioner.sh │ │ │ ├── kcpassword.py │ │ │ └── setAutoLogin.sh │ │ ├── configuration │ │ │ ├── add-certificate.swift │ │ │ ├── add-network-interface-detection.sh │ │ │ ├── autologin.sh │ │ │ ├── configure-hostname.sh │ │ │ ├── configure-machine.sh │ │ │ ├── configure-ssh.sh │ │ │ ├── configure-tccdb-macos.sh │ │ │ ├── disable-auto-updates.sh │ │ │ ├── environment │ │ │ │ ├── bashprofile │ │ │ │ └── bashrc │ │ │ ├── finalize-vm.sh │ │ │ ├── max-files.sh │ │ │ ├── ntpconf.sh │ │ │ ├── preimagedata.sh │ │ │ ├── screensaver-off.sh │ │ │ └── shell-change.sh │ │ ├── core │ │ │ ├── android-toolsets.sh │ │ │ ├── apache.sh │ │ │ ├── audiodevice.sh │ │ │ ├── aws.sh │ │ │ ├── azcopy.sh │ │ │ ├── bicep.sh │ │ │ ├── build-xcode-symlinks.sh │ │ │ ├── chrome.sh │ │ │ ├── cocoapods.sh │ │ │ ├── commonutils.sh │ │ │ ├── configure-toolset.ps1 │ │ │ ├── delete-duplicate-sims.rb │ │ │ ├── dotnet.sh │ │ │ ├── edge.sh │ │ │ ├── firefox.sh │ │ │ ├── gcc.sh │ │ │ ├── git.sh │ │ │ ├── golang.sh │ │ │ ├── graalvm.sh │ │ │ ├── haskell.sh │ │ │ ├── homebrew.sh │ │ │ ├── llvm.sh │ │ │ ├── miniconda.sh │ │ │ ├── mongodb.sh │ │ │ ├── nginx.sh │ │ │ ├── node.sh │ │ │ ├── nvm.sh │ │ │ ├── open_windows_check.sh │ │ │ ├── openjdk.sh │ │ │ ├── openssl.sh │ │ │ ├── php.sh │ │ │ ├── pipx-packages.sh │ │ │ ├── postgresql.sh │ │ │ ├── powershell.sh │ │ │ ├── pypy.sh │ │ │ ├── python.sh │ │ │ ├── reboot.sh │ │ │ ├── ruby.sh │ │ │ ├── rubygem.sh │ │ │ ├── rust.sh │ │ │ ├── safari.sh │ │ │ ├── stack.sh │ │ │ ├── swiftlint.sh │ │ │ ├── toolset.ps1 │ │ │ ├── vcpkg.sh │ │ │ ├── vsmac.sh │ │ │ ├── xamarin.sh │ │ │ ├── xcode-clt.sh │ │ │ ├── xcode-postbuild.sh │ │ │ ├── xcode-sims.sh │ │ │ └── xcode.ps1 │ │ └── utils │ │ │ ├── confirm-identified-developers.scpt │ │ │ ├── invoke-tests.sh │ │ │ ├── utils.sh │ │ │ └── xamarin-utils.sh │ ├── software-report │ │ ├── SoftwareReport.Android.psm1 │ │ ├── SoftwareReport.Browsers.psm1 │ │ ├── SoftwareReport.Common.psm1 │ │ ├── SoftwareReport.Generator.ps1 │ │ ├── SoftwareReport.Java.psm1 │ │ ├── SoftwareReport.Toolcache.psm1 │ │ ├── SoftwareReport.WebServers.psm1 │ │ ├── SoftwareReport.Xamarin.psm1 │ │ └── SoftwareReport.Xcode.psm1 │ ├── templates │ │ ├── macOS-10.15.json │ │ ├── macOS-11.anka.pkr.hcl │ │ ├── macOS-11.json │ │ ├── macOS-12.anka.pkr.hcl │ │ └── macOS-12.json │ ├── tests │ │ ├── Android.Tests.ps1 │ │ ├── BasicTools.Tests.ps1 │ │ ├── Browsers.Tests.ps1 │ │ ├── Common.Tests.ps1 │ │ ├── Databases.Tests.ps1 │ │ ├── Git.Tests.ps1 │ │ ├── Haskell.Tests.ps1 │ │ ├── Java.Tests.ps1 │ │ ├── LLVM.Tests.ps1 │ │ ├── Linters.Tests.ps1 │ │ ├── Node.Tests.ps1 │ │ ├── OpenSSL.Tests.ps1 │ │ ├── PHP.Tests.ps1 │ │ ├── PipxPackages.Tests.ps1 │ │ ├── Powershell.Tests.ps1 │ │ ├── Python.Tests.ps1 │ │ ├── Ruby.Tests.ps1 │ │ ├── RubyGem.Tests.ps1 │ │ ├── RunAll-Tests.ps1 │ │ ├── Rust.Tests.ps1 │ │ ├── System.Tests.ps1 │ │ ├── Toolcache.Tests.ps1 │ │ ├── WebServers.Tests.ps1 │ │ ├── Xamarin.Tests.ps1 │ │ └── Xcode.Tests.ps1 │ └── toolsets │ │ ├── Readme.md │ │ ├── Toolset.Tests.ps1 │ │ ├── toolset-10.15.json │ │ ├── toolset-11.json │ │ └── toolset-12.json │ └── win │ ├── Windows2019-Readme.md │ ├── Windows2022-Readme.md │ ├── post-generation │ ├── GenerateIISExpressCertificate.ps1 │ ├── InternetExplorerConfiguration.ps1 │ ├── Msys2FirstLaunch.ps1 │ └── VSConfiguration.ps1 │ ├── scripts │ ├── ImageHelpers │ │ ├── ChocoHelpers.ps1 │ │ ├── ImageHelpers.psd1 │ │ ├── ImageHelpers.psm1 │ │ ├── InstallHelpers.ps1 │ │ ├── PathHelpers.ps1 │ │ ├── TestsHelpers.ps1 │ │ ├── VisualStudioHelpers.ps1 │ │ └── test │ │ │ ├── ImageHelpers.Tests.ps1 │ │ │ └── PathHelpers.Tests.ps1 │ ├── Installers │ │ ├── Configure-Antivirus.ps1 │ │ ├── Configure-DynamicPort.ps1 │ │ ├── Configure-GDIProcessHandleQuota.ps1 │ │ ├── Configure-Shell.ps1 │ │ ├── Configure-Toolset.ps1 │ │ ├── Disable-JITDebugger.ps1 │ │ ├── Enable-DeveloperMode.ps1 │ │ ├── Finalize-VM.ps1 │ │ ├── Initialize-VM.ps1 │ │ ├── Install-AWS.ps1 │ │ ├── Install-AliyunCli.ps1 │ │ ├── Install-AndroidSDK.ps1 │ │ ├── Install-Apache.ps1 │ │ ├── Install-AzureCli.ps1 │ │ ├── Install-AzureCosmosDbEmulator.ps1 │ │ ├── Install-AzureDevOpsCli.ps1 │ │ ├── Install-AzureModules.ps1 │ │ ├── Install-Bazel.ps1 │ │ ├── Install-BizTalkBuildComponent.ps1 │ │ ├── Install-Choco.ps1 │ │ ├── Install-Chrome.ps1 │ │ ├── Install-CloudFoundryCli.ps1 │ │ ├── Install-CodeQLBundle.ps1 │ │ ├── Install-CommonUtils.ps1 │ │ ├── Install-DACFx.ps1 │ │ ├── Install-Docker.ps1 │ │ ├── Install-DotnetSDK.ps1 │ │ ├── Install-Edge.ps1 │ │ ├── Install-Firefox.ps1 │ │ ├── Install-Git.ps1 │ │ ├── Install-GitHub-CLI.ps1 │ │ ├── Install-GoogleCloudSDK.ps1 │ │ ├── Install-Haskell.ps1 │ │ ├── Install-IEWebDriver.ps1 │ │ ├── Install-JavaTools.ps1 │ │ ├── Install-Kotlin.ps1 │ │ ├── Install-KubernetesTools.ps1 │ │ ├── Install-LLVM.ps1 │ │ ├── Install-Mercurial.ps1 │ │ ├── Install-Mingw64.ps1 │ │ ├── Install-Miniconda.ps1 │ │ ├── Install-MongoDB.ps1 │ │ ├── Install-Msys2.ps1 │ │ ├── Install-MysqlCli.ps1 │ │ ├── Install-NET48.ps1 │ │ ├── Install-NSIS.ps1 │ │ ├── Install-Nginx.ps1 │ │ ├── Install-NodeLts.ps1 │ │ ├── Install-PHP.ps1 │ │ ├── Install-Pipx.ps1 │ │ ├── Install-PipxPackages.ps1 │ │ ├── Install-PostgreSQL.ps1 │ │ ├── Install-PowerShellModules.ps1 │ │ ├── Install-PowershellCore.ps1 │ │ ├── Install-PyPy.ps1 │ │ ├── Install-R.ps1 │ │ ├── Install-RootCA.ps1 │ │ ├── Install-Ruby.ps1 │ │ ├── Install-Rust.ps1 │ │ ├── Install-SQLOLEDBDriver.ps1 │ │ ├── Install-SQLPowerShellTools.ps1 │ │ ├── Install-Sbt.ps1 │ │ ├── Install-Selenium.ps1 │ │ ├── Install-ServiceFabricSDK.ps1 │ │ ├── Install-Stack.ps1 │ │ ├── Install-Toolset.ps1 │ │ ├── Install-VCRedist.ps1 │ │ ├── Install-VS.ps1 │ │ ├── Install-Vcpkg.ps1 │ │ ├── Install-Vsix.ps1 │ │ ├── Install-WDK.ps1 │ │ ├── Install-WebPlatformInstaller.ps1 │ │ ├── Install-WinAppDriver.ps1 │ │ ├── Install-WindowsFeatures.ps1 │ │ ├── Install-WindowsUpdates.ps1 │ │ ├── Install-Wix.ps1 │ │ ├── Install-Zstd.ps1 │ │ ├── Run-NGen.ps1 │ │ ├── Update-DotnetTLS.ps1 │ │ ├── Update-ImageData.ps1 │ │ └── Wait-WindowsUpdatesForInstall.ps1 │ ├── README.md │ ├── SoftwareReport │ │ ├── SoftwareReport.Android.psm1 │ │ ├── SoftwareReport.Browsers.psm1 │ │ ├── SoftwareReport.CachedTools.psm1 │ │ ├── SoftwareReport.Common.psm1 │ │ ├── SoftwareReport.Databases.psm1 │ │ ├── SoftwareReport.Generator.ps1 │ │ ├── SoftwareReport.Helpers.psm1 │ │ ├── SoftwareReport.Java.psm1 │ │ ├── SoftwareReport.Tools.psm1 │ │ ├── SoftwareReport.VisualStudio.psm1 │ │ └── SoftwareReport.WebServers.psm1 │ └── Tests │ │ ├── Android.Tests.ps1 │ │ ├── Apache.Tests.ps1 │ │ ├── BizTalk.Tests.ps1 │ │ ├── Browsers.Tests.ps1 │ │ ├── CLI.Tools.Tests.ps1 │ │ ├── ChocoPackages.Tests.ps1 │ │ ├── Databases.Tests.ps1 │ │ ├── Docker.Tests.ps1 │ │ ├── DotnetSDK.Tests.ps1 │ │ ├── Git.Tests.ps1 │ │ ├── Haskell.Tests.ps1 │ │ ├── Java.Tests.ps1 │ │ ├── LLVM.Tests.ps1 │ │ ├── MSYS2.Tests.ps1 │ │ ├── Miniconda.Tests.ps1 │ │ ├── Nginx.Tests.ps1 │ │ ├── Node.Tests.ps1 │ │ ├── PHP.Tests.ps1 │ │ ├── PipxPackages.Tests.ps1 │ │ ├── PowerShellModules.Tests.ps1 │ │ ├── RunAll-Tests.ps1 │ │ ├── Rust.Tests.ps1 │ │ ├── SSDTExtensions.Tests.ps1 │ │ ├── Shell.Tests.ps1 │ │ ├── Tools.Tests.ps1 │ │ ├── Toolset.Tests.ps1 │ │ ├── VisualStudio.Tests.ps1 │ │ ├── Vsix.Tests.ps1 │ │ ├── WDK.Tests.ps1 │ │ ├── WinAppDriver.Tests.ps1 │ │ ├── WindowsFeatures.Tests.ps1 │ │ └── Wix.Tests.ps1 │ ├── toolsets │ ├── toolset-2019.json │ └── toolset-2022.json │ ├── windows2019.json │ └── windows2022.json ├── .gitignore ├── Configure-IIS.ps1 ├── Disable-RealTimeMonitoring.ps1 ├── Docker ├── Install-DockerDesktop.ps1 └── Install-DockerTools.ps1 ├── Enable-PSRemoting.ps1 ├── Install-AzureTools.ps1 ├── Install-Boxstarter.ps1 ├── Install-CollaborationTools.ps1 ├── Install-Common.ps1 ├── Install-CosmosDb.ps1 ├── Install-DevTools.ps1 ├── Install-Dotfiles.ps1 ├── Install-DotnetCore.ps1 ├── Install-GitTools.ps1 ├── Install-GoTools.ps1 ├── Install-Java.ps1 ├── Install-MongoTools.ps1 ├── Install-MySql.ps1 ├── Install-NodeTools.ps1 ├── Install-OneDrive.ps1 ├── Install-OpenSsh.ps1 ├── Install-PgpTools.ps1 ├── Install-PostgreSql.ps1 ├── Install-PythonTools.ps1 ├── Install-ReactNative.ps1 ├── Install-VisualStudio2022.ps1 ├── Install-VsCode.ps1 ├── LICENSE ├── MacOS ├── .zshrc ├── Install-DevTools.sh ├── Install-Docker.sh ├── README.md ├── Setup.sh └── bash_profile ├── README.md ├── Run-ManualBasicInstall.ps1 ├── SQL-Server ├── Add-SqlServerAlias.ps1 ├── Install-SqlPowerShellModule.ps1 └── Install-SqlServer.ps1 ├── Sysprep.bat ├── Ubuntu └── README.md ├── Update-GitSubtree.ps1 ├── Use-Vagrant.ps1 ├── Vagrantfile.multi ├── Vagrantfile.template ├── Windows-10-Enterprise ├── Build.ps1 ├── autounattend.xml └── windows-10-enterprise.json ├── Windows-10-Pro ├── Build.ps1 ├── autounattend.xml └── windows-10-pro.json ├── Windows-2019 ├── Build-Minimal.ps1 ├── Build.ps1 ├── autounattend.xml ├── windows-2019-minimal.json └── windows-2019.json └── Windows-2022 ├── Build.ps1 ├── autounattend.xml └── windows-2022.json /.github-actions/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github-actions/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @actions/virtual-environments-owners 2 | -------------------------------------------------------------------------------- /.github-actions/.github/ISSUE_TEMPLATE/announcement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/ISSUE_TEMPLATE/announcement.yml -------------------------------------------------------------------------------- /.github-actions/.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github-actions/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github-actions/.github/ISSUE_TEMPLATE/tool-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/ISSUE_TEMPLATE/tool-request.yml -------------------------------------------------------------------------------- /.github-actions/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github-actions/.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github-actions/.github/workflows/create_github_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/create_github_release.yml -------------------------------------------------------------------------------- /.github-actions/.github/workflows/create_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/create_pull_request.yml -------------------------------------------------------------------------------- /.github-actions/.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github-actions/.github/workflows/merge_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/merge_pull_request.yml -------------------------------------------------------------------------------- /.github-actions/.github/workflows/update_github_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.github/workflows/update_github_release.yml -------------------------------------------------------------------------------- /.github-actions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.gitignore -------------------------------------------------------------------------------- /.github-actions/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.trimTrailingWhitespace": false 3 | } 4 | -------------------------------------------------------------------------------- /.github-actions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/.vscode/tasks.json -------------------------------------------------------------------------------- /.github-actions/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github-actions/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github-actions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/LICENSE -------------------------------------------------------------------------------- /.github-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/README.md -------------------------------------------------------------------------------- /.github-actions/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/SECURITY.md -------------------------------------------------------------------------------- /.github-actions/docs/create-image-and-azure-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/create-image-and-azure-resources.md -------------------------------------------------------------------------------- /.github-actions/docs/debugging-failed-builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/debugging-failed-builds.md -------------------------------------------------------------------------------- /.github-actions/docs/resources/askOnError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/resources/askOnError.png -------------------------------------------------------------------------------- /.github-actions/docs/resources/packerResourceGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/resources/packerResourceGroup.png -------------------------------------------------------------------------------- /.github-actions/docs/resources/resourceGroupName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/resources/resourceGroupName.png -------------------------------------------------------------------------------- /.github-actions/docs/resources/vmCredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/docs/resources/vmCredentials.png -------------------------------------------------------------------------------- /.github-actions/helpers/CreateAzureVMFromPackerTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/helpers/CreateAzureVMFromPackerTemplate.ps1 -------------------------------------------------------------------------------- /.github-actions/helpers/GenerateResourcesAndImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/helpers/GenerateResourcesAndImage.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/credscan-exclusions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/credscan-exclusions.json -------------------------------------------------------------------------------- /.github-actions/images.CI/download-repo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/download-repo.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/image-generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/image-generation.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu2204.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/ubuntu2204.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/windows2019.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/windows2019.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/azure-pipelines/windows2022.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/azure-pipelines/windows2022.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/build-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/build-image.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/cleanup.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/linux-and-win/create-release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/linux-and-win/create-release.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/anka/Anka.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/anka/Anka.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/anka/CreateCleanAnkaTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/anka/CreateCleanAnkaTemplate.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/anka/Service.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/anka/Service.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/azure-pipelines/image-generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/azure-pipelines/image-generation.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/azure-pipelines/macos1015.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/azure-pipelines/macos1015.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/azure-pipelines/macos11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/azure-pipelines/macos11.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/azure-pipelines/macos12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/azure-pipelines/macos12.yml -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/destroy-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/destroy-vm.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/move-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/move-vm.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/select-datastore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/select-datastore.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/macos/validate-contributor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/macos/validate-contributor.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/measure-provisioners-duration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/measure-provisioners-duration.ps1 -------------------------------------------------------------------------------- /.github-actions/images.CI/shebang-linter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images.CI/shebang-linter.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/Ubuntu1804-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/Ubuntu1804-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/linux/Ubuntu2004-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/Ubuntu2004-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/linux/Ubuntu2204-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/Ubuntu2204-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/linux/config/ubuntu1804.conf: -------------------------------------------------------------------------------- 1 | # Name of pool supported by this image 2 | POOL_NAME="Ubuntu 1804" 3 | -------------------------------------------------------------------------------- /.github-actions/images/linux/config/ubuntu2004.conf: -------------------------------------------------------------------------------- 1 | # Name of pool supported by this image 2 | POOL_NAME="Ubuntu 2004" 3 | -------------------------------------------------------------------------------- /.github-actions/images/linux/config/ubuntu2204.conf: -------------------------------------------------------------------------------- 1 | # Name of pool supported by this image 2 | POOL_NAME="Ubuntu 2204" 3 | -------------------------------------------------------------------------------- /.github-actions/images/linux/post-generation/cleanup-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/post-generation/cleanup-logs.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/post-generation/environment-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/post-generation/environment-variables.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/post-generation/systemd-linger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/post-generation/systemd-linger.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Android.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Android.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.CachedTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.CachedTools.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Common.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Databases.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Java.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Java.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Rust.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Rust.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.WebServers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/SoftwareReport/SoftwareReport.WebServers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/apt-mock-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/apt-mock-remove.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/apt-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/apt-mock.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/apt.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/limits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/limits.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/reboot.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/repos.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/base/snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/base/snap.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/Common.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/Common.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/SoftwareReport.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/SoftwareReport.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/Tests.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/Tests.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/etc-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/etc-environment.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/install.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/invoke-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/invoke-tests.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/helpers/os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/helpers/os.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/Configure-Toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/Configure-Toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/Install-AzureModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/Install-AzureModules.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/Install-PowerShellModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/Install-PowerShellModules.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/Install-Toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/Install-Toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/aliyun-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/aliyun-cli.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/android.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/apache.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/aws.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/azcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/azcopy.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/azure-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/azure-cli.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/azure-devops-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/azure-devops-cli.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/basic.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/bazel.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/bicep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/bicep.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/clang.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/cleanup.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/cmake.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/codeql-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/codeql-bundle.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/complete-snap-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/complete-snap-setup.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/configure-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/configure-environment.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/containers.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/docker-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/docker-compose.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/docker-moby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/docker-moby.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/dotnetcore-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/dotnetcore-sdk.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/dpkg-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/dpkg-config.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/erlang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/erlang.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/example.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/firefox.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/gcc.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/gfortran.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/gfortran.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/git.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/github-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/github-cli.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/google-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/google-chrome.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/google-cloud-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/google-cloud-sdk.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/graalvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/graalvm.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/haskell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/haskell.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/heroku.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/hhvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/hhvm.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/homebrew.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/java-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/java-tools.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/julia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/julia.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/kotlin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/kotlin.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/kubernetes-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/kubernetes-tools.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/leiningen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/leiningen.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/microsoft-edge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/microsoft-edge.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/miniconda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/miniconda.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/mongodb.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/mono.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/mono.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/mssql-cmd-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/mssql-cmd-tools.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/mysql.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/nginx.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/nodejs.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/nvm.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/oc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/oc.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/oras-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/oras-cli.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/packer.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/phantomjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/phantomjs.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/php.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/pipx-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/pipx-packages.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/post-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/post-deployment.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/postgresql.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/powershellcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/powershellcore.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/preimagedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/preimagedata.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/pulumi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/pulumi.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/pypy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/pypy.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/python.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/r.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/ruby.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/rust.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/sbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/sbt.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/selenium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/selenium.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/sphinx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/sphinx.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/sqlpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/sqlpackage.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/swift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/swift.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/terraform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/terraform.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/validate-disk-space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/validate-disk-space.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/vcpkg.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/installers/yq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/installers/yq.sh -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Android.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Android.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Apt.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Apt.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Browsers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Browsers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/CLI.Tools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/CLI.Tools.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Common.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Common.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Databases.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Databases.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/DotnetSDK.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/DotnetSDK.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Haskell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Haskell.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Java.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Java.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Node.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Node.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/PowerShellModules.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/PowerShellModules.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/RunAll-Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/RunAll-Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Tools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Tools.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/Toolset.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/Toolset.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/scripts/tests/WebServers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/scripts/tests/WebServers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/linux/toolsets/toolset-1804.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/toolsets/toolset-1804.json -------------------------------------------------------------------------------- /.github-actions/images/linux/toolsets/toolset-2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/toolsets/toolset-2004.json -------------------------------------------------------------------------------- /.github-actions/images/linux/toolsets/toolset-2204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/toolsets/toolset-2204.json -------------------------------------------------------------------------------- /.github-actions/images/linux/ubuntu1804.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/ubuntu1804.json -------------------------------------------------------------------------------- /.github-actions/images/linux/ubuntu2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/ubuntu2004.json -------------------------------------------------------------------------------- /.github-actions/images/linux/ubuntu2204.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/linux/ubuntu2204.pkr.hcl -------------------------------------------------------------------------------- /.github-actions/images/macos/helpers/Common.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/helpers/Common.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/helpers/SoftwareReport.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/helpers/SoftwareReport.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/helpers/Tests.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/helpers/Tests.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/helpers/Xcode.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/helpers/Xcode.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/helpers/Xcode.Installer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/helpers/Xcode.Installer.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/macos-10.15-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/macos-10.15-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/macos/macos-11-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/macos-11-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/macos/macos-12-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/macos-12-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/assets/select-xamarin-sdk-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/assets/select-xamarin-sdk-v2.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/assets/select-xamarin-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/assets/select-xamarin-sdk.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/bootstrap-provisioner/change_password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/bootstrap-provisioner/change_password -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/bootstrap-provisioner/installNewProvisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/bootstrap-provisioner/installNewProvisioner.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/bootstrap-provisioner/kcpassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/bootstrap-provisioner/kcpassword.py -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/bootstrap-provisioner/setAutoLogin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/bootstrap-provisioner/setAutoLogin.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/add-certificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/add-certificate.swift -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/add-network-interface-detection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/add-network-interface-detection.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/autologin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/autologin.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/configure-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/configure-hostname.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/configure-machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/configure-machine.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/configure-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/configure-ssh.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/configure-tccdb-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/configure-tccdb-macos.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/disable-auto-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/disable-auto-updates.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/environment/bashprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/environment/bashprofile -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/environment/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/environment/bashrc -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/finalize-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/finalize-vm.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/max-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/max-files.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/ntpconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/ntpconf.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/preimagedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/preimagedata.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/screensaver-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/screensaver-off.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/configuration/shell-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/configuration/shell-change.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/android-toolsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/android-toolsets.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/apache.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/audiodevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/audiodevice.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/aws.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/azcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/azcopy.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/bicep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/bicep.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/build-xcode-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/build-xcode-symlinks.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/chrome.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/cocoapods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/cocoapods.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/commonutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/commonutils.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/configure-toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/configure-toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/delete-duplicate-sims.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/delete-duplicate-sims.rb -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/dotnet.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/edge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/edge.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/firefox.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/gcc.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/git.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/golang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/golang.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/graalvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/graalvm.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/haskell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/haskell.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/homebrew.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/llvm.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/miniconda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/miniconda.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/mongodb.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/nginx.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/node.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/nvm.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/open_windows_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/open_windows_check.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/openjdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/openjdk.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/openssl.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/php.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/pipx-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/pipx-packages.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/postgresql.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/powershell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/powershell.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/pypy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/pypy.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/python.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/reboot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e -o pipefail 2 | 3 | shutdown -r now -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/ruby.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/rubygem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/rubygem.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/rust.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/safari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/safari.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/stack.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/swiftlint.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/vcpkg.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/vsmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/vsmac.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/xamarin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/xamarin.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/xcode-clt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/xcode-clt.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/xcode-postbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/xcode-postbuild.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/xcode-sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/xcode-sims.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/core/xcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/core/xcode.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/utils/confirm-identified-developers.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/utils/confirm-identified-developers.scpt -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/utils/invoke-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/utils/invoke-tests.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/utils/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/utils/utils.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/provision/utils/xamarin-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/provision/utils/xamarin-utils.sh -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Android.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Android.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Browsers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Browsers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Common.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Generator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Generator.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Java.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Java.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Toolcache.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Toolcache.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.WebServers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.WebServers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Xamarin.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Xamarin.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/software-report/SoftwareReport.Xcode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/software-report/SoftwareReport.Xcode.psm1 -------------------------------------------------------------------------------- /.github-actions/images/macos/templates/macOS-10.15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/templates/macOS-10.15.json -------------------------------------------------------------------------------- /.github-actions/images/macos/templates/macOS-11.anka.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/templates/macOS-11.anka.pkr.hcl -------------------------------------------------------------------------------- /.github-actions/images/macos/templates/macOS-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/templates/macOS-11.json -------------------------------------------------------------------------------- /.github-actions/images/macos/templates/macOS-12.anka.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/templates/macOS-12.anka.pkr.hcl -------------------------------------------------------------------------------- /.github-actions/images/macos/templates/macOS-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/templates/macOS-12.json -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Android.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Android.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/BasicTools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/BasicTools.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Browsers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Browsers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Common.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Common.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Databases.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Databases.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Git.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Git.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Haskell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Haskell.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Java.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Java.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/LLVM.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/LLVM.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Linters.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Linters.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Node.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Node.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/OpenSSL.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/OpenSSL.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/PHP.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/PHP.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/PipxPackages.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/PipxPackages.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Powershell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Powershell.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Python.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Python.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Ruby.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Ruby.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/RubyGem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/RubyGem.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/RunAll-Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/RunAll-Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Rust.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Rust.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/System.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/System.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Toolcache.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Toolcache.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/WebServers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/WebServers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Xamarin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Xamarin.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/tests/Xcode.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/tests/Xcode.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/toolsets/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/toolsets/Readme.md -------------------------------------------------------------------------------- /.github-actions/images/macos/toolsets/Toolset.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/toolsets/Toolset.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/macos/toolsets/toolset-10.15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/toolsets/toolset-10.15.json -------------------------------------------------------------------------------- /.github-actions/images/macos/toolsets/toolset-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/toolsets/toolset-11.json -------------------------------------------------------------------------------- /.github-actions/images/macos/toolsets/toolset-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/macos/toolsets/toolset-12.json -------------------------------------------------------------------------------- /.github-actions/images/win/Windows2019-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/Windows2019-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/win/Windows2022-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/Windows2022-Readme.md -------------------------------------------------------------------------------- /.github-actions/images/win/post-generation/GenerateIISExpressCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/post-generation/GenerateIISExpressCertificate.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/post-generation/InternetExplorerConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/post-generation/InternetExplorerConfiguration.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/post-generation/Msys2FirstLaunch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/post-generation/Msys2FirstLaunch.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/post-generation/VSConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/post-generation/VSConfiguration.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/ChocoHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/ChocoHelpers.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/ImageHelpers.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/ImageHelpers.psd1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/ImageHelpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/ImageHelpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/InstallHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/InstallHelpers.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/PathHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/PathHelpers.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/TestsHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/TestsHelpers.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/VisualStudioHelpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/VisualStudioHelpers.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/test/ImageHelpers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/test/ImageHelpers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/ImageHelpers/test/PathHelpers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/ImageHelpers/test/PathHelpers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Configure-Antivirus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Configure-Antivirus.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Configure-DynamicPort.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Configure-DynamicPort.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Configure-GDIProcessHandleQuota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Configure-GDIProcessHandleQuota.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Configure-Shell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Configure-Shell.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Configure-Toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Configure-Toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Disable-JITDebugger.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Disable-JITDebugger.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Enable-DeveloperMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Enable-DeveloperMode.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Finalize-VM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Finalize-VM.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Initialize-VM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Initialize-VM.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AWS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AWS.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AliyunCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AliyunCli.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AndroidSDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AndroidSDK.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Apache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Apache.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AzureCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AzureCli.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AzureCosmosDbEmulator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AzureCosmosDbEmulator.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AzureDevOpsCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AzureDevOpsCli.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-AzureModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-AzureModules.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Bazel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Bazel.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-BizTalkBuildComponent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-BizTalkBuildComponent.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Choco.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Choco.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Chrome.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Chrome.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-CloudFoundryCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-CloudFoundryCli.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-CodeQLBundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-CodeQLBundle.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-CommonUtils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-CommonUtils.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-DACFx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-DACFx.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Docker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Docker.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-DotnetSDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-DotnetSDK.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Edge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Edge.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Firefox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Firefox.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Git.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Git.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-GitHub-CLI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-GitHub-CLI.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-GoogleCloudSDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-GoogleCloudSDK.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Haskell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Haskell.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-IEWebDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-IEWebDriver.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-JavaTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-JavaTools.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Kotlin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Kotlin.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-KubernetesTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-KubernetesTools.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-LLVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-LLVM.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Mercurial.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Mercurial.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Mingw64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Mingw64.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Miniconda.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Miniconda.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-MongoDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-MongoDB.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Msys2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Msys2.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-MysqlCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-MysqlCli.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-NET48.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-NET48.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-NSIS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-NSIS.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Nginx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Nginx.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-NodeLts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-NodeLts.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PHP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PHP.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Pipx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Pipx.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PipxPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PipxPackages.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PostgreSQL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PostgreSQL.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PowerShellModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PowerShellModules.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PowershellCore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PowershellCore.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-PyPy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-PyPy.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-R.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-R.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-RootCA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-RootCA.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Ruby.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Ruby.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Rust.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Rust.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-SQLPowerShellTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-SQLPowerShellTools.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Sbt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Sbt.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Selenium.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Selenium.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-ServiceFabricSDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-ServiceFabricSDK.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Stack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Stack.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Toolset.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-VCRedist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-VCRedist.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-VS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-VS.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Vcpkg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Vcpkg.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Vsix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Vsix.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-WDK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-WDK.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-WebPlatformInstaller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-WebPlatformInstaller.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-WinAppDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-WinAppDriver.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-WindowsFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-WindowsFeatures.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-WindowsUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-WindowsUpdates.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Wix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Wix.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Install-Zstd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Install-Zstd.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Run-NGen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Run-NGen.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Update-DotnetTLS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Update-DotnetTLS.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Update-ImageData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Update-ImageData.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Installers/Wait-WindowsUpdatesForInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Installers/Wait-WindowsUpdatesForInstall.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/README.md -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Browsers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Browsers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.CachedTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.CachedTools.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Databases.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Databases.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Helpers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Helpers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Java.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Java.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.VisualStudio.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.VisualStudio.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.WebServers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/SoftwareReport/SoftwareReport.WebServers.psm1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Android.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Android.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Apache.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Apache.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/BizTalk.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/BizTalk.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Browsers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Browsers.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/CLI.Tools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/CLI.Tools.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/ChocoPackages.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/ChocoPackages.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Databases.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Databases.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Docker.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Docker.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/DotnetSDK.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/DotnetSDK.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Git.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Git.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Haskell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Haskell.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Java.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Java.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/LLVM.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/LLVM.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/MSYS2.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/MSYS2.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Miniconda.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Miniconda.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Nginx.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Nginx.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Node.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Node.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/PHP.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/PHP.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/PipxPackages.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/PipxPackages.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/PowerShellModules.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/PowerShellModules.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/RunAll-Tests.ps1: -------------------------------------------------------------------------------- 1 | Invoke-PesterTests "*" -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Rust.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Rust.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/SSDTExtensions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/SSDTExtensions.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Shell.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Shell.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Tools.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Tools.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Toolset.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Toolset.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/VisualStudio.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/VisualStudio.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Vsix.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Vsix.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/WDK.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/WDK.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/WinAppDriver.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/WinAppDriver.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/WindowsFeatures.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/WindowsFeatures.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/scripts/Tests/Wix.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/scripts/Tests/Wix.Tests.ps1 -------------------------------------------------------------------------------- /.github-actions/images/win/toolsets/toolset-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/toolsets/toolset-2019.json -------------------------------------------------------------------------------- /.github-actions/images/win/toolsets/toolset-2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/toolsets/toolset-2022.json -------------------------------------------------------------------------------- /.github-actions/images/win/windows2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/windows2019.json -------------------------------------------------------------------------------- /.github-actions/images/win/windows2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.github-actions/images/win/windows2022.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/.gitignore -------------------------------------------------------------------------------- /Configure-IIS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Configure-IIS.ps1 -------------------------------------------------------------------------------- /Disable-RealTimeMonitoring.ps1: -------------------------------------------------------------------------------- 1 | Set-MpPreference -DisableRealtimeMonitoring $true -------------------------------------------------------------------------------- /Docker/Install-DockerDesktop.ps1: -------------------------------------------------------------------------------- 1 | choco install docker-desktop 2 | -------------------------------------------------------------------------------- /Docker/Install-DockerTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Docker/Install-DockerTools.ps1 -------------------------------------------------------------------------------- /Enable-PSRemoting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Enable-PSRemoting.ps1 -------------------------------------------------------------------------------- /Install-AzureTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-AzureTools.ps1 -------------------------------------------------------------------------------- /Install-Boxstarter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-Boxstarter.ps1 -------------------------------------------------------------------------------- /Install-CollaborationTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-CollaborationTools.ps1 -------------------------------------------------------------------------------- /Install-Common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-Common.ps1 -------------------------------------------------------------------------------- /Install-CosmosDb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-CosmosDb.ps1 -------------------------------------------------------------------------------- /Install-DevTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-DevTools.ps1 -------------------------------------------------------------------------------- /Install-Dotfiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-Dotfiles.ps1 -------------------------------------------------------------------------------- /Install-DotnetCore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-DotnetCore.ps1 -------------------------------------------------------------------------------- /Install-GitTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-GitTools.ps1 -------------------------------------------------------------------------------- /Install-GoTools.ps1: -------------------------------------------------------------------------------- 1 | choco install golang 2 | -------------------------------------------------------------------------------- /Install-Java.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-Java.ps1 -------------------------------------------------------------------------------- /Install-MongoTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-MongoTools.ps1 -------------------------------------------------------------------------------- /Install-MySql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-MySql.ps1 -------------------------------------------------------------------------------- /Install-NodeTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-NodeTools.ps1 -------------------------------------------------------------------------------- /Install-OneDrive.ps1: -------------------------------------------------------------------------------- 1 | choco install onedrive -------------------------------------------------------------------------------- /Install-OpenSsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-OpenSsh.ps1 -------------------------------------------------------------------------------- /Install-PgpTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-PgpTools.ps1 -------------------------------------------------------------------------------- /Install-PostgreSql.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-PostgreSql.ps1 -------------------------------------------------------------------------------- /Install-PythonTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-PythonTools.ps1 -------------------------------------------------------------------------------- /Install-ReactNative.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-ReactNative.ps1 -------------------------------------------------------------------------------- /Install-VisualStudio2022.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-VisualStudio2022.ps1 -------------------------------------------------------------------------------- /Install-VsCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Install-VsCode.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/LICENSE -------------------------------------------------------------------------------- /MacOS/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/.zshrc -------------------------------------------------------------------------------- /MacOS/Install-DevTools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/Install-DevTools.sh -------------------------------------------------------------------------------- /MacOS/Install-Docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/Install-Docker.sh -------------------------------------------------------------------------------- /MacOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/README.md -------------------------------------------------------------------------------- /MacOS/Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/Setup.sh -------------------------------------------------------------------------------- /MacOS/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/MacOS/bash_profile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/README.md -------------------------------------------------------------------------------- /Run-ManualBasicInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Run-ManualBasicInstall.ps1 -------------------------------------------------------------------------------- /SQL-Server/Add-SqlServerAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/SQL-Server/Add-SqlServerAlias.ps1 -------------------------------------------------------------------------------- /SQL-Server/Install-SqlPowerShellModule.ps1: -------------------------------------------------------------------------------- 1 | Install-Module -Name SqlServer -Force -AllowClobber -------------------------------------------------------------------------------- /SQL-Server/Install-SqlServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/SQL-Server/Install-SqlServer.ps1 -------------------------------------------------------------------------------- /Sysprep.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Sysprep.bat -------------------------------------------------------------------------------- /Ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Ubuntu/README.md -------------------------------------------------------------------------------- /Update-GitSubtree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Update-GitSubtree.ps1 -------------------------------------------------------------------------------- /Use-Vagrant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Use-Vagrant.ps1 -------------------------------------------------------------------------------- /Vagrantfile.multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Vagrantfile.multi -------------------------------------------------------------------------------- /Vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Vagrantfile.template -------------------------------------------------------------------------------- /Windows-10-Enterprise/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Enterprise/Build.ps1 -------------------------------------------------------------------------------- /Windows-10-Enterprise/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Enterprise/autounattend.xml -------------------------------------------------------------------------------- /Windows-10-Enterprise/windows-10-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Enterprise/windows-10-enterprise.json -------------------------------------------------------------------------------- /Windows-10-Pro/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Pro/Build.ps1 -------------------------------------------------------------------------------- /Windows-10-Pro/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Pro/autounattend.xml -------------------------------------------------------------------------------- /Windows-10-Pro/windows-10-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-10-Pro/windows-10-pro.json -------------------------------------------------------------------------------- /Windows-2019/Build-Minimal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2019/Build-Minimal.ps1 -------------------------------------------------------------------------------- /Windows-2019/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2019/Build.ps1 -------------------------------------------------------------------------------- /Windows-2019/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2019/autounattend.xml -------------------------------------------------------------------------------- /Windows-2019/windows-2019-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2019/windows-2019-minimal.json -------------------------------------------------------------------------------- /Windows-2019/windows-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2019/windows-2019.json -------------------------------------------------------------------------------- /Windows-2022/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2022/Build.ps1 -------------------------------------------------------------------------------- /Windows-2022/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2022/autounattend.xml -------------------------------------------------------------------------------- /Windows-2022/windows-2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgwagner/New-Machine/HEAD/Windows-2022/windows-2022.json --------------------------------------------------------------------------------