Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,980

Downloads of v 117.10.0.30000-preview1:

6

Last Update:

19 Apr 2024

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

microsoft visual studio visualstudio vs vs17 2022 load test controller preview admin

Visual Studio 2022 Load Test Controller Preview

This is a prerelease version of Visual Studio 2022 Load Test Controller Preview.

  • 1
  • 2
  • 3

117.10.0.30000-preview1 | Updated: 19 Apr 2024

Downloads:

1,980

Downloads of v 117.10.0.30000-preview1:

6

Maintainer(s):

Software Author(s):

  • Microsoft

Visual Studio 2022 Load Test Controller Preview 117.10.0.30000-preview1

This is a prerelease version of Visual Studio 2022 Load Test Controller Preview.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Dependencies require reboot

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Visual Studio 2022 Load Test Controller Preview, run the following command from the command line or from PowerShell:

>

To upgrade Visual Studio 2022 Load Test Controller Preview, run the following command from the command line or from PowerShell:

>

To uninstall Visual Studio 2022 Load Test Controller Preview, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade visualstudio2022testcontroller-preview -y --source="'INTERNAL REPO URL'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade visualstudio2022testcontroller-preview -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install visualstudio2022testcontroller-preview
  win_chocolatey:
    name: visualstudio2022testcontroller-preview
    version: '117.10.0.30000-preview1'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'visualstudio2022testcontroller-preview' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '117.10.0.30000-preview1'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller visualstudio2022testcontroller-preview
{
    Name        = "visualstudio2022testcontroller-preview"
    Version     = "117.10.0.30000-preview1"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'visualstudio2022testcontroller-preview':
  ensure          => '117.10.0.30000-preview1',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Overview

Distribute automated tests to multiple machines.
Agents for Visual Studio 2022 can be used for load, functional, and automated testing. For more details, please refer to the documentation.

Visual Studio Preview gives you early access to the latest features and improvements not yet available in the main release. By trying Preview, you can take advantage of new builds and updates that ship on a frequent cadence. For more information on Visual Studio Preview installs, visit the FAQ page. Visual Studio and Visual Studio Preview can be installed side-by-side on the same device.

This release is not "go-live" and not intended for use on production computers or for creating production code.

Please note that the preview version is continuously evolving and certain features may not work as expected. This version is also not licensed to build shipping applications.

To find out what's new or to see the known issues, see the Visual Studio 2022 Preview release notes.
System requirements

Customizations

All package parameters are passed to the Visual Studio installer, enabling full customization of the installation. The possible parameters are described here. The package passes --norestart --wait by default, and --quiet, unless --passive is specified in the package parameters.

The language of the installed software can be controlled using the package parameter --locale language.
The list of languages is presented here. By default, the operating system display language is used.

Example

This command will install Visual Studio Load Test Controller, display progress during the installation and specify the English language regardless of operating system settings:

choco install visualstudio2022testcontroller-preview --package-parameters "--passive --locale en-US"

More package parameter examples

Notes

A reboot may be required after (or even before) installing/uninstalling this package.
If control over reboots is required, it is advisable to install the dependencies (esp. dotnetfx 4.8.0) first, perform a reboot if necessary, and then install this package.


tools\.skipAutoUninstall
 
tools\ChocolateyInstall.ps1
Install-VisualStudio `
    -PackageName 'visualstudio2022testcontroller-preview' `
    -ApplicationName 'Microsoft Visual Studio Load Test Controller 2022 Preview' `
    -Url 'https://download.visualstudio.microsoft.com/download/pr/08784799-a959-4274-bbc5-a54ffebffeaf/8c4e5e2104344f0b3de2640abce653c235b4c85db79c5bc41190016eebb7fc7b/vs_TestController.exe' <# https://aka.ms/vs/17/pre/vs_testcontroller.exe #> `
    -Checksum '8C4E5E2104344F0B3DE2640ABCE653C235B4C85DB79C5BC41190016EEBB7FC7B' `
    -ChecksumType 'SHA256' `
    -InstallerTechnology 'WillowVS2017OrLater' `
    -Product 'TestController' `
    -VisualStudioYear '2022' `
    -Preview $true
tools\ChocolateyUninstall.ps1
Remove-VisualStudioProduct `
    -PackageName 'visualstudio2022testcontroller-preview' `
    -Product 'TestController' `
    -VisualStudioYear '2022' `
    -Preview $true

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Visual Studio 2022 Load Test Controller Preview 117.10.0.30000-preview1 6 Friday, April 19, 2024 Exempted
Visual Studio 2022 Load Test Controller Preview 117.10.0.20000-preview1 10 Tuesday, March 19, 2024 Exempted
Visual Studio 2022 Load Test Controller Preview 117.10.0.10000-preview1 19 Wednesday, February 14, 2024 Exempted
Visual Studio 2022 Load Test Controller Preview 117.9.0.50000-preview1 17 Friday, February 2, 2024 Exempted
Visual Studio 2022 Load Test Controller Preview 117.9.0.20100-preview1 14 Thursday, January 11, 2024 Exempted
Visual Studio 2022 Load Test Controller Preview 117.9.0.20000-preview1 17 Tuesday, December 19, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.9.0.10100-preview1 17 Wednesday, November 29, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.9.0.10000-preview1 18 Wednesday, November 22, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.70000-preview1 17 Monday, November 13, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.50000-preview1 26 Monday, October 30, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.40000-preview1 17 Sunday, October 22, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.30000-preview1 17 Thursday, October 12, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.20000-preview1 18 Tuesday, September 26, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.8.0.10000-preview1 26 Sunday, September 3, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.7.0.50000-preview1 32 Friday, July 28, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.7.0.40000-preview1 29 Wednesday, July 26, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.7.0.20000-preview1 31 Sunday, June 18, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.7.0.10000-preview1 32 Wednesday, May 17, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.6.0.70000-preview1 23 Thursday, May 11, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.6.0.50000-preview1 21 Wednesday, April 26, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.6.0.40000-preview1 23 Friday, April 21, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.6.0.20000-preview1 31 Saturday, March 18, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.6.0.10000-preview1 24 Friday, February 24, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.5.0.60000-preview1 30 Tuesday, February 21, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.5.0.40000-preview1 27 Friday, January 27, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.5.0.30000-preview1 35 Saturday, January 21, 2023 Exempted
Visual Studio 2022 Load Test Controller Preview 117.5.0.20000-preview1 26 Thursday, December 15, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.5.0.10000-preview1 40 Sunday, November 13, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.4.0.20100-preview1 39 Sunday, October 2, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.4.0.20000-preview1 37 Sunday, September 18, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.4.0.10000-preview1 35 Sunday, August 28, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.3.0.20000-preview1 49 Wednesday, June 22, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.3.0.10100-preview1 37 Tuesday, May 24, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.3.0.10000-preview1 39 Wednesday, May 18, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.2.0.60000-preview1 40 Thursday, May 5, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.2.0.50000-preview1 39 Thursday, April 28, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.2.0.20100-preview1 49 Saturday, March 26, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.2.0.20000-preview1 50 Thursday, March 17, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.2.0.10000-preview1 41 Thursday, February 17, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.60000-preview1 53 Thursday, February 10, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.50000-preview1 95 Thursday, February 3, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.40000-preview1 51 Friday, January 28, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.30000-preview1 48 Friday, January 21, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.20000-preview1 55 Thursday, January 6, 2022 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.10100-preview1 64 Wednesday, November 17, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 117.1.0.10000-preview1 46 Monday, November 8, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 117.0.0.70000-preview1 45 Sunday, October 31, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.70000-preview1 49 Friday, October 29, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.60000-preview1 47 Friday, October 22, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.50000-preview1 51 Saturday, October 16, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.40100-preview1 48 Tuesday, September 21, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.40000-preview1 52 Wednesday, September 15, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.30100-preview1 63 Sunday, August 22, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.20100-preview1 57 Thursday, July 22, 2021 Exempted
Visual Studio 2022 Load Test Controller Preview 17.0.0.10100-preview1 58 Friday, June 25, 2021 Exempted

Software

Visual Studio 2022 Preview release notes

Package

117.10.0.30000-preview1:

  • Package metadata updated for Visual Studio 2022 version 17.10.0 Preview 3.0 (the native installer always installs the latest released Visual Studio 2022 Preview build).
  • Updated bootstrapper url.

Discussion for the Visual Studio 2022 Load Test Controller Preview Package

Ground Rules:

  • This discussion is only about Visual Studio 2022 Load Test Controller Preview and the Visual Studio 2022 Load Test Controller Preview package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Visual Studio 2022 Load Test Controller Preview, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus