Downloads:
6,361
Downloads of v 2.0.0-rc0002:
102
Last Update:
01 Dec 2020
Package Maintainer(s):
Software Author(s):
- Igor Abade V. Leite
Tags:
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
TfsCmdlets
This is a prerelease version of TfsCmdlets.
- 1
- 2
- 3
2.0.0-rc0002 | Updated: 01 Dec 2020
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
6,361
Downloads of v 2.0.0-rc0002:
102
Maintainer(s):
Software Author(s):
- Igor Abade V. Leite
TfsCmdlets 2.0.0-rc0002
This is a prerelease version of TfsCmdlets.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Igor Abade V. Leite. The inclusion of Igor Abade V. Leite trademark(s), if any, upon this webpage is solely to identify Igor Abade V. Leite goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TfsCmdlets, run the following command from the command line or from PowerShell:
To upgrade TfsCmdlets, run the following command from the command line or from PowerShell:
To uninstall TfsCmdlets, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download tfscmdlets --internalize --version=2.0.0-rc0002 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade tfscmdlets -y --source="'INTERNAL REPO URL'" --version="'2.0.0-rc0002'" --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 tfscmdlets -y --source="'INTERNAL REPO URL'" --version="'2.0.0-rc0002'" --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 tfscmdlets
win_chocolatey:
name: tfscmdlets
version: '2.0.0-rc0002'
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 'tfscmdlets' do
action :install
source 'INTERNAL REPO URL'
version '2.0.0-rc0002'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tfscmdlets
{
Name = "tfscmdlets"
Version = "2.0.0-rc0002"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tfscmdlets':
ensure => '2.0.0-rc0002',
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.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
PowerShell Cmdlets for Azure DevOps and Team Foundation Server
The MIT License (MIT)
Copyright (c) 2014 Igor Abade de Vasconcellos Leite
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
# Acknowledgments
* HelpGenerator.ps1
* Portions by Akira Sugiura ([email protected]) - [https://gist.githubusercontent.com/urasandesu/51e7d31b9fa3e53489a7/raw/ceafe2b144a6394fa82bf9863f0f42eee29752b4/Get-HelpByMarkdown.ps1]
* ObjectHelper\_InvokeGenericMethod.ps1
* Portions by David Wyatt - (Invoke Generic Methods from PowerShell)[https://gallery.technet.microsoft.com/scriptcenter/Invoke-Generic-Methods-bf7675af]
* BuildDoc.ps1
* Portions by Kier Dugan - [https://github.com/DuFace/PoShDoc/blob/master/BuildDoc.ps1]
$InstallPath = Join-Path $($env:ChocolateyInstall) 'lib\\TfsCmdlets'
$ToolsDir = Join-Path $InstallPath 'Tools'
if ($env:PSModulePath -like "*$ToolsDir*")
{
Write-Output "TfsCmdlets: Removing installation directory from PSModulePath environment variable"
$NewModulePath = $Env:PSModulePath.Replace($ToolsDir, '').Replace(';;', ';')
SETX @('PSModulePath', $NewModulePath, '/M')
}
$ShortcutTargetDir = "$Env:ProgramData\\Microsoft\\Windows\\Start Menu\\Programs"
$ShortcutName = 'Azure DevOps Shell'
$ShortcutFilePath = "$ShortcutTargetDir\\$ShortcutName.lnk"
if (Test-Path $ShortcutFilePath)
{
Write-Output "TfsCmdlets: Removing Start Menu shortcut file"
Remove-Item $ShortcutFilePath
}
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
# Contributing to TfsCmdlets
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
## We Develop with Github
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
## We Use [Github Flow](https://guides.github.com/introduction/flow/index.html), So All Code Changes Happen Through Pull Requests
Pull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests:
1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests.
3. If you've changed cmdlets, update the documentation.
4. Ensure the test suite passes.
5. Make sure your code lints.
6. Issue that pull request!
## Any contributions you make will be under the MIT Software License
In short, when you submit code changes, your submissions are understood to be under the same [MIT License](http://choosealicense.com/licenses/mit/) that covers the project. Feel free to contact the maintainers if that's a concern.
## Report bugs using Github's [issues](https://github.com/igoravl/TfsCmdlets/issues)
We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/igoravl/TfsCmdlets/issues/new); it's that easy!
## Write bug reports with detail, background, and sample code
**Great Bug Reports** tend to have:
- A quick summary and/or background
- Steps to reproduce
- Be specific!
- Give sample code if you can.
- What you expected would happen
- What actually happens
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)
People *love* thorough bug reports. I'm not even kidding.
## License
By contributing, you agree that your contributions will be licensed under its MIT License.
## References
This document was adapted from the [Gist](https://gist.github.com/briandk/3d2e8b3ec8daf5a27a62#file-contributing-md) contributed by [Brian A. Danielak](https://github.com/briandk), who in turn adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/a9316a723f9e918afde44dea68b5f9f39b7d9b00/CONTRIBUTING.md)
md5: D6E307032DD0A91A609FA328E8F3EDFD | sha1: 606949ADBC183A2450C8C76A59D2F513F9D501BD | sha256: E34379F2A5609B8190A820F5425D9779CA30206529A70ABBB8AA07337D2AB586 | sha512: A5CC0BD3EFE5BB87A66AF6A6057D57AF8AF571A65B573A678EDF9A067B4C801436D900ED5B536EEC689E47F484CF43F438C98084E62AA5F840F1974E0EB04FB3
md5: FF2CF4BE5083BD29D4025BE3D5355218 | sha1: EDA078B1BB47547BE36BBEC170B8E39B028CC43A | sha256: 235FD2CD6264A7CD26E2ED7A2D6DF7856AABF8C7CE10D7297EC07C01D95E6DD4 | sha512: C53E1ED80D7D565F5A476F5D75B994D9D31DF2AE65093A13484662BBB012C0D1B4AA46C850AB31BC744A2A8CB578FF03419BD6797C063E40BAA63AAB1415914C
md5: EC5CBE6320AE09B8BBE5306E24C51057 | sha1: D2000C3509864EBA4601D7CDEB2F3B66DFA4D8DA | sha256: 6F6189B354E4B5EFD49EBFA84D148BF177B40F1CC1EDDD180B0FA88E08653979 | sha512: 6F886E10F908B3AD8EC6A0E5CC3D3E481FBDE709B5062473CB319FCDFBF4F041003B2C6F4C2280BCFF4C36C26C5345C1E572006E942DB151351F8A095702FB04
md5: F458D76B28809553D2F43FA050148B13 | sha1: 8DB35C4975F9B7F1D157BED4ED67CFC598609B74 | sha256: B111723E3CF38C8CBC73977A3D3567174A1E835768158DBB9B5ED1CD0580D15F | sha512: 141D742826290392853404B0EB8E52F0B0068D61844B544DD53C933B389B7E244C3EF5747896A2CC7443C8817FF31492CA48DEB2CCA9D6B60A6EC1B74EE36B9E
md5: 643291E379175304213167B8F0660E8C | sha1: C2F04DD71AE3C1782354B33C45A03AA03D5EAD5B | sha256: 32F024CDD195614DD499C10A4622A44CB0F9FBB41CEA71EAB455CC3C083144C9 | sha512: 55FA42C1219912BE5EAE033A4499127DF099BE0EF7057C09B3A605D5897749F75D2315A73EA7E0A53909064B591124A830553141BF05C47F4747C908FC0EB9B6
md5: F9C1146EEA1F87109A9AAB1481551962 | sha1: AB80BBC5156A5C22767648B3BAF0165FBCADD571 | sha256: 74795466898EC8CC28B0395AD48166042AFF53D33F97AC8EC0C497113E8F7778 | sha512: CE8C13FE060D8218C4616777B38F7B96B17F679BB24211DC0C1EFA92A75CABCF069B91F000168570D08A7EC1031083DA052236D6F795A0B8941DC7CEDE6D5114
md5: 512042CEB7FD7518B3E19CCAC501E72A | sha1: 49B6AF6B4778152DAD8ACF555FBCE4C9D558191B | sha256: 313E5DC7CCDE1E5681CC97A785E5F639E358A33247723F8BF0CDB9103A1639D5 | sha512: D4E04A647B3E131367707D41ACAC8293E39C67DA262AD0A900598B11C8C8FBC88596D250A8A98A30312FA82B7DD3DEB497F8C6ECCB8A0483118B50BDC02B1792
md5: 5ED01945258B0681EBCDB851B599E4F6 | sha1: 1F94871FD2E1289C0771CEB51A080F8ECF0AB2C1 | sha256: 968DF2AB8A1FE06CC675EB1B46F3B5A6E0D73A72D7E9F1923008608DEFCF5C84 | sha512: D3D55C58D290C12D5561959CD89164817F37ACD6A67AFA38B9FF5F19D95D9B8FA78345BCA2AA8C39E4FCFB8EF3307F48BF3D68EBB8854F045490C821557F9F3A
md5: 59E9D385DBD4B7DF8821B0EBAC0D0941 | sha1: 7AF9EA88E34FCE4A6BD568CF043B00624793F313 | sha256: B9CB7C841E53890F3650B727A7094BFD9AE14E775319CB0DCA170021EDF22FFA | sha512: 106674E8807C6E470ADEBD94129B65CBDFC2477CECCDC5CC94A6439A24F8BA2FE425B516901D321B6816E5BE4DE0B4DAC1D7378ED8DEBC43C85CFEDFE4E3ABE4
md5: 627B852A21FE33F452DFAD41E0B422F7 | sha1: 9F2C57648740A89666A9FA7EDC3FF50DD3B8A8E9 | sha256: 4B9E70BE0440F3D619A66C6E3D258B0ECD95BAF002805D78009F447E02192696 | sha512: 0870C30E4CC9AAF894EB0FF550BEE173CC22E9D8AAC79F67ABBA205D321F80E65EDA8780BC4DB44D513300216FCB300A6715D39B711B6D20EF3C22670491DA6E
md5: 58CA6BADE440D2181F2EE8CA602E6A6C | sha1: D28A11CF993578C54AC1652FEF3E34FA8FE57509 | sha256: 5805DBEF5DC49F8A30810182F1D1E6DE3D12F6D4A00292F492017EB9641FC159 | sha512: 84B60EE0DB72233C45F1B9945C90B64B2D20E1415F95C68C008F650B498A819D9723FD7FD41D72A0B4C889FBEE4CB039E554F57EBF5AD06E3CC9D2BA8512AE2C
md5: 4ED422E1D4B93851A08B340DE68FCCF5 | sha1: 0A2D0CA5F6AB2849DA70B1CABE779E579C831CA3 | sha256: CB0DA06C03F5628272465D035792F079544FBB3225C3279BBAFBF9B590434F7E | sha512: 5E42C7F5252550DDA3E405D0B5AE2825D9283F817741839588D2E6F181B4C862696DC0D9F70A7061A7D43C649B1B88C3BBD26C4540F6020F22E59CC3722CD7ED
md5: 95AE6AEC9387963AEBD40CACF42BD244 | sha1: F1CED2D3E168A5482240C129E204C7CF42BA218E | sha256: 2448253838EA12F6CE69B9997AFC904C8B73DADAC84F438DDEBFCEE7A8531DC0 | sha512: BDAD739BF2BA658016ACD4E92BE703A50F2DD77D2C3B954CB4A30DD8E902A35D0AE85343F76F45FFE9EF7C15A0DA98274EBD458C75819B3CD64A555E509F30BD
md5: F750051CDF0490D4E89B6642BE955152 | sha1: 94D0EE44C64356E14A3C469BE67C81BA21487C66 | sha256: 5FF9340B21CC094D3DB3DC50BF1D40CB2F854FBA3015A77E518ACBC2098ACAF0 | sha512: 83864A0A9AAB340B914B16249F60DD072DFFF5A348469A028C566AAD7C6C02652CF707F1489A8F1FBB2DB7B977A1214E28D9A6B7A6C8BE9FB49D611F4D7E69DB
md5: 4FED538FF3305238C00FB49E6EA9C251 | sha1: B8EAAC3411E77A913F1AC467D20438F70DE5CA5A | sha256: 4846EE0751970316FE8B0AC2FE542B96D950515D86AA475BB34B730F925C57D7 | sha512: 0B74C78D5DF8347A4F6581D0CE99BB8196AAF17F09BDD53C2ABD9D7B9E5FA29E2222B62F06868452E3CEFA0677F1CB131B9F8A47622518822C7AE0CA1BDC1C61
md5: FB5FDCC55AA95C65318DB1D8F3282AF8 | sha1: 5DB277F1DACF111C90A012B97AAEA55868743416 | sha256: BCE2267DBACECEC8119D786C0669E32BA38CAD12944D02434064D8F9A26F5C0C | sha512: A78BF8D39EF69F60964BE64029A96BAD06F89522C5CB92E2C5837D04CD660755D08CCFC4A1A8093D8E4C186EDA4E3E51C331F2A066FA91A45E54EA50BBE8F8ED
md5: C0C4E99B881D9598B87FB9A6F983AC03 | sha1: 92E894646DE7660B9E8E7EAA16494CDF44255A0B | sha256: F89AE5D0C124F5D70CA27A88921EF1C08BF2586BB6C91ED2F86170874C848352 | sha512: 1BF81A4750392D3514241E03CC35D42BAABD068387FFD7866B9A3ED8AAD505C0B59C9BC1DA9CD276FA195A7D2BBB6FC6F0D195300F81FD23216CE2577F5C114F
md5: 9B401B20895E7A7A16860BC3BB44B78C | sha1: C8E5884FD7ED9481683C3C435170A6EF80CA1B6F | sha256: 141AD6AA70A983AE9A6D62DC47E78839688C756C373B8F8619F2D0EC8F1340ED | sha512: A0FC17E0C2FE317FFAF421AB7BDF4AEC3319D023B7657BDB58E0BA1E1A7D61A37B70D263FF8A11F539FA97A3F862D70012D12797CE9CF389D15CFE3D31AF3E24
md5: 11BE57F540FF29B7B4BF5B549AC487D4 | sha1: 44C8E8731FD24F8700D7B897DA7C21629CE76B86 | sha256: 5333435126B5B86BCE98E0BBC25AA27A925F83ED78CF6DE458E02BE9B1F621ED | sha512: 01A228F1A063681097A4BE5B32591DCA88C988E7CCD820976E38AD986C64E368A36EABF9678D20E4FFFD44D8F48652F04BC1F8BCCEA2AD021BDC342CB1318203
md5: 7DC74813BF93369F1AD9664042EC7C07 | sha1: 13BA289E642AD375A8DB1F0144C14BD3F1DE4E9D | sha256: 295776174DFF1F5A7040E8DDC019C6726700B825DAD48D32DA9F588503120414 | sha512: C221083BFD751703D5BE5B1D950AD2F37691B70C2857BC368EB04EDF1367A67515AE8D55C58C279EC2363061F2E8E0D72B578A4F2150585830650FC14E9F1D15
md5: CD494067C2C128819654E928D54B4556 | sha1: 79B8E03D1947AF1F39CBA410B55DF2D3237F6099 | sha256: 06D113D802083C568A5036853E9AD2AF7DD24C99206ED96FEE2EA2EAC5CBEA98 | sha512: BE950B427DD552BF6E6C8A0359C36B1E7B8CE9279BFB4A6DAE080D191E5B07005EABF8B53DA88B40C1925110833A50D0E2C6E3E253E117A229D750CA9B3B8020
md5: F5BC3B802CDF295A9F5023F938C100B7 | sha1: CAED0E03071E89627963FD4A2E173FA60AE6A077 | sha256: 18439106E45820E103B74150CF94C7D26900AA10ACBC15D6FBF77259306407EB | sha512: 9928DBAC04C52382EFE7EF10E749945D6430D98AAF8CACD6E64ACF66349559745C77591777FE9D6239174A38E0A5E3B37EC16DE92D0B3F2BED8B085CCAEF8691
md5: 8D7FE5C1B2AAAC6662D802DB9F7057AB | sha1: 8D7726B6EF908A45209F709BC96AB172CA0FF7A0 | sha256: 70B105B7A27E44C9EB6BFB725881848837E35CD43C897B88B8770FCCE2F59FA7 | sha512: 357518C26C1793D61094F33F06A80031918644CCE8F81418D8E89EDE1B6A44184D0900D1F099E40EC52D84ABA7D359BBA5705E630C5D2ED7D35041B8FEE053A8
md5: 218B96232CF075F8AF4B56ABF493AC05 | sha1: BE9FB89F6CDFE0353CE0B2E7B6C2A2C186E5F030 | sha256: E7C89CF2DFA2EF850A58F7B0B4E87393E5527CC37B0A07DE5F405890C6F444A4 | sha512: 4A7F7C5FFB256953C419F902FBF1A4AA8C06EB1F77B696EA8A79267E67BD19BC14FE4A58D0A8FBBAC11132BD8C0304B3B0B34F16E9A8C2840CA2B4BC35DF99C8
md5: B14B22BA2DD8D76BA6B27D530A3DA1A3 | sha1: 7B7F74AF5CFAF8617515615A57051408F7752E85 | sha256: 0D6417FD7FC619B3F80EC1CD5A76898BAF97E69FA13FE5C2AF0006B2C4384907 | sha512: BF4ED79AB2F45AFEA8E3E7ADE87CAED14F2652B4DE97F91EDB91DF537E96B4BCBF3015148745D246D23C052AEB39B399EB7E2B4411630E7CFA508E72EE8662B6
md5: AC08B2784221370026A851ABD0D8B861 | sha1: 8BA19CE9239CF4354A9E4058F3DFB5162EABFF5B | sha256: B66DEE5D9CCBC3AE46786705EACD86C0B90B3838FDF5253713525C563DDFFC73 | sha512: CEBD859F85888F94C8B393ACA2593D0214E4A7060C7E8388ACBD2EE9DC5498C504201DF28B71A9FC15D729604E5B12E0AF2DC22B49F5C5F4FD4AB60DD770244A
md5: FD12C25E7174E8D51523E815B9A05025 | sha1: 4FD0DECF2A9C9A2F649E0768D3E8CC69F11EB413 | sha256: 0D95F06AC2477DAC7C272EAD0D9A4F042D6031B48F1673D952D8C844DF6FD407 | sha512: 3D487256D4ECA430F7122539719754916E234C28D742124A588CB7F7CA0FC891D9BFF9F119F043B644E9B8950366077092FE4D5071ECC8B90E3A8FBB9F29C1EE
md5: 905F92AD3C51FF59BD7870355718505B | sha1: 4D59B030AE029A806D8556F5FF81E10512E08F0D | sha256: 43435603546E2C27E6A6E3AD96A1FF798794EF972D13DFFD372BC17631EF2298 | sha512: 1E605DCC001543E3813F690F63963576B5AC0C5613004DAD483ED68A91C87C12E3B3EC1004D9B1C1F8D5BE342E8A9EEF400FE27B571ABF0321B9B001E8D31965
md5: 62F411FD7333EF5D64459CC443FAD0C1 | sha1: 45709D7F4B9D615C7106F5721F7F68C5914CA0E1 | sha256: 0F7463B64D0D9C6F49AC345F369EDB89BED2350A9786ADB9CE15DC11A5254187 | sha512: 94D3DDA09052B04FF9D538C631E4293CFEA3838B09E3E5065CF688285158E881C94916FF1F50704885344E6EA6F6B9FADA40974C0F8D819B21B330FB45AB7CAC
md5: FD66861F6C0C818563921240C420AD97 | sha1: D88034B3A3CB02E026D2654E09D4D8C7AD06359E | sha256: 58342D2F093BD40FCDB534844CDFA78E9C4E96995C9888CBB7A2DC714913BDF6 | sha512: 6B5E997AC77FA511D3EF2EC8D8D011EBD2F5573371C5979248DD130E7E89C2A1B7703A3ADB7CF98867BB934561AB72EE44BA38D467920922B115FF4D551B5296
md5: 2D865312DE29B653EC54BD0BFFCA03CB | sha1: 14CC53EE122D602DE5BAE4545D6CC95291AB65D1 | sha256: C3524715A4FE056C0F5F415FE862FD7BA110CC87BD8D90DE241EA40588DEE66D | sha512: ABB2DB6C7D4D90496AFF41E8F347B888A760D69A29BA6B20DB44050D8C0E7EDF1139A4FFED13EF432DC7669D1F7A59BE4554CAC6C9B2F11F86302947271AF192
md5: B62C1A3D96914D6C571E293638B7DA9F | sha1: 5E4F62A2B38DC9C7204D8F3CDBED43E425295DBA | sha256: 847D5E3CAD43653D8D8642F478EC8BA6C5C179FA2131C1A4406ECC55506ADA25 | sha512: 399ACF23AE6ED8D233104D2E5D2CA5E9AE89E3095F61B5CA46143CD559DD8423792D40579D7A933407F1F7FFBC2C0649971CC982128A0B20AA393FFFEFEBD412
md5: 9EA937F3C88F0F2DA7BF55B988685D24 | sha1: 986F1D6B5AE84C0471363CE8A59882FB8644A8FA | sha256: 3CF6EB2AD3C7BE16E9765908F8AD08CD77D42486424556B554BFB431D628C0F9 | sha512: 962E397A5A3C1E55C3700A241D84DC299E3BB39D05A20CAAA89050460B5AF0829CA599BA58DE15EA885C05BFC0DDE9906F1EB0E60D03A75583A8A12D8F34BAC8
md5: 46143DD89E86359CDA5EB016BC3636A6 | sha1: ECF88F4563439DFC309363B8B3D9DC922B5F1196 | sha256: 4B96A6F2152D1EF41B5A47C40567E6C20C93B0E7016CDAB07E2664588C1F1EF8 | sha512: 7170819B6E703C3541670EA39AA10858CE43BEFA0E774943BB69028690FBA0F2EFBAE3555B1F00218D9F9FD4BA42317402D681BF87669AE6B5C9EF530A326DA7
md5: 8EA8297F4019737A6AB724869D118AD8 | sha1: D60FB06CE438951D269C4409413ACFFF0280C96F | sha256: 6131822A6879A4DDFDD6CC99F38300397C8AA3F3EE738C96E45C1FFB7C2095CD | sha512: 3EA45C5C06B51FBAF12BDCDDC89C52EDFFF9FD23590DBC16065727B0848ECBD8A291DC83470E62FBB22FF4B355ADC5A5C3EACA1C21E48C03E55F9FB8F1EE09B2
md5: DABFB21C631B4032B75A4050A2FF36B2 | sha1: 4CE7600707262F761F441AA5C9711B647AFC35B5 | sha256: B606E5DD77A6242CA1F1DF717EB53D9505AE56904330B975C08D4F2DBE8C3319 | sha512: 739CCFCC6420AEDBF4CE7D9499BB3852C0A2ADEE2D1F9E913E2B30B0B2BFA4BEA573E2FF11F59D6D889A52A44069D449C78D1BF06BACDCF25890029B26454E73
md5: 9454AE6EB0C6AD77E93A95074BA29266 | sha1: DF83FCB3639596AD42D5BE8314EF9D672079198B | sha256: 99177A4CBE03625768D64A3D73392310372888F74C3EB271CF775E93057A38E6 | sha512: 8D1D2BEDDE2D5F33179560E1A4F72206EE1984B3F5EB96E93F94329C4C4A8044DD74D62F9E708293132DE8C8F351F0E7FED74A450A251A8ADE205702B29D9DE1
md5: 2FE8BE31A56D3A10376FCE9A2C230C49 | sha1: 66BC24DFA6710A24CD5DDD3167B11E084E5E4E2A | sha256: 41456FF804C5FA96A25347D944CCDC232B74484EBE4283B818EDE5DA2DF5624D | sha512: E133EBD7748EF5BD178998D475CE4C6C2EAFF362AB820CB5AF91D4DEBCE37DE2765C292C06923E0680E8B5DD9D90042A3F8D40315E189FB4D6A4BB55F8431808
md5: 8F5107F61056ED86F410B8ACF88EC6C0 | sha1: 9FEE5097582BCBB87E6A923BFD37FD0E2EA6AE18 | sha256: EEC579A865371394AD8D8D82EC453C268343D90262DA76AC84D51564AF40CCBC | sha512: 9686173C97DF6D36682493CF6BC6846BCC9967D9DCD520BB45B145B58D097B1C116826158D1196001FA9373FDE6AAAE24A3A13A90F5926764EA5D2417021648F
md5: 167136D7A81BCC85ACF4930AA7AC835F | sha1: 1E70240CC820796E78D77B1219291EEE2FB6DBE0 | sha256: EF18458C4DCB93F6B4EAC07E1589CF3450BF878F2DD623F5D34F6A0F1B16E57A | sha512: 2C084142E09AE1B850F8550A55142FBBF996F3DFB122BBCAD4FFFC11A6FDC5417D623683F383C4AC4A35E46EA0D441D82588231093F179FF4601CC598A1C8896
md5: 7F1799B65B98450A19E4D049E9D3E70D | sha1: EC80C5A33374423A9E986C383A36A97DA70A3584 | sha256: 68705C4EF9AB818F2956A78E05F3FEFCE501A1448793B073B46110BEB49B47D6 | sha512: 8D67297C5CDED487C88FCAAD5A36E80926DAD8F1863E38F397751056F51258AC7B5A9E5C09C01BBA7A224F38FB2EE719586FAF0BA81516E05A19649EB09E7B78
md5: C62A83F20BC23AEFACE70EC13003C4C5 | sha1: 35553CFCDCBECCDC49710E68AEC495C16880F0BD | sha256: 1446D6B26DA49A5A9F366972F89F4E236F916955F31DDC38EBB96217C1CACE9C | sha512: 4DDA44FD5B538F5DA9E8CB46A3AB1BDC14B43425B9A61249ECCC925D986AF7B8B3548DB9490238F14807909ECF479415117141DDB344119438A59F97E894EA37
md5: A8B8C130324DA3E7FAB5CB7F3001EBE8 | sha1: 82379C4C9A81D404369B2B89D74498F1CCE26102 | sha256: 0CBF6D2F6BF55A901D4C5E3971725DA1165599A8ED2E6F134F8292FED43E0DCD | sha512: 4AB0EDFAE0DA0F287EEEA99678A8E9381BE871B8F3166F0E22039874E6016B37D8AB3F1E055B61D0C21987CDD735B12DEEBA4EF7826B8923802C8C79B0A00F7F
md5: 91B5141F40E650DF9F24959E002E6C66 | sha1: AC8675F91A4879042ED660C1D800058185552A57 | sha256: 1C73A1B016CFC8D497106EEC08AF07616F2F4C07E4DDC807C9F120CEACD0A53A | sha512: 6E1F88FC7C1ED560C4CA6168FAE9275583C7D664AF1A70F2A0A97A717D4B7E1D40A33F06B2782BB4ADB47AFC8B30B136DC28C0487A9DAEE183D8156DE5E5161B
md5: 00999FB817F7FDC8FB8FC30FEEFE82F3 | sha1: 275A2FD10D8463935B1F5ECE7A78A5639C504A3E | sha256: BAC1ACE21A5DE56ED50BEE8CA22FC41BC9DD3328DA777DFC03AA92C3D05DF104 | sha512: 022095FF34F8F30A2848647C0D68F461086A529384F8CD58B7FDA65DF6F1208BC3ECCF71798F0E05D24051993E6B2369B298D64E7E2EDD4E54E2DBF5DA09BD34
md5: 450B029703D4B740F6E0A2930660ABD4 | sha1: 0EA7A1968CB1C639CC767496A6E20B8D3E6F08D7 | sha256: 1A14BFB3D4CDAD50FF71869ACCFAC5A08283A7CB03C03D8BB2D00A728035056C | sha512: 38E8D86A183AAC8F070617D5EA4BB109C79742ADBC8551343F385983446201AAEDFF059926933DBB4E76AE747EC5FC786363DAD80D589BECFB3A766107A8DC4E
md5: BEB053CED12524CD30929C39FE042C47 | sha1: 921E59D904D6C8E2BAD5FEB738C01798A83ACD6F | sha256: 64ECBB6C584D9B3394CE519EE75ADEE80D4AB54FFEBAAA8423A08F105B34C9EE | sha512: 739AE832BB78F84BAFDC15AC6F7DE9CBEBE30FCC73F4FDB8829AFDDCD18ED3959FA7665FAEA8160FB75BB4574DE299EB7E0A2D794278C7C121C208CE334E01EB
md5: DCEEFB9C830E78B1E7D295329F61F8D4 | sha1: 967E9E28C8E4B7BCFB0DAD54F548D4880293CB09 | sha256: C04971E8158FFA71644F3D9C7DB9C99856020948315A7CAB6C3E27EF2FDEFF89 | sha512: A4F3D490E981C30B03820C2B0C12CD7C5F5BB277A898BD9552FB887FD568E6BD623BE4C46619F05B3A25EA2866C2100D0FF7F326CEF1CECF30F4B5FC14C64D90
md5: 02E47079A1B45F4FD8142752C91970E3 | sha1: E8016192D0A6738CD075F837109845376B270F14 | sha256: EF32858203F7263AA5767BAE4E94567FA1B3CDEDE214BA87603009C1C17B264F | sha512: 72DD2AED377786C0823DC4DE58A4D6A9E484E766F570E14D5C700003026E834EDA53628E7DAD2AD9DBFCE6706C52C2320900EE4CEEB062BE97A255FB46440918
md5: D3AD09FBF202167B7E6B5F0E1296380B | sha1: 2C099DB9745C21754B03A4C9AF55213A1A4444F5 | sha256: 81A0385CF1FED22F3153789D4AE1FEE75719F23E72CD543EDBA1AF48926FBF24 | sha512: 0B660A4ACB24D382BBD7058E2A3D21CDD741E7ED0A9D60672B0B667A75E145E229A594D302C78AECB5A729830092BA0117187665F8043A6590F8829D86991395
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"TfsCmdlets.PSCore/2.0.0.2230": {
"dependencies": {
"Microsoft.TeamFoundationServer.Client": "16.178.0-preview",
"Microsoft.VisualStudio.Services.InteractiveClient": "16.178.0-preview",
"Microsoft.VisualStudio.Services.Release.Client": "16.178.0-preview",
"Microsoft.VisualStudio.Services.Search.Client": "16.178.0-preview",
"Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.178.0-preview",
"Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.178.0-preview",
"PowerShellStandard.Library": "7.0.0-preview.1",
"System.IO.Compression.ZipFile": "4.3.0"
},
"runtime": {
"TfsCmdlets.PSCore.dll": {}
}
},
"Ben.Demystifier/0.1.2": {
"dependencies": {
"System.Reflection.Metadata": "1.5.0"
},
"runtime": {
"lib/netstandard2.0/Ben.Demystifier.dll": {
"assemblyVersion": "0.1.0.0",
"fileVersion": "0.1.2.14"
}
}
},
"HtmlAgilityPack/1.6.5": {
"dependencies": {
"System.Net.Http": "4.3.4",
"System.Xml.XPath": "4.3.0",
"System.Xml.XPath.XmlDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard2.0/HtmlAgilityPack.dll": {
"assemblyVersion": "1.6.5.0",
"fileVersion": "1.6.5.0"
}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.7": {
"dependencies": {
"Newtonsoft.Json": "12.0.3",
"Newtonsoft.Json.Bson": "1.0.1"
},
"runtime": {
"lib/netstandard2.0/System.Net.Http.Formatting.dll": {
"assemblyVersion": "5.2.7.0",
"fileVersion": "5.2.61128.0"
}
}
},
"Microsoft.CSharp/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0"
}
},
"Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"NETStandard.Library": "1.6.1",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Net.Http": "4.3.4",
"System.Private.Uri": "4.3.2",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Json": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Security.SecureString": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
"assemblyVersion": "5.2.6.0",
"fileVersion": "5.2.6.0"
}
}
},
"Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
"dependencies": {
"Microsoft.IdentityModel.Tokens": "5.6.0",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
"assemblyVersion": "5.6.0.0",
"fileVersion": "5.6.0.61018"
}
}
},
"Microsoft.IdentityModel.Logging/5.6.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
"assemblyVersion": "5.6.0.0",
"fileVersion": "5.6.0.61018"
}
}
},
"Microsoft.IdentityModel.Tokens/5.6.0": {
"dependencies": {
"Microsoft.IdentityModel.Logging": "5.6.0",
"Newtonsoft.Json": "12.0.3",
"System.Security.Cryptography.Cng": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
"assemblyVersion": "5.6.0.0",
"fileVersion": "5.6.0.61018"
}
}
},
"Microsoft.NETCore.Platforms/2.0.0": {},
"Microsoft.NETCore.Targets/1.1.3": {},
"Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.178.0-preview": {
"dependencies": {
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview"
},
"runtime": {
"lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
}
}
},
"Microsoft.TeamFoundationServer.Client/16.178.0-preview": {
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.178.0-preview",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview",
"Newtonsoft.Json": "12.0.3",
"System.ComponentModel.Annotations": "4.4.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
}
}
},
"Microsoft.VisualStudio.Services.Client/16.178.0-preview": {
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Newtonsoft.Json": "12.0.3",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Data.SqlClient": "4.4.2",
"System.Security.Cryptography.Cng": "4.5.0",
"System.Security.Cryptography.OpenSsl": "4.4.0",
"System.Security.Cryptography.ProtectedData": "4.4.0",
"System.Security.Principal.Windows": "4.4.1",
"System.Xml.XPath.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
},
"lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
}
}
},
"Microsoft.VisualStudio.Services.InteractiveClient/16.178.0-preview": {
"dependencies": {
"Ben.Demystifier": "0.1.2",
"Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview",
"Newtonsoft.Json": "12.0.3",
"System.IdentityModel.Tokens.Jwt": "5.6.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Services.Client.Interactive.dll": {
"assemblyVersion": "16.0.0.0",
"fileVersion": "16.178.30730.1"
}
}
},
"Microsoft.VisualStudio.Services.Release.Client/16.178.0-preview": {
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.178.0-preview",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
}
}
},
"Microsoft.VisualStudio.Services.Search.Client/16.178.0-preview": {
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
},
"lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
}
},
"resources": {
"lib/netstandard2.0/de/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "de"
},
"lib/netstandard2.0/es/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "es"
},
"lib/netstandard2.0/fr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "fr"
},
"lib/netstandard2.0/it/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "it"
},
"lib/netstandard2.0/ja/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "ja"
},
"lib/netstandard2.0/ko/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "ko"
},
"lib/netstandard2.0/ru/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "ru"
},
"lib/netstandard2.0/tr/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "tr"
},
"lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "zh-Hans"
},
"lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.Services.Search.WebApi.resources.dll": {
"locale": "zh-Hant"
}
}
},
"Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.178.0-preview": {
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.178.0-preview",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
}
}
},
"Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.178.0-preview": {
"dependencies": {
"HtmlAgilityPack": "1.6.5",
"Microsoft.AspNet.WebApi.Client": "5.2.7",
"Microsoft.VisualStudio.Services.Client": "16.178.0-preview"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.178.30730.1"
}
}
},
"Microsoft.Win32.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"Microsoft.Win32.Registry/4.4.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Security.AccessControl": "4.4.0",
"System.Security.Principal.Windows": "4.4.1"
}
},
"NETStandard.Library/1.6.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.Win32.Primitives": "4.3.0",
"System.AppContext": "4.3.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Console": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.IO.Compression.ZipFile": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Net.Http": "4.3.4",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/12.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
}
}
},
"Newtonsoft.Json.Bson/1.0.1": {
"dependencies": {
"NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.1.20722"
}
}
},
"PowerShellStandard.Library/7.0.0-preview.1": {
"runtime": {
"lib/netstandard2.0/System.Management.Automation.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.42"
}
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.native.System/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3"
}
},
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"runtime.native.System.IO.Compression/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3"
}
},
"runtime.native.System.Net.Http/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3"
}
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"dependencies": {
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
}
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"dependencies": {
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
}
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-arm64/native/sni.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-x64/native/sni.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-x86/native/sni.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"System.AppContext/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Buffers/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Collections.Concurrent/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Collections.NonGeneric/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections.Specialized/4.3.0": {
"dependencies": {
"System.Collections.NonGeneric": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.ComponentModel/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.Annotations/4.4.1": {},
"System.ComponentModel.Primitives/4.3.0": {
"dependencies": {
"System.ComponentModel": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.TypeConverter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel": "4.3.0",
"System.ComponentModel.Primitives": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Configuration.ConfigurationManager/4.4.1": {
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.25921.2"
}
}
},
"System.Console/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.IO": "4.3.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Data.SqlClient/4.4.2": {
"dependencies": {
"Microsoft.Win32.Registry": "4.4.0",
"System.Security.Principal.Windows": "4.4.1",
"System.Text.Encoding.CodePages": "4.4.0",
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Data.SqlClient.dll": {
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.25921.2"
}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.25921.2"
},
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.25921.2"
}
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Tools/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Dynamic.Runtime/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
}
},
"System.IdentityModel.Tokens.Jwt/5.6.0": {
"dependencies": {
"Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
"Microsoft.IdentityModel.Tokens": "5.6.0",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
"assemblyVersion": "5.6.0.0",
"fileVersion": "5.6.0.61018"
}
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.Compression/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Buffers": "4.3.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.IO.Compression": "4.3.0"
}
},
"System.IO.Compression.ZipFile/4.3.0": {
"dependencies": {
"System.Buffers": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Linq/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Linq.Expressions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Net.Http/4.3.4": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.4.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Sockets/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.ObjectModel/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Private.DataContractSerialization/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.3.0"
}
},
"System.Private.Uri/4.3.2": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3"
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Metadata/1.5.0": {},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.TypeExtensions/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0"
}
},
"System.Runtime.Numerics/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
}
},
"System.Runtime.Serialization.Json/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Private.DataContractSerialization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Security.AccessControl/4.4.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Security.Principal.Windows": "4.4.1"
}
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.Apple": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
}
},
"System.Security.Cryptography.Cng/4.5.0": {},
"System.Security.Cryptography.Csp/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Security.Cryptography.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
}
},
"System.Security.Cryptography.OpenSsl/4.4.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0"
}
},
"System.Security.Cryptography.Primitives/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Security.Cryptography.ProtectedData/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.25519.3"
}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.25519.3"
}
}
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Cng": "4.5.0",
"System.Security.Cryptography.Csp": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.4.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
}
},
"System.Security.Principal.Windows/4.4.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0"
}
},
"System.Security.SecureString/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.RegularExpressions/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks.Extensions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Timer/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.0.0",
"Microsoft.NETCore.Targets": "1.1.3",
"System.Runtime": "4.3.0"
}
},
"System.Xml.ReaderWriter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Extensions": "4.3.0"
}
},
"System.Xml.XDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlSerializer/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
}
},
"System.Xml.XPath/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XPath.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XPath": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.24705.1"
}
}
}
}
},
"libraries": {
"TfsCmdlets.PSCore/2.0.0.2230": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Ben.Demystifier/0.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-72yB6sCgTKX6Wv3pZnbkANJrC4JzxPnss4LuaUpIeRiiIrfWKJw6/DNaFUYAckx6EluP3YydHreIvJT9tnljJA==",
"path": "ben.demystifier/0.1.2",
"hashPath": "ben.demystifier.0.1.2.nupkg.sha512"
},
"HtmlAgilityPack/1.6.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uBXgK1zsIin+X2BYCy8KPDwafRet+Ja9yUJWdnc5ATlQBHrK4goe6DTAOaEE41IceaAH1OYTHgSpyvXqhX66rQ==",
"path": "htmlagilitypack/1.6.5",
"hashPath": "htmlagilitypack.1.6.5.nupkg.sha512"
},
"Microsoft.AspNet.WebApi.Client/5.2.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==",
"path": "microsoft.aspnet.webapi.client/5.2.7",
"hashPath": "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512"
},
"Microsoft.CSharp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"path": "microsoft.csharp/4.3.0",
"hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z+RMsrkkaEYR+obg9G8Nr2C9HZZAcmzCMqvBAmY94DhCJCW5KxAHyTZjlYBM6fx5tC7blFtYRDogvb0EtTwJMQ==",
"path": "microsoft.identitymodel.clients.activedirectory/5.2.6",
"hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.6.nupkg.sha512"
},
"Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
"path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
"hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Logging/5.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
"path": "microsoft.identitymodel.logging/5.6.0",
"hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Tokens/5.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
"path": "microsoft.identitymodel.tokens/5.6.0",
"hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
"path": "microsoft.netcore.platforms/2.0.0",
"hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
"path": "microsoft.netcore.targets/1.1.3",
"hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
},
"Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-llUMUGH9WuHBBLs0IL3yGADKxXhKGijFC8Z4Cx/ZRvNg/d2fmMmpK0hafrlwGIesMwThVqyKm7CXGYaqlCj99Q==",
"path": "microsoft.teamfoundation.distributedtask.common.contracts/16.178.0-preview",
"hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.178.0-preview.nupkg.sha512"
},
"Microsoft.TeamFoundationServer.Client/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G7QogfpkJep9UCWzrmFV216yhlrxSjb6Bi4ANxDOGFo7rOxnmVp7d7Bu7j2wYJnn0p0xNiQOB4YfRNyu8RWHcg==",
"path": "microsoft.teamfoundationserver.client/16.178.0-preview",
"hashPath": "microsoft.teamfoundationserver.client.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.Client/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZFl+U9M4iUA0wt3IHV8RnfdaRvYJV5Rh00Ek64OIFGEvGDfJcLpW+84UCwIjfTw5c4ud0RtqVUomB+X5T+9HIA==",
"path": "microsoft.visualstudio.services.client/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.client.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.InteractiveClient/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aHyFey19TOt6w4CX4cC9YU3WNzDkZOgm4hO9m1DCFMoo03CJ8WVkGIEq4s0agaNdIZ9PI9xhrZogJnjTz88OIw==",
"path": "microsoft.visualstudio.services.interactiveclient/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.interactiveclient.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.Release.Client/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CNS/hKoiZaQj6BJ4smSArCLpN5DMzFeIWKyZ/mWUL1NdL+cBIJ6B+L9lfQwemQ4YQ+sbPXwI1zRUNhQmFxdbSQ==",
"path": "microsoft.visualstudio.services.release.client/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.release.client.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.Search.Client/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-X/MKIYSCuFe7ax+Fo42dfULMmOf3bl66P4chClE/2PrC8c4fKJ5frQVnOu/wZbEmmtS9xwAfJGKSB9PbsMKobg==",
"path": "microsoft.visualstudio.services.search.client/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.search.client.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hSla/+rxKa7KPfMf0u1fmSAOWVkalwSb0Q/UjDj2gRoKZe4D7oYznIOz3/SOvMzz15OJhGhQVWyLrAxnz+BHtg==",
"path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.178.0-preview.nupkg.sha512"
},
"Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.178.0-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VpH03NJzxTB8ToFsBfNFjpnpXYH2tYZesLJMONGxmaQXuQbtFdy7h3HgiBuialoXzM/HpEAH8lTP4g4nux1qgA==",
"path": "microsoft.visualstudio.services.servicehooks.webapi/16.178.0-preview",
"hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.178.0-preview.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"path": "microsoft.win32.primitives/4.3.0",
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
"path": "microsoft.win32.registry/4.4.0",
"hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
},
"NETStandard.Library/1.6.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"path": "netstandard.library/1.6.1",
"hashPath": "netstandard.library.1.6.1.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
},
"Newtonsoft.Json.Bson/1.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
"path": "newtonsoft.json.bson/1.0.1",
"hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
},
"PowerShellStandard.Library/7.0.0-preview.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vd2iKiQjgB/Lh3270aMgdq/NdVq/qNHsLM8P7k/oD3hALG1UOzePa62TOSK6RlQClfXW1xI9Y1e+haHlUkF3PA==",
"path": "powershellstandard.library/7.0.0-preview.1",
"hashPath": "powershellstandard.library.7.0.0-preview.1.nupkg.sha512"
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
"path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
"path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
"path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.native.System/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"path": "runtime.native.system/4.3.0",
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
},
"runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
"path": "runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"path": "runtime.native.system.io.compression/4.3.0",
"hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"path": "runtime.native.system.net.http/4.3.0",
"hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
"path": "runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
"path": "runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
"path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
"path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
"path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
"path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
"path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"System.AppContext/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"path": "system.appcontext/4.3.0",
"hashPath": "system.appcontext.4.3.0.nupkg.sha512"
},
"System.Buffers/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"path": "system.buffers/4.3.0",
"hashPath": "system.buffers.4.3.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"path": "system.collections.concurrent/4.3.0",
"hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
},
"System.Collections.NonGeneric/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"path": "system.collections.nongeneric/4.3.0",
"hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
},
"System.Collections.Specialized/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"path": "system.collections.specialized/4.3.0",
"hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
},
"System.ComponentModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"path": "system.componentmodel/4.3.0",
"hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
},
"System.ComponentModel.Annotations/4.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
"path": "system.componentmodel.annotations/4.4.1",
"hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
},
"System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"path": "system.componentmodel.primitives/4.3.0",
"hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
},
"System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"path": "system.componentmodel.typeconverter/4.3.0",
"hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/4.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
"path": "system.configuration.configurationmanager/4.4.1",
"hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
},
"System.Console/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"path": "system.console/4.3.0",
"hashPath": "system.console.4.3.0.nupkg.sha512"
},
"System.Data.SqlClient/4.4.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Bv5J2EBAdP7FSgehKYN4O6iw1AaZrw4rFFqwt9vZSjRvC70FpwP2d9UG4aTaI2wh3vfrBKK+tjewowGM2Y6c1w==",
"path": "system.data.sqlclient/4.4.2",
"hashPath": "system.data.sqlclient.4.4.2.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"path": "system.diagnostics.diagnosticsource/4.3.0",
"hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tools/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"path": "system.diagnostics.tools/4.3.0",
"hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"path": "system.diagnostics.tracing/4.3.0",
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
"System.Dynamic.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"path": "system.dynamic.runtime/4.3.0",
"hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"path": "system.globalization.calendars/4.3.0",
"hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IdentityModel.Tokens.Jwt/5.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
"path": "system.identitymodel.tokens.jwt/5.6.0",
"hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"path": "system.io.compression/4.3.0",
"hashPath": "system.io.compression.4.3.0.nupkg.sha512"
},
"System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"path": "system.io.compression.zipfile/4.3.0",
"hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Net.Http/4.3.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
"path": "system.net.http/4.3.4",
"hashPath": "system.net.http.4.3.4.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Sockets/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"path": "system.net.sockets/4.3.0",
"hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
"path": "system.private.datacontractserialization/4.3.0",
"hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
},
"System.Private.Uri/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
"path": "system.private.uri/4.3.2",
"hashPath": "system.private.uri.4.3.2.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Metadata/1.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
"path": "system.reflection.metadata/1.5.0",
"hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"path": "system.runtime.interopservices.runtimeinformation/4.3.0",
"hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"path": "system.runtime.numerics/4.3.0",
"hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"path": "system.runtime.serialization.formatters/4.3.0",
"hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Json/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
"path": "system.runtime.serialization.json/4.3.0",
"hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.Security.AccessControl/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
"path": "system.security.accesscontrol/4.4.0",
"hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"path": "system.security.cryptography.algorithms/4.3.0",
"hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"path": "system.security.cryptography.cng/4.5.0",
"hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
},
"System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"path": "system.security.cryptography.csp/4.3.0",
"hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"path": "system.security.cryptography.encoding/4.3.0",
"hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-is11qLXIHKIvbTipyB1an8FT1ZKavmgf/qJUSIz7ZP830ALRRhPSt5NhplW0/wMk0tNDQWQLluVap6HsQN4HMg==",
"path": "system.security.cryptography.openssl/4.4.0",
"hashPath": "system.security.cryptography.openssl.4.4.0.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"path": "system.security.cryptography.primitives/4.3.0",
"hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
"path": "system.security.cryptography.protecteddata/4.4.0",
"hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"path": "system.security.cryptography.x509certificates/4.3.0",
"hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-h3ah5DRH1dD0WbtLVZrLAUkkMYL9N3gQ/qrJuc65GzyR4hsaPD0YjEwmpu5+2tNT8BQktW5xw7KlgoY83jqd7w==",
"path": "system.security.principal.windows/4.4.1",
"hashPath": "system.security.principal.windows.4.4.1.nupkg.sha512"
},
"System.Security.SecureString/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
"path": "system.security.securestring/4.3.0",
"hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
"path": "system.text.encoding.codepages/4.4.0",
"hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Threading.Timer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"path": "system.threading.timer/4.3.0",
"hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"path": "system.xml.xdocument/4.3.0",
"hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlSerializer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
"path": "system.xml.xmlserializer/4.3.0",
"hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
},
"System.Xml.XPath/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
"path": "system.xml.xpath/4.3.0",
"hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
},
"System.Xml.XPath.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
"path": "system.xml.xpath.xmldocument/4.3.0",
"hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
}
}
}
md5: DE60A17A5C0C97CEA9BBDEFF212413F2 | sha1: DC368BBF59960D5C36625B9098CC855439CA81A3 | sha256: 6B88932BBF7A6B2C6D60D3AA9621262068B9D0558C968B9802A826F786CB5379 | sha512: B6F89F2EB43D61AB03A3E4039666F9EF724D72B161526618946A05B0E23FB637D774C9DE609C05AA6EF2808F6E385CDCB9F168A9AE64BF343B2B6E447BC0D6A4
md5: 8C96AD53246F8BC1BF16C26FB6291674 | sha1: F509740462A969F201A8071889ACA5D26B41D8C6 | sha256: B101F2B24887A06AE7CC45FAF7AC896AC17CA9A8BCBF69A1A37AB118FECBB5FC | sha512: 5F933570712129955B8EAACDFFBA125D38601503F6AE666C68AE6CB713E012DAC71DBFB26027B6B7678210D7E11607B18B83167376C4A66EC7044B886891217C
md5: FC4C40F8C85CE087FA2CAA5697F17F6D | sha1: C831373C7CD7C101AEA5E83B564DAFD81E0ABED4 | sha256: 8D1220C85189E8E2F9FFA0D2C0F4C1BEB76125A186D2EA58AD71AE7BE87AA66D | sha512: BB4EEB182DDA9DAE78EDBA6194166F9556F18480B0AA6967FAE981FF1161EE61B2D08F21626D7357BB08206DEDD598A0E4E5338906C8C55B625DD0D6EB89F583
md5: 05D327E76BE561088B39237B12539F18 | sha1: 99C4BCA65AFA62ADF258CDE7D143B11D9EDBDED0 | sha256: C956923D08C71051FCBF17E98E89FA039D47A30268372ACD5E2125598AA281A4 | sha512: 76564D069EC94666A628D5129B751FBE6A963489DA3265D0CA52288918D553105AB6F7D540D079DB2B0DE20398BD955AD5FF29FFC98DA9113BE1A1D775A0F00A
md5: 0AC4514EB31193623CD4E33AAF47097C | sha1: 8179A4C1C2B33464C51CD0A0C658D86210990537 | sha256: B8F5F79BA34DCD8896E77596F9697FCBAE9693CA867A616A26478B83AB24C595 | sha512: 4F42DD9353BD2045412F24A961363EE5829DFA1B4EC9D6EDBECA8C8E3FC19D6461EF7E299A0F6C7BB6A7781863A39094F912204F22FBF9DE93DBB8C747F52664
md5: D17C760DD0CBC93B98821EF3498A1680 | sha1: F1CDB0DC27EA47844554DE51DB3C791409CD737A | sha256: 25A617C5736D9D42CDFA136CA4C724860E26D2C2FE9A11B2927376B9BD41EF85 | sha512: 11172B0FEA02FB60DAA473F7FD201EC716AB48E9F5DCAD49B335AEF54B559A005024119CFAA072D923D9A42A551F9DDFD6B33C00821E5155BDA9517A14F7B3FC
md5: DF78E9FFE1AE766C00FD5368BA84211E | sha1: C4D7E8229972480E53904385EF0285A45A5F88DB | sha256: 1B1A42BEA4507F0A3D5E49BAC8AE5E8ACE4A5E843CC4E1D14DA07987DC9967F7 | sha512: DB7FCF0C0AE1A7294824103751B3BE2324CBCE2E3CA895D732C4E27A928AC87F3CE42832BDF0B32B533A3ABED7BB67151787DD62618CD0BA67F6E57A5D632DB0
md5: 29DC6FED47A39FAB4EFDCDEBF58703F6 | sha1: 7986EA3C10B516E09A4F5E8ACCE531F51AC23FD0 | sha256: 11B504941DF3443FFFBDFF764C51F1D7BDB9B6ED2E96CD63B549B94BC443A5CC | sha512: F396DAFC24636B6D22D2A566EC8D905CD8483CC44107939EC1EF069051F08C1DF7E3AA7E16F51BBC8EAEED604F1A26E5D567907B35D1ABC1F21BC5907AB12E04
md5: 4136F5597AD102ADCDBE8AA631B13905 | sha1: 94FA87831D46D5041276F56F073C7C073595C4A0 | sha256: 40A048893E3F918E6724C84595B2FAD8F40D82BCF77527CEC054A4CCCCB254DA | sha512: 582F191C374E52BF1DF1B72828310F6AABCCCA1B766D82E05334D1E1D102F800E2362ED97AB020E251A758EECD137115C5805C6CEB04E7429E21428DF29AEE80
md5: 2CD9B413B3FDF3B2D86CD48812A85C0E | sha1: 2E3D8A94F8A22F903C86AFF914815FEA77712449 | sha256: 30890D1A4F2E481C261CAA9F260EFD72EF8D993ADA6EE9AE62AD45BB7A3F558F | sha512: 0E8D95204C04FA175A847B22946A2A05AD864955336090AFB2DAAC46E003DA1135811B1400B6E8C25E79C9F9DFA9C4E6345A1B2F28C9CAB821226B950948DCFD
md5: 27FCF4F43AE0BF611F221A55582D8B9A | sha1: 9E2EB06688FF909517C18FEEAD6E9D0BCC4DD882 | sha256: 591087E753FBDDDBE604E4630E144851661833717DE9D2BE422BA6D26154A6DE | sha512: A57A0276054B726FC277406939672F78A51DADFB7162DDFFFA47667480FE91B5300F5F8FBBB8F6F54CCD10D67F83E31187D6443F3AC430F51E98F63CFE3E275D
md5: B18512F3845054544A140163FF0FDB87 | sha1: DA060D9A5DA8D4F078A52F4F161CF12DCEA508F8 | sha256: A45BA6C9F7E8C6FA5D03375FF5C05BF43BBFA2E5735A256E11E4FC2DBF737878 | sha512: B515C56B4AF964932342D859E78BAA2988326FCFE60C07EF6E3C3FF9E9260586B43F7BB8C55A5577F0813F989EE381F40ADAC3F82915A3D3326C1CE618BA1F6D
md5: 8FF9F6C80D5F9F4FB0A275F8DFCB739F | sha1: 08DEDE2844B9A9358C986A72722ECF8719F76ED7 | sha256: 7D6EBFDFEAAB9BA7DD5093417A33F3D3EBA812B25ECB6423B784B0983AB15E80 | sha512: 8DC6585D4188A3E666894A5B4BC6F4DB74B669754CDDCCF5A199FA08F666D32B75D33796326D6D7204012FDD9125D527D54B20CE8275CCE9A2C6E60E5357E403
md5: 984D126FA48F3C347606B549BB1BC538 | sha1: 47F6CCD44950F8547BBE97A1890E25799DD81820 | sha256: 922E67E3AAF1CF706DC27A0069AA245B2D2719B587726FDC3190BAEECCBB6329 | sha512: 7276E071387A85EBF26584B5F697120CCE523099C101B7AE5A88039758C858904A3EBEC453DD3CACD40EA2EFB2819FB21A4727F5CCFF17428A6A515E14949FE4
md5: 8505A38AA55A4A35CE85D80692B2B750 | sha1: 07532638D84E8CBF42ABC135E4D6530AAE3B344A | sha256: 6538B15EE8E9E72C69ADD3B91A928A67BB4662A563894C1B61EE6EFE34A0D6AC | sha512: 27CEE86DF02C35AD3E62F30413CA2FE0285250EBC1A2D1FB4B477AE50597042D0C609132352B56A9308F625226D6240CA1B29D796B385F2ED73ED9CC65A88737
md5: 10F632AFC4BE69D86D8FFA207574B5DF | sha1: 81EB148FB91BB5FE85C361ED85038525BE1773E9 | sha256: A4EEFB495C27D2B95ABDC2739D8248CB4B313B28E1812209C4FA8279562BB694 | sha512: 2F5247568C208CA5FDE8F977ADDF91B05BDD3F5513DB32EB97BB2209B9E05A75DD2449B11BD743A61446ABD46447C73C6D19EB63BBA066ADB4E59AA140E63D20
md5: EF451D6CA9D1686647645175737BBD7C | sha1: 8D2CC3F514ECEC789D1E235A8B509FA4C24D8AB3 | sha256: 4ACDD8A3C1967306909C53E98FACA8627DDA499705EB57097E0D2EA7A23A839B | sha512: 5285E9D4B3438FA664C5D11EF398A9793E627D3923235E138004F7873E4278CD09E249E516F36C362865301592AB714E945E5E3173A084FAAC63225827250A97
md5: DBA559148D2F19832C3F6A0454C3FDE9 | sha1: 66EC14CBB8DA7A01C9D4874828ED8F0C6A6905CA | sha256: A7A1CC238B55E406EECCB1F457D26F6E245CA91F2007AE0C1EB6826152C150BB | sha512: 28E160C17E581FB8850290F51039C94A4948349826C7467F7599178B0EA7E880480DF199574DCA31DED79E6E6A2C8CC444FC0E799C1BA0CEBAB72A3A07FAC3E0
md5: EF308A6909E2560B311AB3BF74BA4C52 | sha1: 04A14AD2C5167167E3154FF7B703105C67F61646 | sha256: 73BBCC6FDF15E734FC496848C02ACC993597145155FC333747336BA146D5035C | sha512: 73DD73A9A4525BECA04E85EA63368D2A1EA0077CA0D770D85740DE4F462641BC459FEFF729AE3E7A78D144F0406DA69D2DE1A823ACB4CE71C2EB5CFBD3F38F83
md5: 5BD0B6A42528E3EB953E8FC2922651AE | sha1: B5D8FAFC4D7D3FF6290C0658ED35BF5AF6AFF77F | sha256: 23F20E52411B150BC15014901FB671C396B5F36CCC146A5BF94411D537F78D92 | sha512: 23E35849FAEABB9ED43A2C44F3CF5F02104F137FD2155AE5C1E80E357F2ED5F50331A6C3C768E7DF9B0D46151D97DB7B639974829E334F09AA1B6DD6599D6AFC
md5: 3C1B1DAB1E5716C5978ECC69E6207F6A | sha1: E4F5A06EF95BD8BDF9037F14428D34203ABEE4EE | sha256: 8F7C4E20A6AD323821C79053EC7D04A44BF3FC456E60898FFED7E724170DA944 | sha512: 5199778DE6971141FBE184A122F184D3920E6A538EF0F0010B751673CCF913E4243B0BDFFB8D0BE74925E97C7F7397C239FC9541D807F1338E2A13BD9E85A708
md5: B1DD6853B3BF06FAB91A195D54E8AE4A | sha1: 05D5AC0045AC7FC759F4692B2179744350D04D02 | sha256: 54D6E6B3ACB56A10F95D876CE4439B39036DDC8FC2C85341E4C57E0C591A5A77 | sha512: 0520697310C3F06BE190C37842013D096A3916A97637F66A3B4BC9C3AA6DBA992F17477CC64F6EE9D3B41E0BC27A9C3B75878CEA7F3DB7B6418CB2711403303E
md5: 1EE69EAEB17F02A92E4C16215C21B7F7 | sha1: 2E87153BE023FD5A67C0FE92BE41E89FDA5F40ED | sha256: C895538255A82F4AD6B6AE44CF1D6E62B19E569FF59B70B5AAE22E8E2C7B0E15 | sha512: F97D82B95BFDA0AF8FA72D6EE731A9060326DCB21554865385E597B13930DD49D1F1AC9DCC8F258DFEF4E75897CDE13BAFCC914B973DE3F3B66E92A7A2724AD0
md5: 0F28DA7134A5956331932A9DDED62315 | sha1: 8E66938BF68D210845E013068EAD17362F565553 | sha256: 13CC6D44626CB23E7A2798636780AD7978DA80C7C44105770D44A0D73B708CD7 | sha512: 5B91DB42A3E2FA2E43B18DC6A5AA79E8166E26247E20B1F924379BD78C37BED83D9AF062F01DA4A875782AB44A8207009F015B630BE493F95D5B27E06EE6D08D
md5: 85AE1767E9EAE3F41E33921B4978D422 | sha1: 4A24DDF63CE14A20A6D5CAEC7837BB8CAF3CEF7B | sha256: 6ADB818A190DB4E22CF30D5681F8284DFB90EF830F8FDF3A58D886FF0BEB4FBD | sha512: D8CD20B65EF9982F2CEC2D2F278F07A1BB4E9CD91138921961CDBF1152FB97141AABE80FF250B047D19F0C9F94859ED8518FAA1F810CABD177A888983806BFBA
md5: CF80E1079A2A894BFA7780A6DEABA69F | sha1: 19B64E12CC6B1F52838618269BC10665B1864F90 | sha256: 1CCFC8DC9E752781FA7DC659E7B6177243DF150F194529C9F39A6CD938587ECF | sha512: 350A6416CB6BB2B0F587D8143BD417BFFBB8E913AA502FE89485D99D4FBFA112B2F4198E9680F9254DD1C3ED2D346190192AF376FE811A1CA142DF4A6D6B9727
md5: 8EB475F9EA4ACE98ECB3357E1A048C6D | sha1: 6911A125BC331C9E1B548196DD94F3CA86CED902 | sha256: 5E64E1CCFAF0F7EC55811E96CDDCED1151961067B837FEEFADB07CB43CD921D1 | sha512: A2F5C40F4FEADF70480291C662742EF796853B07D62EE26343EC3B7F839782715FABCCDD6B51D0258A780CF92E14ACD64CAB22C91A492D684CBE7761D6F8AE8D
md5: 01AEE2A52D60685504B7E15BE5245B88 | sha1: DF0E810D4283C666E9DF64F78ED74BE8BBD2D5FD | sha256: 831749CFA5031415BEC062E1DAD75C0819AE11EAA59E5C3AECC0C1DD8C1EA765 | sha512: 6BF868820C907DAD30682053130F950B927ADDC727C190EE8270FD825768A1627AA8360D2011679714C47AA575B8D97A578B1BCD39166985182F87BED5A15B74
md5: 84CA7F878DFE44EBD626ACDDA036247B | sha1: 427E5A51AA1013D3FC9DA8ED8322E596B672426A | sha256: DA00EC8BF812D1395CFBD099232A0A7B44984CE082CC985693AA426E05369400 | sha512: F3511AFB9C0A726A63DF085622BE3CE0564A69C98E4094EF58931EAB95787B4E0EF5D9A779F6A356B3F84A3EA38D45C8BD31D9FD720C6063F7ADC2795BE6569F
md5: F02A7A29FD74DA1D37955F20A5D979F1 | sha1: DB76698526026329EF46479D09F8354B637F20D5 | sha256: 84C546296B915196FA3444F958B80D5E3D3D675D8E13234B5EC75BC84258AC4D | sha512: 5CAF49B8AE74226DF5A0A9D92E5116F86BFEAB32D6A2AF16DABCCE1DE5709D1C3481157781A6F40C0EFF48E738D1564C7237A64B518EDB2FE62DC455CA397E4C
md5: 320D58B8227419EDDB56A6DFC9734D1E | sha1: D68FE7C93B3B58A32AFF8B08C880CA0E9A4F9FC3 | sha256: B6C1CD2319934117F58BC4D06A83494381EBCEAFBED8751FD603F80EA2F3B36A | sha512: 57B3A742E254C2A5436075BA5D460F4F04875116E76ADA0A8CB35FEB39A19E3B56832713D96011848CB1D1DD095A603081E125FD9C47DDAC229DF8160EAAAEBF
md5: 02806DAD740805B54EC130E6248D57F0 | sha1: AAF6AD0253598D4DE36D8ABD319B0ED87A57452B | sha256: 23C13793C4C6319F67736E766060528C02B82CB1BB9E656E8489D602EE4C8E74 | sha512: A9C91F0A8144B4CDDC8EBA71335AEE8BCC312E3BAD938DCB58C8F530F91333C00A38E33EC06560C207982C9E7139AC1A44FE8AF481E7FEDAF059D4ABE472409E
md5: 13F44D1998D94F6635A4E8E20B321A5B | sha1: E2628F33161010FD1B465FB51694785D4A7455C0 | sha256: E323BBAB711D527FF71E511DB1C9CD5B7EA6896A0DB754F19BF8E703D15A8FB1 | sha512: C0327AB2E8D88C7E54637F9531CF770B2649B12D9EEE63325686665A1E1FACF7B658B08813BBE52A65E620E0648655FEA77FE07E228F2E5B03E716742CDA8800
md5: E1E174F1EB5CF8C9CC43C4FF94D3A77B | sha1: 5751B8181C90A510030263DE0E767AAB883C92D9 | sha256: 64C28AE4419768BE35154D2B5547F81783DAE9C49D8FE65EF253368DE4027A61 | sha512: 0C8263A782C35CD7E14B237CFA927BD9DAE82B2B8EC3302FA4B43C898BE4D0C28FB0A8A6F933294C62A728D752A672701E5500480DB7B8F5484FA734E96BC3AA
md5: 61F60D546420E19F9FF48A2C234BA278 | sha1: 6A3B01C3221B4A069323C901B1B177677F9469D7 | sha256: 1E168A1E2784D30E3131D2D6E409BDB7601C476F141CEF56A2BA2011FB1EC316 | sha512: 5007E25D5DC1852711F3827FA4C232E679BA5DEE69E673267F5E2F69AFFB6D75FDD93EFB70F5F8B0959827C8A0B48467A2F68181795EE7314045E07436F19C74
md5: E276C68446D9AB4EC1B3FFB1BBA026DE | sha1: A90CE934233F964586256FD8004DB93A9D23EA0A | sha256: ECDE6D687D8FB4D5613C36B451E405D24E9B912EE97D49198E1615698750A648 | sha512: 692C12236A78089E18CD807EA04AE363F00721C8E6805DBF09F9F9229349A01440F695A2994E01DB63393AF198B9DB2F4252DFDCD2876EDC49F21D7F78C973E7
md5: E45E906EF8C79A25287F657EC82F4852 | sha1: 6C58024709DBA0D0CD501B07E5BF4905548A8A27 | sha256: 760CBE337DD8877DC6CDC9EB7E34DE8F09D8E549FDD7B830F659530B68569596 | sha512: A9A4B860055CC8E284295A52D558A8B7ED4363A00D2277535ED776DB0956D46F9985A7CBAD3C05DF3C60CA030E19D00377361964656636D5A611CE89CCA32465
md5: 434A3FDCE1A808B4ABA40ED3519E8760 | sha1: 92C46075978ABC0DE8D6B22F61172D095D92C0EE | sha256: DDD45B1C03C1DC2B92EE9538A752038530E0AE150815EA34D0BF0F939385CD9C | sha512: DAD1B9F195D4C46C710BF32FB39907B0892F366FE6192584188A8978771407529F342158BD0303E96551FB43C59597195911F49BB9E0B70A052B8A282FA691C0
md5: 7D0A16FFD7C3FF6ED66C716E1E60871C | sha1: 2822872806104181D21AC1190E7CB75546B21827 | sha256: 0478F0A8EEDB03619239A248ACFD64B042668B5FB28CD33E9CC2A0D0BD7B931D | sha512: 9F1B8C0A4276C92500A7374378F642ACEC723CD01D3D3B08F49EF76D6F59C7D7B6922547D1711BF722FF999A9A47E7DE1E98AE33E6DAD486E049C3F25D46B696
md5: F4BC70EFFCCB8BDDF82B0C68B6E0AAE4 | sha1: 8009172B2CD68490E770994D6C1E7298E834859E | sha256: CAD33CD2188ECB5F58A7033EBDA987FA7AAF91158A4FDDEB541404B95444D195 | sha512: 7DE0FC6AF77BFEED5334B723F3FF6D198C5C88923250D2B864E6AD1AFD759F4D212EC08DDECCD81A91C796CE320E5DCB45081ABFE2E5E441AFACEC6C7A5CE4DC
md5: 90A72A956F484BD9AD0B05EF2AE457AF | sha1: 191546F7D66075A82CCF81410EA075E522596B06 | sha256: 9FAC546DDC86AF588481C6C4FA2A259D3F43F04C7AC36BFBE8DBDB91FAAF0042 | sha512: 16218D1C3328848753615327743AD002DEF7B7E994AE568A85DBAB981AA7700B793FA320DA298683B5AC8B94DF451168800A18E180C0B476F157335AEB8BF321
md5: B765E48F1A337C6D03B0216F5D94CEB5 | sha1: 1141A4716A3643AD6E8B4AB57F1C9F43BF3149E8 | sha256: E9D79F7DE56CC1782930D6CD8556771EC7E48786977EE757850221BF11172B13 | sha512: 97BE209797E69790AC24331CF0ABF9DD775FF932908D9396F509C53A2F7FC82DA54C93A0B4A603D1FB838D718A305A980980AFE25A3774211337F4850660F4EF
md5: EB00F2A798A40B1E363F807C7EF50BCC | sha1: 657DE9FF7692EFF2F3BC9FED8F6FA4A516BF6E48 | sha256: 6C3D1A3DD6E1C181A2116CD282894FACE7152B24AC84DA38A522BF06D4897B48 | sha512: E2D4C6504C9A91B19212A6ECA0397A1D774D16D4B7299B7794E160DCC45DBDB872F0A5D3803BD9AE12496A1DF94B0752815C65DFE8502664DBBB82E2D9961A59
md5: BD13CB292A68595E99FD38ED7036EC25 | sha1: EE0FFBABC306B2958F043DE3991164E1991577F3 | sha256: EF6209F14C17AFD48998785602A320FDC5464AFEAF45CE78AE904CA402737EFC | sha512: 70486A41F985964A4E0DD0EAB66B10576CD807DE9DC69226003EA53C5A6D348DCEBC45BC9BD9BF5605DF074BC7E9EDA4380AC50B637F146979C5EFE69A4D0F2E
md5: 6AE010BEF843260D01EF4CAB06F6325B | sha1: 4075E42ECB77148B9A86A921B7348B3C42403551 | sha256: 6EF03CACF2411B9C0ACD715F3DDD63CCE3941A05CD1EF3E161AFCD6A1BBAEB5C | sha512: FBAD547206EE21283E9E504C03056526BE6959471B62C1C91F9D9F8353DD41DE3AD22A8A6FD1B6D639F36A24C0C3DA41AF97C3D153315406952BA53192C3A6C0
md5: 4C8A80D3A754D7A13270DB8ECE94D194 | sha1: 7D5C437DD56DB4C45F1CC31799FE5DB87A0AACF9 | sha256: B478486C6F5E9E4165C174606E82FD33CB1934272D3C46BC01A2D9FF058764A3 | sha512: 7019E849BB30A0B46AFB388B9C72148DBCF056F3544F6BB6AF1D54026D4E54820D81FC1A6A48ACD8A363E055FC2D4644EB45F76B1A1E9B89DCE30591B8F711CF
md5: C74101CF080FE38ED9C7F0DE8848D96A | sha1: 3FD2A5FE0C3C62C88113C72E03F14C5871568D6A | sha256: A3B85791A2B398A546B20A7D06335179147626A9E82202672F1052C7A93C95B3 | sha512: 379E82B25986D3B39C16876057DD2DAA57CAABA3D3B63CE5DECAD23641BD76B53FC0EB41218DB6A29EB79447B0DDB76390E40DEDB5B2493E40F43605523C267F
md5: FA264AC5517CDB1AA3A01791D92D6C08 | sha1: F212120E479F3415FA704E2ED0164AA9F7735039 | sha256: 535278971C7FA99A0A52B4E9E591D673E91A15691873898F91790C261AD1D719 | sha512: ED36671766C65C7F592CA12A126F88EBF6DC9CF8110AF43776A3410BAF0E8194081790C5E0DD2FD17ADBC16D891B02D074DAEE46B32B37EF7EFB20640CDC4659
md5: 3974A31C1870AB618434BEC5F201719A | sha1: 1DC85F7B99512B2F4EBB7D94E1AAD69B3DB1C80C | sha256: B88378401C778B11DA10C529141C0514360EE7B977276723D9E223743C03A4F1 | sha512: 72F98CF8D2A2F213EDE0118165C0F870473C344E87A27C6583489D250BE4B2B972D453105DFB5132C5931150D44D7240F660EAE5BCDE01E31B6DC8B18D3728C5
md5: FCE2E50A88A9ECD5EDCE5A7A5F715A02 | sha1: CCD6A82BF9AF3FA89E61CDF5E4F59F218562BA9E | sha256: 5182261463C0E8560708D4D8B3438454CFA65CB16FB784E752D758474A8F543D | sha512: E06F03924A45A9EB6C856C3F7FA8D85A74FB1F90EF230D845C67762B202E771DA6F522360710497081601DD79A625347A55797283E2BC9D6F6DB72BA4C36A64F
md5: D16ED4FD9BA87C05FE451BBE41F62E3E | sha1: 84A4889893FBD574835FF2CBE5AF84393D1D3A68 | sha256: CBFEF1D0FC5A6F5C8920A6E528DB19ACF9E6EDE686249E4BB6900B147CA49986 | sha512: AA285FC94A97030700E65AAE86663D090D2FAB126349DFF579F618D1A6C9BD0042E3F5D0DDA2D5FBBCE1DC8B1295D02F2072A8E105021C98F3A480E33B53DC9B
md5: CA5765F8F827CD360964712694E6A8DA | sha1: A977367C27944CC756DD6FA541C58F1722666231 | sha256: F4BB9D140406236D0984D80C18B9A4EA80F4E1898EACFBBAF89D535C70CD048A | sha512: 7BBF1A8253279D9141C385862D5253FAE15070A639CA99B7EE02D1B28AA910654828C367CE4C53C4C93265FF58AEC9A6AB41174E34D22803480D472E96675450
md5: 9EDB70A86897CFE5B5FDE0CB111E2ABA | sha1: 6A6A71E5FFEF83546419A500A902A3B83124F74B | sha256: DF2D713C1A80BDB6FC13D4A01504B53DE65493E825641EEC6CF12A3E1551041F | sha512: 4D1954123A581D002AC685F0422EBB927D181A6E461E0C88F4B542B4679C957DA8A8C15D719CA7E8C0A670A5A8FB52F712ACF1D655F59B5D1DA4E6CF80C86A97
md5: B7344369709630E89BB3D7E1BC365552 | sha1: 168C342D40877A617B65717C6CAEEAAAE6A42F13 | sha256: 88D131B8376219E135643E2C181B76C22B4CFEBB3BFEDD589F3E69D043AA2177 | sha512: 701B98C2B6FAF128A3391CB66B3CACC45D2BD1CD8EBF02FA3E0F52A2FC0A1C5AB581AF10EBDAF479F5C21058B81345D89B5890D8536B9020C7BA921987B7A091
md5: 6C0C94C6EEA942C653F3ADA47BD344C6 | sha1: 2D85CA75B68C7EAA1CF6C4E58960DF4CFBD5B689 | sha256: 1FC68C90A3939C4802C36265AE7E1C5B08F46B5A3F1A0A6EFF6BDE26F083A486 | sha512: 9D99061D81F7548D2B5E15EFC57EE1601E4E8E78B773DDE008422A7B3AB8EC54975599DC866008FA39833851CFC0703FC5FBD2C2BE190FEF7628FC25D482A58A
md5: 02D79F70503AD6488E0D50FF71E26D4D | sha1: DA90E044FB3FD7C3799A03A506237A428169C030 | sha256: 202C676F02A265000BA91CC88821A2998AFE0E21399033BD1F396BA065AC78F5 | sha512: B28490DDC2877BFCC169BB7706D7B266926E0D9375CFEC05D7D389BB7F348CE934E0C1776EEB7A1479DDBECBDDE837F48C40F1E28986E72BB3CE47EE8B170841
md5: 26CCD53678B1B41CD27499FE889F4200 | sha1: 69782DADE7D39784E4E85ABE1F88F95BDC0690B0 | sha256: 8DB8FE36DEC432A4344EE51529EAF86F70F391D75833F2728F159D231D285594 | sha512: 78C5A8119E060735B87EB3555A87E1C22AE0DA777A4804C15A76406E84B0152D025DC8005D310ED6364CCC3C0F84C0EC7C081879500B4C538A7366017642B625
md5: F9FE96ABDE0C01CAB6646792867AD6B9 | sha1: 67713359A0389CA73D1000EB2DA823C334DB2EEA | sha256: 9CEA645588824FAA587106F9359B5C1CE39E02F2F3AFF5F151AA4E53FBFFEF77 | sha512: C8F933F647F263D6237F55870FAE4F854FDE88652D5C9E87B03AE19939B4533E4E104A7F7662D1B10A348994957E9A7870DA579879DA5F5E5F61F0140FEC09E5
md5: F750ABF58948620B141C36BE09F2F925 | sha1: 3579A0FEFC3D1197AE159D197EEA84746458F59B | sha256: 0A072580C2798E847BF3CDB0800490010B10632854D478178340834E8C0B81B9 | sha512: 3B09C77209FE9359EE1342E6AF3CD87C0780B6DC2EF489EFEF0BFCF3186B719B5BA2BB43E383AB999A73F8EAB9469D7B67E29BE1003CE0BC7445A6AA2E9C003E
md5: 1DC9B3C395DCD5C415623A65E67327E6 | sha1: 408857F98A4D7057113F5A50F83788AA11F32692 | sha256: 842D53D4FE7E08F0F5F67934DA89284E1F7E64C9ECD6DFF948A0394318A6C97B | sha512: 2FEDE6E7BA2F30880D09322BCDEC834234CB720E758D10342C53ED251302F932120278347D5817A6E440F034922EA56EBD0ED7234A4E128C1FD090275BCB2CA9
md5: 7D538AA6E191B8BBBD25490332441707 | sha1: 37028DE88E6BE0819EEE26514BB0966B5E90D130 | sha256: 8E11DD7F6524BA1489152649C853F1BB1660A42B7DCAF214A229830C8E77F039 | sha512: 080B99501BFE7E50983E200F5B155353503C928AFECD49C02EDF7C7346A1259F3338B573C280477F7FC1C3663143124909DA392D4C4AA65A7D34F207AF11406D
md5: BE9FED12A00CD03B67FF6F4B8C972119 | sha1: C34E19CE41F9BD8A6C1F05D77AF254787812912F | sha256: 1B21718A679A0B89AF81B9C8863F55A78F609AE09C6A11151C9662E40D8FF53B | sha512: D4660C9A0E54BA30000EBF395C0BD09011841C21F448E61EACC0DC89B6AD4DF9D3F7ED54191F9E4F8D746F7AB5E2BB6B1A32C9FFF56D9418040F2D32778E50DF
md5: 5DF7A00CE85ED2D78ADE794C50DD5EBE | sha1: 875428A38CE8904A937A098FD4AFA734734CAC17 | sha256: 2945F48E385614DB0C41A4251F34604B3671E511FAFCA24146515F8615C26688 | sha512: 6E717C879CC0ED2048DFAC1B012361227DBBEA5F0A6FC659A9175522CB5BE89F2AF49EF6E987D22B8065FF0DF02540539B569D266A68F8FBC7C335749D01309F
md5: AC2260E2B655D3D3E24A5CB5CA2DDC24 | sha1: 60DAF6E2CD6CB0193AEE21F9C2809664E19C194D | sha256: F902ECE9ABA1CCA558DB90D612B58F5FDDB76C7E263CD4F287D7A1D9A79D55BC | sha512: 17DB071801230745C437D5ECD535EC8727364BB74B1FB4BC47F2EBBBA970AF99AEF05B9C29D784FD65F72EF577BB03E183C491E7AD5856440E59D57E429F9746
md5: 14E95D93CE737BB5419C0647BF048C04 | sha1: AF0F2D84F9A393B4578429DF78D46D4D7157CF93 | sha256: 79B3251575B7F9A848BA4D1E6021557A6D57AC809A193064BC55887AFB8565DA | sha512: 2B61CD5992FF9226FC302853DC390DFA618D033ED069DB87A2ACF25401BAF3476184378610BA2036036949DD7B8DBFE83EA19ABD855F845B68735EB5C73B4E1F
md5: E2DAD3AB08CCC9D23FC7C8F8CB3DB425 | sha1: 8786289B78C35D8EF1B74E69BCD6A66E699C4081 | sha256: F8EB081DA14AF44730A0C60B2624F461F285D720B7DA229380E63A332D584AEC | sha512: 0DF74740797366015314F87A3525D30608F857D89D87BE28F4AB01BCC299A245EE7E691EA8E02D453075CE4535DEF0E1078AB50651C6B3E614C7D8AADF57E82B
md5: 793B7402A9120509C1669EEA8C2EADBD | sha1: 3F278BCB087EABE0B627E0387B413123A5E76C61 | sha256: 399E5A79956745312BD546C43357620F16092EA3F7B08FB4A790321423A4E2DD | sha512: 53F286EB17AEC79C8396676CC35215935E273C8FE4FE20D075397087FB63124B87F9B4CD4C44CE66BFEAAC09E258AACD96A680F22883EF68F8A1E7BC0194434C
md5: 1A7BD14ED6006D0D337E20C498615D6A | sha1: 2EEC7069D68945756D714468AB13DB4680B76CFA | sha256: A9CE6B43B770B64B867A133CED8F5DD6F07385398A5D9272B10D80A43E43C5D2 | sha512: D4BBD244ACFA004E433037294183CEA5EF8508CAA34501DF7F85FF49193B7253295DBAC5CDC74D91449A531782EB50D178E9AFB2B051583C7FE672AECD0E972F
md5: 82A326EE8F7C7D82F89CCD101673FA83 | sha1: 16A20C0013E664BFC7EF8A2A60BC5DC2B0AF63D8 | sha256: D7F12EF595B99F24547620C7E1447E1A0F2A4F5C5F91838C8937F17140CB0D99 | sha512: 688227E46FE4CC1D4DA54B4BA18CB3C7CA54994A97BFE96A083A7126B4A1A3F816855A6BE297E86C3E165E1C4A4A088978D3E0545673C9A07681C2DE1F0F4DF5
md5: 58F9432FE248614A314934F187754A5E | sha1: 3D3DCA111F23463FA5DA4C89781AD024068C3E2A | sha256: 684F70ECD33B53AB2FD033D0428ABAAB2BCAA72C4F577EC826DD77C1180BBBD3 | sha512: 15A79D5764F791D2C591B0CB9DF4C851D310EE982C6EDBDB6E583535D081DADE167F2CB0852E6D936ED624D294556F878933DC7453E88C0958C5E032C72E2C4F
md5: 40A3E6B8FA7758D0ADE76AB92DA5B866 | sha1: D495EB3783B7BB878EB19356DF4B50684CC7DCF2 | sha256: 616BA317B32A151D5EDE0646C11034B2F56F18960203D0B26AEA55B1F4B69442 | sha512: 3CEBA4479DBA31372E29062148D09B82BB1ADA66D65F10BF17F910DDDB499DA28868579558B4B1B40FDCCBA0D91465FBF62B4C864EAEEABFA72D7A993636341D
md5: 4D81C4FE87B9C790F8775796944324D5 | sha1: C20B59AA497F34866A9C1887606C93911612C64A | sha256: 563509B80A51F0145C13CF826363840E1B4224659BD7F9AAC1DA7CF0F5EAD1FC | sha512: 38870C172B8F144FD2324BA4C572B22F93C8DDE836205FE9CDEB4BFBED439F65CBD1C99BE548DAD68067E6428777E9078B66714799E1FCFA03980E00C1C0061B
md5: EF79F956B332F5B1B350A7A47C12D138 | sha1: 27A85B6F424C69FA9216C6D6F4C7271648A802B2 | sha256: 22DDEC0B0FD4B6F69ADA02088DEAD26AF2928C3E6C61C46151525CED3453626A | sha512: 15553C60418C310878DA1B84B1AFDB552E86584C1B919D02B95F57DC406B76225341A997DF1491F381ED02EE01471DDE04D27698266291D92B05B9853FD18BDC
md5: B9CA9011014817666DA8C87EBC5E7C97 | sha1: 7B65585FB011E7E47933D68E9787A56544BD7545 | sha256: DAA7D494984985A6F0EC3B79703638F32BE610C26EB8184DB44862548D1C0B3B | sha512: 469ACAD25BCE7A03CCCF460F2C43A8E2DB8EED4E184D212CFCD9B838C569FB07CAFB3ABCF6015B74198ECB7BA39A67856C603A7577A8158FCDD14B688AD1FC19
md5: C01FAFFAF4128F78B9D828F0FF92177B | sha1: 8FDF0718112AFEF702C72730911B8335C4810E84 | sha256: 66B0A40F5F205690275D55DE075FDC86E5C1F234B7144A5BF81C0126C6BD4ACC | sha512: 1468334A78FADD839561D4BA301128DCA379A23B68FC3AAAE5F74E2108A2ABF190497A495C7FA56F1EE02BCBE6100B765A45334B79AF3B20D5157728F28E1E4F
md5: 27A19823FB8E29C6BE4E8AB1FB3EBD32 | sha1: 4AE4B412EBFFCB556073B335C1707ED1485C17D2 | sha256: 27E43F3CD940CE85956AF3675686B464A7E6A10B6CC4CF7D71A087DF403CF0F1 | sha512: C4AB23D8D8047309C960AB1CD46BF39B312CC80735E3A4D9C516D9D21899261E0FC09FBC57605AAE2951075FF1F0656F64A7DC874F37BB965D0578A30BD17622
md5: 9CE751EB6B70C7614DB7B6AB95535FE5 | sha1: 6454C75E68692CFFF89E6822D9DF15867D12437B | sha256: 181EB1EA2A4CAF1567E66D52A4E6DB7345E61F6ADA90DCBD96C8769CE7AD65DF | sha512: 6312A0B1C6AE6B8947D51CB6B0276A5DEE76607362A4292AE6F812CF18F95E815F5AA1FDFFCE29C68E942D0693966EF2A76CD08C5F7D7E267832941FF0C63413
md5: F4C4F04C956BF1B8E48481BECBE93F67 | sha1: 6744F846D9EEE57A6424822A84DE2D4DD6B78A40 | sha256: 22526577106635D3F0B070BC5EC88B69A156A56EC748D4C197586BAF983F2D26 | sha512: F3CF5C46368DB117CAE88A48D00A8189DEECBCA5B90D41E3D903946349E1FAC279F981AB993EC19412E3960BAF38F6ACB943834A5A809F3653565D23BB70B7D6
md5: 473265EB8AA3D5991E9049EECB298139 | sha1: 1F376592265543D6516D5C77E39158E29F57CCC6 | sha256: 3A497DA61A6ABC9850EBBFA0639468954E832488D6350EF28BD26267BCCBFCF6 | sha512: 338DE1F69605CEE76E96520E84A5BE05F4AF27A601E223B9157BA4FAEAE2658936BA1E719C7BFF4D96FA881FA783F50788C3BF362D8832521E4D5763FFD5AF56
md5: FBAA490F3E737291F6080B394AB18FEB | sha1: 129398421423B6EC7B0976BB198B45BBA6C06034 | sha256: D0BE7BF0AF7BB1908CADA29AD1C3155DA9A48E19B6592039FFEB98432DABAF9F | sha512: 678FFCEA203C33BEB1907C7D9ABE6A755F7FDD9FB6D1DA2717FC277A5AAF387266596B5E0FC9BF59D74F668CCCE76F74DFAE6B79F942CBAF60ADF26A3BC9F3B8
md5: 59E09841A0D203E06A3BC13B0A3AF956 | sha1: 1A860D633BAE360F5FE0F0F8282AB0693EB4A9B0 | sha256: CA039E4010BE1D08E1477AEEE207D39A13970F824AB17CAB2D2FEB4A554062B5 | sha512: 4ADF36444E06AA8027810DEEFC8D7DEA31B31768D0A8F69BDFC77FCC163E9176591D6D6344B755111A2DCAA3FF0EB64ECEA6DD96D69B6A9581C9092B40637A83
md5: 654CD72994BA1CB369E82BF027EDA030 | sha1: B076568977BA3FF5D74A98D6A4DE838A40E47753 | sha256: 17F0559EC561622AA5A3FC99218906F3D8FCA7DC76306302A3DA3DFFF641080E | sha512: 840D1D90209C94AF10E8E2EAA91E330D233506E728F038144031A3E0D47AAE18E39954BF809B8C1DC4EE50F5DFC7B1BA931A5D3746BADA4BB1B88E008E02B30A
md5: 1B0827A4394D8C50CBA6BA2E2639C21D | sha1: C33A859D1AE213AF91E067544E3B547B60AF9B47 | sha256: A568BD1A863F95978C4004E8D77C21F4FF40779E42FFBABD66FB8AF16A4EB33A | sha512: C9F73648F683283FFA148FB92FB583CB1C882F184BAD38F40A72E71AC950665974FA2E141926ED565CB622D1A7526775D7C565536967D28D8F9CE275FF9D2BB4
md5: 7C44B7014D122C1E7427F02F90D2CBF2 | sha1: 9A57A9C629D3787B7084515F06637383E3D81D56 | sha256: AA262F2FCCF9DEB768D1D23A247D48F549397BE779C9B77168683D447901BD4F | sha512: FF2257098880EAF2124D5D34B98A408AB6EF41CDD0421CFA561DBDFC69AC351B3B7C5E45B9F4E7FCCD9532A6056A3522BF03805187F4CDCF66CEFD5207BAC089
md5: B1E0BEA1FD434B11C155A2E52619519A | sha1: 6BFA633205791DC9CEC93D2F6651A2D4CCF51C39 | sha256: 4E81F67D11705E5EF21A315B47B7CE0E5FED873D7129202F2C574863BAAD9D88 | sha512: 978835B919F315F7AEB0F288641488B4C46DF56EB7E4BCD35794FF32D7DAF368D09E788A03BC475E528739A4820C42FDD8AA180BA632C5282D927BF120ECBE1E
md5: E97F57E20A197306FB58EE386D77F384 | sha1: 283CB432122683E1FDD39AA7B6548A42E7629F61 | sha256: 23354A76A13593CE3CCFD33A7639E2C2FD00643FCA9D1CC7DA98B70A8F2E3B0B | sha512: 8E78CDFA293D95E3F105924798F3709B2DE75418A055E862AADF18EA4D444C7449A4F549785440F10DB8A0A39E3819BF9828561420389BDB891649A20BB4E402
md5: 54FF512755B874FB55B56A46F1263A26 | sha1: 0D59287A17D5DCB72F015D1BB637B130B54C00A3 | sha256: 7ECAB0BBE0F124C0BF526E06948D6ADB283A41541D0442C24A8AD33970462750 | sha512: 48327E2634332CF56FE09146B19F4C3CAD24AF15995CD90C9F85C87F1BB51BDF4EB49B30EF65AABA369145B3E4489EA1AD66B0A41966D1AE109B7257A6901A56
md5: B91471BD4063BC6AE75FA68F26DF442D | sha1: 37B4AF7B8AF1885CCDA8AC3F6DEFD2D33023BE2D | sha256: 3A91872038F2F7853727ECF28637A9B460C35B35DC608F07D681F6ACD4E49719 | sha512: FBE8B61D24931D53F01B63FC79A6058D806B1A44AAD9573E2CCA0DCC98E76265D42BA2A68626A5F722A7C30FB4EF86744DC937087918E6FD8C15A74FEB906ED2
md5: 26F5D743919C395B8DF77166996FEFD0 | sha1: 78DFE24F3423552CF9EA06EADE88D187F81F23EE | sha256: B0A5A58938AD0C0F5B0486031145816B53E33337F50C10BC2D695A42A2D8131B | sha512: 04C0ADDD199EB1D0E28E4FACAD8AEDC95E50CB3C2BBA94CB21D9FCEDEE8E7B70C7021D10974E696CF320980C4D4A7A47A67A305A0638A72F2798A589D389C39B
md5: 7A21523E64DA0F84F039E2B7E28F2D12 | sha1: 0C2447610CFEEDC4E9B8FA9273D63080DCC7C3E7 | sha256: 6FFE496C06B878BD18B56E4561404034F398D7EF3853A73FE38AB4668E687E10 | sha512: EEB6029E96BEB2A15C3B014104471C23AE50746460ED16BE4E90D6038B426527B43A25D6E4B6D402684FC920C338B4CCD266ED1563909F9051B23CBA628A26F8
md5: A9CE8008379F7541273AA8211D777EAB | sha1: 069C4937C11099B4C6834398F84C64D3EFF55742 | sha256: CD05B5B68BFC0E6873872E3D67C27FAC91BBBD4D6AC3C5646D04E72CDAB24A19 | sha512: BCC710E0D7AFB9C026E1D52F19A50F9F57A1DA9ACDC53BB8216AB505BEA989156CD546A29F4E7B3748AAF96B4BFA412A93A68EEAF8ABAE25F6767FA9872B1634
md5: 8E2F2169BDF83EE35658FCE222CB601B | sha1: 9AC2EF512663BA3AD7B09BA0585004E958564100 | sha256: 0FD02C16B0DD62B29159CE8A1D4F199FD2803A858C1ADC05FD97A1CF42509304 | sha512: 1DADB6890040AE4EACB9D776546FDA86077F4D2233EFF024ED6F2B7545B395D1090850B2E27843C96621790B4529C5BA8EAE28CD9E6D219FF28C195A3988EA77
md5: 54D3FA0D0520FA8FC01FEAE0545F78F7 | sha1: EEAA1041EA539C197F80C294E2DBAD0CC3F2FBE5 | sha256: E4582F2835C49893047ABE913CBBF1B2801E60F148D6BF14FD434AEA805FDD94 | sha512: 2B84B4589ACA8586E53625A4CBA5D072576D1E387B8199025DB173488F3ED5387F3D7ABEFA722D9B03457DB5C821E5CDA7D2CA1DCF48BD7D390C709D1075FF4E
md5: 8287951D5892A5BE1F7F31AB0CFB7029 | sha1: 21A99553D9DAA2BAF91F6D8E8F5B6D792F3419A3 | sha256: 1DADAAB1FF2B8BE00C7D42A72335D46A6699F76923ABEC25239B7CBDA079EDB5 | sha512: 52C76553E94036521734D51CE2717BB6A0F4296E5F2A2B2B75745A45116269ABF48C2EAC01E9277208F1B91B9CD94E9B72FA7D6D0E67AC31677CCDFA2D59D8ED
md5: EB46B4F21C897330E20AEC04BD4778AA | sha1: 36A9B831036F4492B849BBBDCA8116D3F2FABF50 | sha256: 010ED9408C8AF77C0821FAADB8C6E672CF0282B5F4E24DACB34C65700E032DB6 | sha512: 0C9703366C0C4747C3EDF33B8F373A4775B917D8C4192967F7B01DDFB276CB3AE5AD0160B3431F8177B26CF6502FC8F342DD170A55DC9BD24EEFEDFE2869CEAC
md5: 465F9348491D9D7AB242CCDE4847E17A | sha1: FD06730BDADF6A8F96DC4C929051710F38F1EBE0 | sha256: A371FA8115510AB2B739C7D4CEAD90BDCC951EF3BF4BA06EB18FD65D7B3946BF | sha512: 25C2BC881ACF8E7C20C3325CE633AD75981246BF598735040EBA1803AE2005C89A7599256A527DCCFB8E20880D61B31F626B4420B963681FF28CB969C91B8C22
md5: 403D6A395B1657258F10BDCC13206792 | sha1: 3663B3E071587B682B270D3CA2EDECC96A7C4F9B | sha256: E1B8B5F1BA1F1301EC263394F454893B68D718021CF82A06B98D84D4169513B8 | sha512: 845A1DD67763A081528F23DF3232A8151E85F2B1FA667EBBFFBCB66824D4AA3FD475C00FEB754F35870B53E8CEA0E4F725C9FA4FECE341FABBA27FAB135567C1
md5: 3BB355B64DEA2495C57191BE86297CE6 | sha1: 8B04700B7080596D2AC6DAD300E19A65C913D562 | sha256: 9933EACD7800DD5A96368FBD6C259B5A73EF6F26C388228D886362CE921D379F | sha512: A6B3BC6BA2D19A708709D55F43904A471B623815FBAFD2BA1CEFCDF3FB89C97B0EAEBD8293E6766185ED7F79D8FFD8800EC02639EA4C2C21AE31351ABB22A97F
md5: B3A091FB016D0D4085646D8B06B26AA1 | sha1: 6B6D3F1127E23DD1FC80558B762918E68482DDA2 | sha256: 0699F58D3D3F31A95CCCCC9271261766A8C26E06F3BDE09EACFA40A161086FFC | sha512: 44DC8F4E27D2F53EFFC6B7530E9CD243486DA3F3AC15D541C2E3876B6267271B6717F306499D80CAD76A7630FE9E8EB2CEC7D83CFA2D77E42EF59479AA3F151A
md5: 9EC84F31A6DDA069B94101C2C628B889 | sha1: 9855CA61B2E24CF47335EE60F40CB66015593E77 | sha256: AE5D09F8529E387A92695EC19D814447153F693CA91173F7EA27993432A84D5C | sha512: 55A1D5A78F11925B89931A45A233B2BADCB1916D2C46F32DACA251C6E4252198E995B243543771AACD20CC60450AC6B9F5828ACF0770A20FDF17BDB8BC838DA3
md5: 3627250314E1FCB9C69FB711415664F1 | sha1: E6C34CB55ED4C92DBFC3A5D9118C16C44C1B12D5 | sha256: 1116195A1D99764665A2CFB923368C2CEF5A88611668ED8DF12C3742620AC555 | sha512: B0DAA1215F889F1B2EDF8360F4E2BC1DD22EB86E35AC8609CC3FFAA26F273B2067D6173C3D005B35B4C30678F167794C4214C92043401C67E7523A4A2BB20A61
md5: 7D1D989E68063027AC0BC3660CD103D4 | sha1: F4E118358DAAA032CC3CE5D9FDEE1FEA15EB0BAE | sha256: 9C0A780224F9FB1F4D7C12303C6429C42209841E86F57ECD6C306DE7DD1F9E16 | sha512: 2451392A8D8B3A85D2C2B3BF2646FBAA618C13AB7275C37061EFB9D73D50D3A9B2BAB8A3CC7BCCAB68D494ABC30AE3A2A1892508412E675499137EDABFAD0C44
md5: B52E0214568B1894CD45CCB0944D64D2 | sha1: EF1659F29273036AEA6EB0DC744357C0C0458505 | sha256: 8EDB15B3549F14310DFC939E18DD288B29C97140D02F5852E962D3C95FC9DEE8 | sha512: 75522FC4FFAC20EBF4A577E59EA1F2F3372A19747EC92E0F4584314B70C74426A191A96EF36416FA1B9982A386217A5F53899DE293DF87D88BD4E4E92313E423
md5: C8AA0EB3EC6CF634949F6CCCFA3772DD | sha1: 57E64FBFEB8B0EC531F9CE45A7E4DE9576EEA1C0 | sha256: A730F9D4136426DC06625111899AAC0A52619C7489FE195B06171F46859E86E8 | sha512: F97A2511EC3EC3D0F98A8DEF8971B3F55102431682CF2541DAEDC7424DF3B3EA0A5D84042A051892CB7BCF6F87B6C396AE59414449D60FB2CF3687B91ABECF06
md5: DE18E44E03C12AA43EE6A1C9F3E7D480 | sha1: 0EE875483403B15D308F570D19EDE4558083D749 | sha256: 86CD78399649B462EE026714A46C65B758DDA5171CE15F7E596AAF73962B9617 | sha512: 69A136C92E4FA91A9F2447B64D9AA1E64DE4C836C95CA8D943E233D8E0EF8ECEF10519AF07BF31610D6ABD54AD749E9A6A72602775E2280F6838DF604372B87A
md5: 9843865A678230C36E25C9578819F92C | sha1: BCEA97133171025B28EAD2255222D7A075F6F57F | sha256: 1F9C08994D09C042B146B3517FEBC862A11082EE5D5A8A52D9EB2EEFBF3358BA | sha512: 2B4A10EF960A462607BF33661EE0C1476003395150F01AD54B7BA3879B50E46C3C48CA41B5906F8357F613FB0BFB5F80A63D89F8D2311875B2667AFCA3F9852D
md5: E42E7236E6DBDB68D698EBFA61DF79CD | sha1: 2A6653E6067EA6026AD45B0F2B34648B17B3BEF9 | sha256: B0189701C7C6E7829C872BDF317619EF7AD38B4B2700F97A807CBEFB0276D832 | sha512: AA4F0DAEAA161A28FBE226636DAE7EADDC41D329049F64DF1C557DCB255F666B381EA4921092EAC871EBF6AE9CDD8CD09EED2AF3643E98C4A6AEF7A372AADE49
md5: E316DEB55EB7206B5B78D970E57534E7 | sha1: F7B64BCAB74AACF1997698A8AB5A6E594BDF8BB3 | sha256: BA4ACC5D5C5C80AC8B836700DCB578563A64F9019F57631B5212F18BD517099F | sha512: 7D7568CABF130817233995B9BF1B2CF14BC12B343DC7B90BC6AA17144EE209C920CA5171D10CF6D77D91CA4B0C984BDAED68F2D18FED92CB92F88717030A827E
md5: ADC54151A7A258B79D0787AA89921E05 | sha1: 9F3397531929A704B329D63154B7121627F499AB | sha256: 03C2F5DC7C1754F7E6382D2B6B2EFFFC82B6C0F2B6AEE3909AFA2C44A311D7AB | sha512: 9E5DE7BA2058945E62D5681746700DB143827C0BE8C08C0F0F3BDDE564AA379B69B8974EC8CFCB3E412DC29431F1BBE5CCA571F5CC99009C127BC4054DBD4D2E
md5: B00D485EBCA8D7C24A5DA129BAFBA504 | sha1: 9E69F182E1007115EE389664748D5E67EA9A478A | sha256: 8449159BC69E9EA635AC5F62A79544DC4C52F40E9CA40601068722D68B770E7D | sha512: AFB7ABAD251B079DAB37F188AF1B3CE6123581610AE5698719546B6EA3BDDD04EA7B2393E1882A52F724B4D4D9D0BB5AFCE8E86B81EAA28404F173BB8DA077A0
md5: 7A1BF2486C58C018820C19C10048C844 | sha1: CF7AF53868ACBC1EC81C9E3E834936D69AE1372F | sha256: 60BF8409F1CBA8FCAAF57E29D6CD34789F0EF7D05693983B64D33F3C4B5613EF | sha512: 6828A919C2C3B6D1285B0CCBCABB87DB3E0AFABD7193BD9159B1AA535B6E4E2DB6B8DE0427826B7B4B5BFC37E77537B5AA1CE3D89D283CF9DB9CBDC1475D8260
md5: A5F93579132AFF7E3E1E3EF691A14E2F | sha1: CD23DB96FD876D567A0532093DC766F1E3FBFC71 | sha256: 16295C9453E39F38146DDC155BE92F9318F6EBB9E0A81577773F0E5887156F63 | sha512: 67819EC88DB323B41BD6B4B327A930973472FB26D71CD5DD70207AF03A64F97AFB590CEAF0F050D5261EDAAC922DF8A7E7EF97D2E87784F942D1402768CCA665
md5: 03FF59E7D7F86ED337FB7098C7B2D48F | sha1: EF78CEE387F24651D4621002674A314204F47DDE | sha256: 0A095726ACED70D3462BEFB7E3DF27EF8605B8920A22122CCF45513718E199C1 | sha512: BDBE02D4E9FDA5B803C6FE19EA7619E734BD8B5455612BD15CDCBE3B16F5CF3184EC239964DBBDB1B73F46EF348CFFC7875FF0D53DE53A1C7FC4DBDFA23BDA5A
md5: 43DCB1E2EE4C13F3E14F46E65854560B | sha1: 10B2E3324A33B73F92C500DA3701CDB58888B2D4 | sha256: C619534DDFB0A33DC8981A6BDD6FDFF68E7F13BD2B8E157064D4687A7D08E821 | sha512: 72558C05D8611D898EC77C84B7262EFAB4AFCAC4808FC885C90C1331DAD9573D45D36D69E130697B3C45C495099F5BB7441838FD1E3592AE2B178F965132F5F3
md5: 7C0963D38E8DA1DD1B9E49800C918A02 | sha1: F06DFF0B7EC82B4939319445D74B65863923877B | sha256: 6448D194D1336649DA47AF6F34AF5FC2B071829025E8BBCF5563C01E66686AAC | sha512: 3CCA9CB750ABB5B50E6FEEFC3FAB56A91B74DB66A67DF29C254DBF5EE7F67DCB34CFD02B91E7B9954B5C8F081E9F41E54FAE826B2B0D16FD122EEE603D4B3A7F
md5: 87DD15C9C0F07A1A26543D833374D0FE | sha1: 90F3BFF1D7816718475C96EF8208375E3AD132F4 | sha256: 98E9A70D06C564C7B8CCA93506990D3A03EE80E1413771C96572957A753273EF | sha512: 69B7E5154B688AB5814ADD84DB6F9F0B149E006F64E6991175D078BEAE73BA98A3F3B7926D73D6AFC621B8F49A0A7BF53708641215FF31C4A04C386B196386BB
md5: 814C139F95358EC6D5C86C0465C2E75B | sha1: CF30F8771B1047246FE221546DE572AB03BCCA15 | sha256: 06C657DEFF6E5239CB649C5053CA98ABC8B2B5992D7A421A7A6CCA0EE143B7CA | sha512: 2822E586F6B5D415308D56A06114906547494645BE318DE0AAC63B7F96F1CD97060A07A847E50F4871726276821967CC4CBAC100CE3A10F7AF71B0E475D29A64
md5: 96C8BA2C301D12FF8BB6246DB86B7D7C | sha1: 6DE7AD7ACAE3757856D4E7E88FD31C6E76A67873 | sha256: 2C8E14BE18E2FE5819B68774D712D194E3A1B05C45DF13C125F1A35AB6E71C05 | sha512: CF09AAE505674904B56679050D4E64235461C6B4F09245339D8FA5D02E7EECF32C425C78B58CE643CE4E067777B315328199ECBC7F45377388C69FE31A1416B6
md5: 5D8D4ABEC51FB9B1E3488CE1D3457756 | sha1: 59BD23884DBF2F9D2C9DE1FF271FC7D93C3AAAD9 | sha256: 14E1B6919A8ED2E48C2243CB57E29D8E19406C8155BEF9834008E4265CE306DA | sha512: 15935982DA7BA8580172C41032BD6044596615B80993BD7CA19BB1972461CE2FBF34A89C59B7F8259564A3C9CBAD3FB3E115C8EC9380B6A6232C5387971639AE
md5: A22D3E1E25486A1439A23BD271AF9349 | sha1: 109CC350F284A101D51AA47D0238748121E726D0 | sha256: FF5E1206826911FBCD5D98FFAF733154B1322D74F04CE53F518B62C5930596C6 | sha512: 67333E4AC0BA84F2FF26968EEEF2B56B08FC8EB5117F12C7793FDD5762FFD39D2B8C7040A7C42BDDE8097E44621410F2F665BB67172AA13DD4205D6DFA3249C3
md5: FC04FC688271CA170B64CD3A49F2A814 | sha1: 59CB96865C501D0489DC6F0ECC7D31A0556D79EE | sha256: 959A7BDD04C63DB535B1E9035A3326224D35E48A806940A5A192A6089A537D04 | sha512: D84109EB7E4CEF893CA4F3A1555F975EC5312E0600070EFD27D9AE81F0C0E4F80AA70DDEA9B3B8F9E7E5C93663130CF053C76CCFB706C3318DC3814DC06FA21C
md5: D6BE5C78A47CB3FBD4173A74BA168479 | sha1: 81FB2025D379600BE91DB434F603A568373D39FF | sha256: 7B357310AD0F0A5740861BCFF9029F17735F4BD81BAA6D7D4E430B97E25C5514 | sha512: C284430156CCED6E5A53CACC22048BC791A2442F6E2B679206C75E70EDACF59737355086BF7E1565841D6603E54ADC45574239AEB6799D8658377E23F8A52AEC
md5: 65D690711055A780601988ACD883C03E | sha1: 42EE9497B6C9EAD61F845E4A6D6EBBDE6DA52095 | sha256: 22BBFC0FB78AF8EEC122F8D9DFD8164E790E02F083ED55CC74CDB01A92B174D3 | sha512: F2602A3755C30E576B1EE66CA6ABFA7F0C7A912E38206E903D0EC4674C37543A08AF331BF65214035D943446549598A866F807CE649A9126B0E6DC9E52296DC1
md5: DD63E316058B942077076FF1BD34B47D | sha1: B4D71C7AE13067BBA525A27AF65EEA3BD0396B20 | sha256: FE8A7B83C4142780C395D55D52997C0614525856B7905EA95EFB62452DE06B50 | sha512: FD68C41EEE835DA8362A0F180D0420C8CC3D9B01C7AAB4C58B645C2D064AC6687A3B180C008C79254D3AC148257EBFCEC12FA7EB1592822C612003F5E84CF7EB
md5: 89EA3EDB0238C928555F1146C1A59807 | sha1: C6F6F7CFBED044938B1646529D34AC4E7DBEE2F9 | sha256: EDD7C77E5BCA0A0A7A91DCFF2CCC475631826B5593F2759BBDD90F0D9A4B1ECF | sha512: 17C16B66423D75C12184B30EA28DB92F31D4C7AB81A29A97C0CD671D3A12D3D6F5272B0F11EB4ED5D0D1BEE6BC0435450E324E85C8D1D6D1A01376F5FC2F862F
md5: 5D1E75EE38E8C5ED03B06CB0ABCC16F8 | sha1: 179EF085C4D859470A9E1238A9C04E0012CAE73A | sha256: 5B5EE360AB292DFC1D178DD669BC0A96D484B456627376682372C17F9D6E954C | sha512: B21827F7FAB6C1F4108402CE930CD93966BAFD6542F378555819CC574C57B44BEB6C4FC8C3A781E745A6ED8ACB1311C851ADF16F8286F74F7659E904E35C75BC
md5: 1CE5BA7B272D88F00AB44ECE6E35DFEA | sha1: 7D72475E08370B0939762DC04E6A244DE17B3F3C | sha256: A498436180374096E801375DE33F78AEDBBC00F3A28B256C9F624B09AF4C9600 | sha512: A59CFCF0B6C97A3E8B0EACF2ECC1F1A62B2C08D366FBB33C89A889D2A867524CB189496BF51F785B2F85ACA1A00690214102ABA81672ACCB9DC0AB92A639E8C4
md5: 75801103AA3CFF4D918DF5EE9EEFBEC2 | sha1: 154ADECDE9485407B8D2DAA993124758C7AB3DD2 | sha256: 8F9F3B37EE0CDCCAB8570EAC9BA901E34F1EBE6468A87A1B3C94481C1BC63E04 | sha512: 52B52B275EF5DE42954BF1A28C2A13B58B735D434C7848619AD9307771FDFD630CF4E01ED1CE06D693E784A3458A898C062158B44E6AFB3489C592E31DBB143D
md5: 12B11D874B85BF2D2B35A1198535A26D | sha1: 385B3EEB4498974ADAF68784EB98CB65645DB002 | sha256: 1D5FF617536A62107F7B71E500AF4EE865B64D913F2E9A12F77B3F6CDC1A158D | sha512: F2ECB45528F8F33FE2F8CBD48F8AC2EB142F66F123F366A068556EFAC9FF6489FD8BC5E23F6B10E58EE05759E3C58501C3E56A7CCA91225271B5635A91BA6502
md5: 31C575AE209E4DC7AD2C218463F80B1D | sha1: C1B5B9253F63D00461DBFBD07785CEFA36FDB88B | sha256: D43FCEF676D35D423CD9D5805912F6AD16BFC59476DED38B63FCF3CDC046DB92 | sha512: 8B7BFBD06E747B4F394A42BC5FD82F93D2D89043C8A4B0C8452B1D5C6926122CBFF50E814EE204AC3969E7D36FC3AC1792FCB58025B558E14CA258DAF920C4DB
md5: D937CCB65EADFBC17947F56BCBA02600 | sha1: 37216DA4AD6CE094739FEACBB5366BF0DBC7765C | sha256: 8B0ABB8F76529D91BEE5E1C107DCF610988CE07FB7684D2C80031062211DF22B | sha512: C46AB42897A8915EFD35D6313825F7B1F5417F5C63533EC94FFEDDEBBB3F65BC26D45F83AE6AC164B0774D45F3581F667A2F879A088C1FFB637F5298B2A06551
md5: D30E1780BD1F4025A5D4068BD9572B21 | sha1: 9D7D107314A8E75C0D54BF7447A780830B255C4B | sha256: E97B3C43055DC44C95B0C3DC6CAA8C111211421190DE4F451257FE088DE1007B | sha512: 57CBFF0343F4DD6A72C7F4F028EAD685406605603E47954DADFF5541FD9CFDADF5A8CBF445031756A2990BFCA0ECB17F79E3BD7003D38AD1B0C1DE395F1691CA
md5: AA09A49DD9C1ABC77516C42F04557387 | sha1: CCB4D1D4A2CA120DA81D8D7EEC05540578A65FA3 | sha256: 6E7323728890A59A0CADAEF8CAA5FF8A308DFDFE080D5229496C53FBDF4B6348 | sha512: 3E42B00DBD7F52303566E171B811D3B79AD939333D56E1A1CFB589A9EB39A9033E86828493602550DBA8D03DAC3585C1AE7E88CF9BA64DE7D4FF135BF2C097DD
md5: 8C9AB07C3CC89CB5517D701897072C6F | sha1: 60DE4A214CC91240B6E1BFF5DD080C1B0C5701F7 | sha256: 7C7160E7A075BEA6F7E3BFFED3DC00498CD03F680E4863DBAC4E4BB9112D3AE1 | sha512: 575B88E8C9561D486D9C06F2DE450B9AA2BE37CEF4B887DD5F0CAA25705318807D1496CB949A547E2DAB584134D61A1B2532939924279C71796BB76800B9C141
md5: C463D58DBBD4218E81CE9A9C85C2B340 | sha1: 5C234A1E2C02C07A53769DBA2EC2C775653EF38E | sha256: 6C18967A81F65FB4D590F960A277DFF44D67540874374782EDDC3184FE9935EF | sha512: FD8D57B19147B12D3CC821FF6604CCF01C89402D47FAB522D4BA73AD09A3E82314EB9A05248A5514F97F27E1765615B91B123468E2606878B8E198DAE5D7E609
md5: 956DEEB49F935CDC5241299E684557EB | sha1: 1D8E67C60E9EA44F78304573DE99E2658694D91A | sha256: 423BBD3F6BE3EB19AC89E8174D270AA7014D14B88E6652E69047AC9EFE73AACE | sha512: 80A7FCD8BF0896A1F2BD902FF0C316F5D0103CDD8E0365F0C8FEBD68A9D63E2217B2C7F13CA23ED7CE01B69CBC9AD04931FA73E8033ED1FCA6AB82F65E7C0970
md5: CCA86F3700BF24FE3709E92B819F2142 | sha1: 2918E46CF93F4F4E23AA05CEAA2CF4CFD7C38567 | sha256: B5B598F781A28D39C69589408AD761F9936874082E807354E98C6B1220CBB05D | sha512: 883A3C3B54B09A6CD4C71258C3234003BAEEABEC668C1EB11C0710A17EE2FBBF5C6A818F1AE22CDD6288CA99EB9352793B12AD62BAFC0CE542BF9B4AAFCA4EF7
md5: D1693B107AF02CA7A5651969663D8B4E | sha1: C9C7DF3CED1A93016A059BE0B54828942B24CE3D | sha256: 098C21595665F61F5ECB18B97F426F9B467CFE8753CEBD99F47B79C9514A7CE3 | sha512: 44D9FFD2762B49B9A19560BF9DE973FE551D9837EA898D88DB406F628FD4B7BC24924E6539B453E0A439E336175040A21D0862DC6F8432BD3552C4CE3D9EEAD7
md5: 6995D072791D3CA6A6E7A8641429CC5E | sha1: 98FC0712ED12CC96F9CD77A1896D8C5C7175951D | sha256: E269CADD5AF37BA73D4D4F2B3F581DB5772C6AC09908303C5059E3BED32B5F7F | sha512: C73A5411DC2FAAAD112A77111B85C752E72D3B4BDF47DFE807457F335949EB39484657055B10B7635455C839BB27E0BA88047848F55D4D8E3E074B097BDD1B0D
md5: 1356854E6B7E3C15F88F0130DF677973 | sha1: AA1B438C7CA7A67C70CFDCD11743703355FB88A4 | sha256: 96C401FCE91D11965A91DAD0C82703ED80FAC83E22B2765BBBA84DB85159BB8A | sha512: AD8D2FFFA2BA396E5E08D3C58C51996EB994B73699D29C972431FD9ABF5602D30FEF024340BEAAF2BC9CAE32AE3D2866E687C6CBA5F7378862C39E61EFF282AF
md5: 45698B45D7A64D93FB497266DC1DCFF7 | sha1: 016411BB113631607D4B433575C7DE8F9B7EE600 | sha256: 1EA0B583D3ACC61D51E659104ABD00462225F85E4A6950352DFF14900D6A64E5 | sha512: 4CB2A4379376A75889B74CCD21AB272E9474F1BC9FA465D9623E8252C1643719F8A09583243B9F8B6AA57C683789C7B647F21C297F7690F8CA7E91EDEF9C5B12
md5: 0C5048BAE2C4C06CB83E068AF236A044 | sha1: 9B640DDECFB10DFA529A52DE6877C864FDA775FF | sha256: DD3FA799BCF1D6EB57BB2A3C274C860DE580AC723D6CCDC2DE2C91778DC661FD | sha512: 332595CCEDC2E5BD08B85C98450AE34C6A66770275930822C45B149B4F1B2D4496EB5553C3BCD8BDBE138910FB919ED881CC620047EF557A7A547BC2741722DC
md5: AC48C9A01F6CCFF6173448C222B10DC0 | sha1: 8A9C1AD83E5E271F99F5CA52C6D6B597B7E0E3EC | sha256: A86D725B27730429DD488532262F06DD29D703EDADE9E8C8DA898A504DAF14F6 | sha512: 3E9A78641D169BFA81E7EA73E4EC47ADD38F8F2904BC3BE984B42136921807436F3FA6890C76B477F1AAC8D3456EF683B94C2B899BF7664DE405493C1BEDC8C9
md5: 14461F9FB79E61F3AA44986476B70B28 | sha1: 953237A7FA9483FD9B76C638807CDE84D1520497 | sha256: 8D63829CA8D5330D14A3B41AA7CB5A2C89068A1759FA5D89ADFB0BBFB307285C | sha512: 26581825C449ED2DB679DA913872BDEEB0EDC3F4A8BBC3655F294804840F74785FCF85778546CAF25249E326665F110B1D67F2AADE513406578629246FCE8CBE
md5: 5B1AB248006161E238CD2427453BE4A8 | sha1: 34988861F54EF075EEFA4D263B058CA953D01FF6 | sha256: 1F2917BE0EE777070C7E9E3351B51C7FEEC980C5904B3255A576AAA5E6DB9364 | sha512: B14B7E11EA39CAD4086B835792707443C9BECB1FBAFD0338ED4B64EDAE8E0F763E76E433DBCDDA3586D93C0DF8DD3B0AACF7BE54FCC6E5F88D1EB4A4B9D67C27
md5: A4A94CD3F61BD5BEF568EBA457190A50 | sha1: 9B4F817C29A88A17BFBA9BD48C3AD639189CE7E6 | sha256: FBB6B376D00E957DA7E27E0715A0631D2A632E478F8C38E6790E317CBC55040F | sha512: 31385E67CFD2547C1359E9813103DF8E4DA948CCFFE9949127535DCD59B4603D327D294A84EB937936AC8AC676EAD1DDD16F35BDB6F0B2480F61FEC1920AF30C
md5: 00B5FF78CA5654561512774A5D4B4775 | sha1: 5CD054A479ECB1C5DC0A57947551EE467AC5340E | sha256: DC23EDCDBDDD1A766DA525F6EC3DCDCADC0219A424136DA2B1FF4DDBF4E34749 | sha512: C9154645119E5162BF77C0FC5CB2F4E5F69FBDEE22201F0DEB80AA0FACBE9B90C918180F2B1A60666FE1696B15610C454C50D80BCBC23FF14C364D98DF56AD7B
md5: 5DA49D889BED0E49F5C55BE191747AB1 | sha1: 6E99C784ABB890EFFF2EE0942EF4F684FB30DABE | sha256: E303CCDC88D0910F9EB70BC3D954445D21EDF25CC63A4CC958876BF930FB3FD9 | sha512: 044ED61ED4C3FB5612BDF0844AFD16420466154993532410AF05F05EF4C9FDE92C061EB8AA142F33781EE35490C6F4CCC8518463ED9FB43298D3B2C3003CEFCC
md5: E4E52D012E2D026862A22D769B4F3469 | sha1: 5CCF44259BEED9E63D5CB826CF36575067AA064D | sha256: CC9A3411300706CCAA66FBD1CF9F567A5BFC490CC8A78DCAA6507CB8F4F1ED98 | sha512: 3B9F9278B42CB668134B6F78FAA2BE85258A070BE184E22AA71CDBB177ABC4F166CB17A1BECAB292A3D723994826C6BF5049EF9F7574D5925A7EBDFA7500E1DD
md5: 1F2F03ED06B29060E106A4A443F72AD1 | sha1: 46FBADEEEB12F1AAC9357305188D080F93215A45 | sha256: FE259D513019E7F1AAB6C420AF6769D384A802F3C59A3714D650AB7B1896B00B | sha512: 64AB2987F11CABDEC5670869C0D6880392C70A39CBCEC8604A865B783E7427D3E57A9B58E811914580B9B54C1451BD30213FE78E9CF2B5020A90324659FEF25C
md5: 9ACBF34D47AFDAF936FFD838DC6B3DEB | sha1: E3D2954F934100EE4C8E3BAF332192C860F10D61 | sha256: 903C1FD8A71D64613D1D37B6C9E152C4C5A3A66073B85671E0DED80AAF7013A8 | sha512: 6B2192CF4FC176523DE76E26070B7CC69F3756C3D2EBF9BA3661F883E61CE2B2BBF0A58AA09C7800D2470FA5F8B6EAB6D4EDA903CB8BA76A72BBFFC18D9399B4
md5: ABC7D03B92C19AC4C9ED878720D616D7 | sha1: F781FF7AB9CAE711F4AD95433B95375FAAED5C64 | sha256: 533F66A6B706C9E9A8710B1C5CAB9D23A0B29029478F1FF8CE548E2DD26B2D90 | sha512: D4578DB295534437DA4FF51881B79422CC7DB271E80A111B3F16FF5AA3F3ACE95A52BC9E0A94DAB256D8830C264514AE70D17E9ABFAFC21DBBC490A2C49B34F2
md5: 4A2EF35455A7BC38408C2C0672C955BD | sha1: D39DD11059EE512FBF0EE6ED4CB4D7AA3D34C0CD | sha256: B2BDD04DA16B2C9D1AB01D01486E4970130BB1A54D8F296F31F84B3C13BD1119 | sha512: 747C4EF71637A16C2CDFB22F52D658B05B3C181DC1D81FDB27CBE112E5EA15EC1A23D66E33783F86F1D88933012F8A18DED7186D24761181A0CD28FFA24C7ED0
md5: C4DA2BFF19282C8DC37980D36527A8AC | sha1: DFD1841E6E5B37ACC59F06A45D5C52E7CACE78E4 | sha256: 7F6E8A381F8EFA484762C545E98BACB6B1BAE209B50D5A567BC4A7AE4772A7CF | sha512: D9673D329F42DB313C996AB3EF4195D462E97DA4C13EB81D45EF1DA4345ADB68D1E7ACB6F00A685A14E49BC69CEC1604B99EAC3EA39D50BA26C4E9BAF9C7EB25
md5: EE21DDE37459DE7B9A955D8414596313 | sha1: 68BD134F536CCD08F7E0A13A5D61CFFF5BC3559B | sha256: D5450444B88E6BC23AAC7F64899920A7A2C9DE0AE2B04F16290520EA649C65E9 | sha512: 62DFF1E8BC7A7495CF9F2694EFA2023D8F83A2E2BDE9BD0741284E744F7E83EDFBA740E1AC713CA787C461D770EC14BAB86B55917ADD76A6B777A24310494CC4
md5: 67952BD4D03AC60958AF792C120DD817 | sha1: 5E1278C62F3333CF4B9EDC4C84CD7446D339A0A1 | sha256: 59B323DCA5186AEDA63D55FD07F823CE8C823BDE93DAFED3F546BFCAFA3E256B | sha512: A265263C19AEC1B8ACAB7C2BB0DAC6BA960DC9AA9DCF6683AC4E93E4FD06A62BF2EA8F2470712CDF74FF4BBAF9802B4ED2088CE1FE3466C95E74245A4D7F981B
md5: A0F734D52915340D0D67B3313CD4AEF0 | sha1: 275EE17F89A8F4D0DBE0F1CD666A8AD2625DBB84 | sha256: 00AB37BDD95550BB0B03C7ACC07E41F82D400F1B00FF945C3ECEF8653A5A792C | sha512: 22F870E15A0D26836C9C9064F431250703803113D18B4DA399A051E5F091878DDA44744663BE1B0C257D96A7A4D372435070A88E72A4C65D3C2969499CBE22D6
md5: 894D61F2F56A550636D2BC6567B8F492 | sha1: 0A5B067065496FBCE12D03DB3F96EF9B83746903 | sha256: 26EB7386F44544FCEAC35F420E0D1809A8F254C27AC77057114445720D63C62D | sha512: 2F847AA0A5B7F851E1E29F9F011D49D02D52C23A3E5D375696B7A161BAD6C14CBFF3759C4C25A4318BFB096F8FD61166D655896FD4546EC3C806DFAEC44DCD0C
md5: A78BF43B6F2BDE2DA207538B226EF670 | sha1: B0C17C166F02536ADD2A95DEC71D1B4A250DCE08 | sha256: 92DE504F0CA3C8373E3B6F060FF1F58485029E7A3ED9CE5F567D3C2B262BC56B | sha512: 52B18D8E2D3033F6F18FBF64C6E395FEAC9C0B7773D69715D26C1116009E349D0D8CDB9ABA12482A5CFC792EEE355C95E660EB582329BBF56D303CD61DF9BA4B
md5: 5B1513F456B5E5A2CAE84D5A522C88CB | sha1: 342CC0D94E50BC3B3C0EA97693E42B5903EC3A0A | sha256: F8BB00BFF28C7EAC2EC5654B4210105EEC580FD59285E2F52C91BA8B175C1A4A | sha512: 6D1E6E5C62F376544E80A6543585B3586BAD7128FC73BE583CD04CC30465D7747FA9992F8522A1F4E0E6D824D9E6A817CB4DC517358FEFBA9C454B92CFE84125
md5: 3696CEAE5F9319EF1D9E13A046DB8C8A | sha1: D0522E14FC7B7821089C97AF3DA84E58CB244ECC | sha256: 02BBF149D1F17B00966200F005C4E829EE291054BEBD00E943619C913993DB5F | sha512: F6A70C7D83F56E350F3344C10F5A253E1C12EB30021CF851F4FF7EF403FF931A1F3996F0D17313FAC81CE703D686687EA69BF744638BA2690C6842B5505C23AA
md5: 9F4D16BB23870DB877096CDD8033034F | sha1: D6165315CC1E8D97A235B81FEF14060075B4E052 | sha256: FB64841F0E95D05D1307FEE801229E2A60B4ECF814FF19B53DC45CAF481DFD2A | sha512: 8EDC45017B419785BA97D300FE70BD21BFAB2395CBDDA0B7903A2D47FFC33E60C6B26B3C1FF40FCE880D547CAEBF48884DC4F3568DB1A0788997C296011A3697
md5: 77FFD58EED99596D291024946EA5CA7E | sha1: 5EEF785EF345D180D1D4B684FE1FFB8B2923BD86 | sha256: 84B1569D8D96BCF8EE2635F4E89806C8EF2EC3097041D9E8C1BF4B75E482FB14 | sha512: 2DF76B9DAC406BB35E7EED5865EB6E2E122F779C544AEA8C96899F2C370ED3A63449D43135A07107FF412D6140A4EEA458938EA3C7092019D16479D1069BB7BA
md5: DD84A974F3016B2FCE24A56A27AB1173 | sha1: 05C5FF78046959E670CEE76BA26676620BFFD7C1 | sha256: 4431136470D0C954E5D60F518B31AC8D2188D7EC7D5CF5EA019FB59DD13A5CC5 | sha512: FB5BAA4498224FBDAE910EF57161AE75EF6A0476A748F1BE45DF06977CC476C0842B9F22300DA980CE396DF7DBB6B60E4495591955D064A3CB505310A50C5193
md5: 29357CC9885FB411522DBF094E68610C | sha1: 21F9858725B455F7FA286C758DDDD6D6F6E55E53 | sha256: A4CD63E917E70F3FC42CDB0F0E53960934D6A556FF2E03CF907782A51476295A | sha512: C3B30B00EEDED962813C621DC601FE36575FD9B37E1953D2E5724424B8F588F272871E6A9E738497EE74BE99CC6137A86D8EC8482476C4946668C2668C7F4094
md5: E9EB5A8650531888ABA5790E679B03EF | sha1: 449B909D142FA6B53318D9FEDB25DF7384442832 | sha256: 459729345996C495CC6813B6017BF0EFC6A3842DA13BE9CA4046D3235891F285 | sha512: 1B413F17822B2309897C241405B82B7FAB0FA90E9EE0417BE40156F6A851687DEB12A158CF41AD1212436513CBDA6D95E3291C6610458FE0DB53C5C9AD2BFC93
md5: 51FD8A4B31CEAAB5DB3069AAB9309861 | sha1: 5219DFAA8B8F20F957AB3E78351AB879A30BFB27 | sha256: DB15B954AD6C39DB48DF46974CB09019C2A06A8C84C8ED7B7FBE9522AC70FE00 | sha512: 6B1FEA407870944BC8173933A02F58C6B86A2D7E47A4CEE17594F3FAD476E683EB27610DC3D9ECE779B49AA77E42B4934CFBF3741D6612957C3C562A330DC6EF
md5: 5F6D4B6C48AE2589756A8729320EF147 | sha1: AC04B279ED31E59151AC8A60F08ADC193FCB3C47 | sha256: 149E37952353FA9377647910B98E541D24EAE8065A36B575E0D266FB10DA7CD5 | sha512: D30AA1265B342C6BD3FFC1AA21358409AF58DC3734265B14351D46D45A706F9D2C2E8990444F8C80D03A731305401E898215A1ECBA105BE378A251A97F286734
md5: F99C891877A8F9D850DCD9B103DEF07F | sha1: B72F8BCCBD8A53F4217E54558AE43130E3C9A72B | sha256: B54132CB053B3378E23B51E73834E7EA8BF140F123DE7D959923FC324BD58822 | sha512: 56D82509F9C4262B315DD9C63CFF86563E7505624DE7B0AC769E8CE098921F968E07EEACFE843D9F3D4F57F29D674D569942CD78990CFA1E9E2D679374A6B0CE
md5: 1A4721793D0A6B122BD392661A33DDEB | sha1: BC2886F76085772C9135CB096A25EF6EE41D75CE | sha256: 309DF415DB92711EA9C601B18052CD2EF582590DD7C0C035E8995762669AA042 | sha512: EFAC76B972AB7435C9DA6355D893B7F81ECAEBBBA3EEE829890915EA79D260AB639D20661C9386538609A29C8E0BD64B4F14964E98801D489D50DE1B678AABB9
md5: AED2ACA8AA9045FA3A8DA1A825260E8A | sha1: B41B7301E7B51F0B29A7C782DCE8A670D342CDE9 | sha256: E04FCD3E298913F2B5D98EADAB642CF6880AA9C049F320CCA0957AE75B39133B | sha512: DDDB10A2B68D76BC0298A24A8A72526385D9F822AA49C8455A47C9FC4DC563EB9454EB180B8F7277F46A047BBF8BABF81A506B3D408FCAB092D8605C1E4F771B
md5: 612226E7D6310393A7D4B70670FF7119 | sha1: A20C5FBD9D07065DD9EBEFD62859879BE38C87BB | sha256: 6AA733D5E1124AB260DBD137FFDAA31631D7AAB08F6FD6A38186895271A859EE | sha512: 3684304C49C91C88F9914588420FB8D4997E074FD51F001589788C72A2B67B2F811A5BA5E18407A4FC385B14ED304F66A5BC9CA6AAF0D53F037BF11F31ED1160
md5: AF9EDACFA1DEA7B1FEF15F8160AABB73 | sha1: 04A2ABFB4282DBF9398CB811B4AC41854BA0CC77 | sha256: 5A1D676A03FCCF49BC7CA7C6D0B68A7C3B79E5476450C6DFA9EBDC34C561C97B | sha512: 47091EC469785AC9E7B2C8672FE7782E1ED1F7919685ABF1683402D9581FE6E8C2D78321D3A0058D52697DAC5ED4D9FC3B1F82DACB9A43FB2EAB2F97E25EB62A
md5: EEA58574AB9690962A7B382470E9FE76 | sha1: 40B602D5822C28915D125DEB03278AE1E32D745C | sha256: 797D1A30B606860C9C4E946EE0A7EF6AF0378A00048B48A3F08975F031C3EEAE | sha512: 0E374B5D69AF33D79413F7AEC3B93D61A3891ABE0BB91CD8CFF91B2021CDAE715B166F67DDD63A958DEE5148C07392C869C9BE5A509FDB8622056B9C987ADDD6
md5: 47A99F2C6C752C04BF0B613AD0C8588B | sha1: 5033C294C8A6D8F49C3DA10426AE59C56790DCAC | sha256: 114BE9475E09E2276984A66D3C49345D8EF980097FFDAB2C3BC8D51FFD8C6F6E | sha512: 502EE582D02CFCBA562C3936BC470294F873D6BA7F85F1ACA5903B9818B3812EEFB0F38B8718596CF29E6DD5F3B6DA3D7A759F857F02CF12654667018C7DFBA2
md5: F7C635C9A0F50AD00B9894A05C2D339B | sha1: 2C85746724888128982FCC149AF1D7DB986ECF93 | sha256: 824D9AC939FFFE582F258FF3419E8201B22B18570A73F2F0760F9608D1084DA9 | sha512: 265A9500626264515A464233DF9589A501E5B545F86DF5CE0891944AE368EA281C84DE6A7B2F0BCB02BA574EE67E99E9B499BB220522F2799171CE2B611F2DD0
md5: 2E9F475107A45CBBA0649F76A559F05C | sha1: 790562B50FAFB7DECFB2D3D77F77B8922F521BC3 | sha256: 7F9C8D5AB8A92D6B877631F427A7403258128D928E633A071A8705FD75121A4E | sha512: 2709D96827A4042B75D8800A9C2E4B7B56C9779E67A46E3FB288DB42CCFCDF1CED8F1BDD0550E60DCE2BDD97538C3FFBB9EF357EEBE7D2565678274388CDA0FB
md5: C34FFCCE47DE1EDF251AE8D58BC8B8A8 | sha1: 55E7BA4C8F408D62C42275E1872AA7733582286E | sha256: D6AEC6D72A066C4B89417AD00FAA806F7293A8AA0676B772C15523F17524C56E | sha512: F88862DD6E1D7BB4B3E7040CCB4680C5754DB344DE999A3D64497C97E9EA1C7228F175DF476A738D8DDE19AE0FCC37F9A1567E268A624B31FEE6177D830AD31E
md5: 93C07774A5544D9D3052E4AB1492F5DA | sha1: 4BDA9A306FF2CB8D055DF377F12775324B1AC3C1 | sha256: F515460549C8BC2E0BC7B724535149B4947FC3E37B4B9E9B96BBF314BEE83611 | sha512: BA9F772251D35D00A3CED19DE9BF4D4AFD2F3C3FE8D59678F8448CAFB6B661C2CC2B063FE3FF871CA4505D6EEFC3A540AD6CBD3EEA9A4A38A0A1BC1BFF864E3B
md5: 173C6FAF5D6657036726F9F60B57DFC7 | sha1: F47ABDDB86293639F21DAD384AE4D44ECE2F5A69 | sha256: A1F400A6184AC82F629B717D2553F0BC3EEA33B820EE1D80C0BFA347B3624935 | sha512: 34ECF0D821362D0095B5C23E34D37A003393EAC2A81C559FDAD689953D69DA2387BEBCE49F3E6009268DBCE0AD365DEFB90EDB170D231FA75E4C0AD1A9E9E4FB
md5: 2A2C172CBCDF376AF9DDB917BAEF924F | sha1: 6B9EC3FECE6EDF5C44942804681736AB6B40410F | sha256: 163595080382E8E8E0A05013FFF9CC86FCCBB3C0C614182F2FB51AC9A39A361A | sha512: E07F132CC7A4E4DA1B5AAC600AEFDCE2C8CCD163833C68586F136C7B25B4750725F4A285F72171A69DE1303535924DAFC70B341F43F7A52BBD7502EBD7B0D610
md5: AF9E9F70336FC0CDA894F962F41421EC | sha1: 460FE2981D8621FD08C8AA2E02C3277701B5374A | sha256: 3796C69110F5A3D031EBAAD948A3868E93A2D9F89CCC49800367C958236F69E4 | sha512: 157AA07FAE6E64B727D68D51E4E664633975335A107B5EC9A8FA7A8C04CEC65779279ED70714212CC1D4446A13DE8A9EFA61FDF4152C5B760BD8BA23A6E4CBE2
md5: 70A6478708B0F1B2911D9CCE0998CD6F | sha1: ADA21A86D70344AF43060A1367E96EFDF06F7CA3 | sha256: D9DB60F3BBB2D9E8E48E94E99273F04E9D9E6315354736DA7A8BA81155AF4E6A | sha512: A75B99DCDD1193C091FA21C9169BABF578CCE5F624044682186B686C54C12BF9C6EAD321D10D6CDA771B1D4A31750AFD63CA8FB22D700F59C5AC832B5601C08F
md5: CCB85DC279181FF1795D31589FA4FCF2 | sha1: E2135C3B40C2E0270EB9B15E149025B98785B781 | sha256: D1A84510B6E734139AD85A5FFB5A99717E3FB425EA0804D9BBC0C59D94ECE9FB | sha512: 448345F9F13CAC1A3F19E89F1FDCE708427F84D34828F84BA115EFB429D605453F3370FF0F38441F21D14D7301F082EDBE315D0FA204427222EF2F8989347A50
md5: 0E594691E54E53F9A837BB9FC8B52824 | sha1: 9B44E0C5205D8D654EB0613E03698DEC0EC3B3DC | sha256: ABA7187F22880A26127DB768964634CD719B908346C2AE80BA909B314356E91F | sha512: D5F3F08A11DA3BC28333FA0C5E5545679E94E51377744698F46BD9C565DD80FF16A4D3F05B0D41411398075FBC94E04C5C79E7340AA134783BDF9EE2EF1BEF1C
md5: 8396DF6A1E05F2BED4DA52B10B38841B | sha1: FE29D2AC57695ACC994756EFEC950CCD9B4AC680 | sha256: E0216C14D71C733EB933D82803CFA3DE9A848EBEDADFA48CCF8A545A835387FC | sha512: 6DEB781C2EDA6EE6E7FAD471EFAD2C9E75767B69CE9E307FFE1416751E1C4700559CD1267242C52F2A4A38616A8D9A57B64B969D5C0F8358F272C016195FC5EE
md5: 67BCA61346E7C86AFDE2959E8EF3DDDC | sha1: C36F160C671F20485DEE1A6455B3E606A96E7322 | sha256: 1EC65A365B6017E3800EEE130928CE2F03F5E10B2B8E4B4B90A06CAAB1B9B4C7 | sha512: EF443A98015A690E765AFD269342302AA9C4B52EFFA23336FA46A53550425DB415C0FF19F96434F22114982030DEAC81294010AA933F84601D82285C24FE79B9
md5: 32D5B91AB8EDD32CFD175BA7F2A85ED6 | sha1: 5728EAFACE7D76826DBA8775BE52680F907C51E3 | sha256: C6D4C8F9C6A0B635F3694A8DB03E85587869280938B180213961A2D954D48A74 | sha512: D9F68665B498D80C10857C6985D28E484F3B64071676A2156AFDAF616D674E68CDF07D64D1B0CA826A8779BC9E7A0BB091E44F8D6FC5DBE801F83DC2B1F543A3
md5: 6585185718690277F4CD711B1CD436DF | sha1: 987A025D29CAEFC3AB31D1DE21310F969829FB9B | sha256: F42532F8B4A84DBD7583866AB63CBFA02144720F8BC8FC97EB3592BC42259952 | sha512: CB80A2A0EEE565EFE64CD5BFFFEC6B86C542BF3315B9BAD056ACFACEB3BAF4362781B2613A3171B826517C0FA9AC8014822D059FF7F62B54564B5D6E9168EC3B
md5: 36CEE5A22F8CFCBE78B20DBDD68DCB99 | sha1: 10109BA799188CF957A74E81B990F7AABD84823C | sha256: C63162012AF13BFCA3E4DCA405EA0B6CAF598DA56769DDE5D7D4AE20749A0621 | sha512: 0C6AFA651D97F17B9CB5EE3B5C26767E6AE6A95496B99E3DCD348670928A012E8686E4F7CD33A63C5FC7E2B1B06F499E6CD4BF155865DD8949037E173CFE4AE2
md5: 5F4B0DDE9AF63B7F183CD7E82C38F22F | sha1: 37B20533A6B722FD590434275AB1A36B3BD3C2B3 | sha256: 9A2D77C52228AAF77AD0FECD44AE88FE2B4878C454B216FCE725D62D62C3807C | sha512: 6FAB2F147847198B29B0BF9ED32AD37CABB1265A28A452442C6A2EF00AA44311E69E2A3878BFB0D0E7CA17BFB2D12C02AEA0391F8FD022DAD47292615E320950
md5: 53EF912B65D4A7A9BF1DFEAFD47B8D9E | sha1: B4B2A8CF4BA4F68B04C0093EB896586BC754C658 | sha256: BA88C8FDC173695B1A4032E5C1C2D31E534D6EB4118C5F6B4BCEDB96C2497BDD | sha512: 56BC540A3711D6054A123FD1D18C7198DE65C30B53479758EC1B2DCEB384D29E6407F0C924B2FB1DDFFC73A849E36CA16F8C9EF66F9D8D32945CB651742CEAA0
md5: 056C8871D57511BEDC4FCE5F13F09454 | sha1: F8C85660DA13CAC8D868EA09677C70A65C37FCE1 | sha256: DA32DFFE387BE59A88CFA4D70BA69C48879719DEB1A515DE5143D82F1CA0E83E | sha512: A4F81B67993133C30E5EBFECC753971CDCD9E1A17D4A350F112C474D3CA42DA59546B2F4A3991A97276F59642B4AC5063D6795D1DE78447A4D2CB55522434875
md5: 4190EA3E974763253DB14B3252EF2FF8 | sha1: E42A5F5BD2EB37C6DD6592F94F2B19C7AA6DA787 | sha256: 6DC537F3020B98222C944E931853BE0DE9B62B5AACB7416113AF4DC58F2D8DF2 | sha512: 58F704C0F51A5B532B16F15E1397B3F21ACA65C53F2151BEF786F2D1B1CC83E3C6149E54D7EDDCD8F15114C8374232F3ED2E5A5F3237B3B678E73E9331D05E9F
md5: 247C3DF05BE6770A9035E5B993F5C211 | sha1: 68EE22BF0483A5587F8BCE14D00BCAA2204977BF | sha256: E0F3CF1FFE9907B968EFC9358836B806C946230F1224153F0DA79EDAC4547BD0 | sha512: 0F795ADEDCD96A6A7D7179CE8E8A4DBBD6B1DDAF88874C87A1174C157DC0BB6FC02E29B183E80A2CAD4E9A080F710CB36B56F088A46716A7115E465570467EEA
md5: 81DE90BE7189CEBF767459BFFC68439C | sha1: B921DF23BAC13465DEB7E421F76F93CA525FBB02 | sha256: 12A26DDB42246C588902813241A5E36CF36286C0DDF4DC2C9AE63EC46683B4C9 | sha512: 472CF5689F998AA7FF89E9CE0E4295343A76DC4BB7FDBD2D17EDA956E9DBC546D4E9486E01C08F09CB6E85C07C5D1D0DD7FC2E7EDB3BDDA5B6841E1209ECEFA7
md5: 7E4C1ABD3B6BE3CD3E5B75F79639C0D8 | sha1: 78EDCEDEDEA39021A45D55B8B71F46C8EE8AA232 | sha256: 7B15CCDC339670B3EBF17AE166D69CBCA868DAA50280DE97D05F5E5B37D23138 | sha512: 3B755FEAEDCC4E03685C7D677D780EDC81C1FC35414376DD26308E60013DFC805E27F41F1ECC8EAA105535D688EFFFEA05B7265434AB1031ADA7FF0E975E96EF
md5: 0038E86F6B0D61731FE3C37F1C80830A | sha1: 4B8FB151FFBAE976AB9894C06359247406BC416B | sha256: 9326C4ACB38963E1D0FD7A2D4983BA80356FB00385E198F44A3930579CB1994C | sha512: 040CB34AEBACC7848037EED1EC4252B71079C84F4FF1803ED970BACD93D0E054F67E22E8BDF2F0343776A1743A4A7D38D80538F1DDBF73D26C321BBB0A455E1B
md5: 5766B6ED46912778E86A28ECD77339F6 | sha1: D988F30684AB8C00F440C7513E97FAAB633CBB88 | sha256: 2D3E0204555C35412CC61822571D8DD40FD2B2EC4B88148EE61FC07C8B7EF5F6 | sha512: 4ABC077FC9F7F3443D5C84C717F1F50BE1CF50DB56E0F8ACC276264BA96782599C4C9C6D2F30158491F94EF9560E0AC556C5A8E75937C03B67F49D424C1E362B
md5: 7DEFA36119EDD02BEF04359B2A3DD0E8 | sha1: F3D6B65E54B419852EB500FF648AAA7D7DC9F43F | sha256: E8254E1C119138AB03B11B0334594855F430CBA49E019D3AE76607D0761B6700 | sha512: F1B30C9F8AAE070C81471FD24478BE2B1B4AF4FF6053E7BAC0F417885E2BEDD6D1B3D3660E97C8C994E62F7240DAEEFDCBA07B2E2E9A00E05C04968C44B7520F
md5: C0F1649DADA541DDBBCAB83DA14E3767 | sha1: 55E9F055C0ED79491748CDF5B977102CB094B8F9 | sha256: 973DCDCCA4A02F2A8C4ED033DA7836264A7067798349AA9C2CF223280165D3B3 | sha512: 4C35CA13279941EFE58A2D4000C5AEE85B2748776C14C505784EBD018657AC4B68C91FEB92D518AC3FD659872945B302B52BE76A6F41B33185D925B0D8F73883
md5: BFA31FEDF593CE84E4EE347182AE9DE8 | sha1: C152C747CF9122A01112BBBCB81639A02BA51A31 | sha256: 3F6F9DEAFF0C67232F9E69B7149890266C6F6EBBD580BC756C5EA94DCF4E19C8 | sha512: 3DAFE619EBE05AACC09AF53C90B36265EE103AB56742E32C329A386E8C0FF27B0E89BB308C55B25BC956ABB08C24037E284E6385569154321FDB53B853138F20
md5: 6474A88BC8AC026C30764CA4A1CED8F1 | sha1: C04CCA13724555B2A939802A16167998C2667414 | sha256: 6FFDCD4E6D643F75A329D367FBFBD4C8B6A63D18C9B8BDD882BA73D14ADA750E | sha512: B2780D4EB7DB884D79524D18D523629182DB5FCF5FE68C16A207EB23C6F08BBCF4BF0720EFA53173041129F7111AA74430FE64732CA4834FF98F82A5FFF75FFC
md5: F32C5997497AA9F1D046E6D0EC0D71C8 | sha1: 8A64BF16D7F2DDE24E322079623C816915261AFF | sha256: A191768387F6EAAFA739B68B782876DA20ECD7743E980161818F24DAE15543E7 | sha512: B81B55CC722F72063F00A8CE9904C37CB4F2FF54653F235A459A3DB2360916409404ECE9D713DF7EFA59F87D09F61BE91B57666A63886364BB4021DABCCDABF4
md5: B1E738B74B8FD877F6413AF8315CBE4D | sha1: 05C428046273D698FDBDB7A78190082B1F6220A9 | sha256: 7F97F7D660ED477F1ADBCFA620D4727252C8F7738C24C81D6E18C01DE10A8727 | sha512: 805AE58AD22ECACCAF4D77CA38528EDFCDC8956E72915FD9142452CD03341EBC8ADA0BE54E9489DE45B96974339860DC1B84C76A755D840C38F652CF018DBD28
md5: 7F591A8B6C52B3CE985E4669A6C0D065 | sha1: 3E3EAF519AAC1C985659F8BABB29562EC7B94DA9 | sha256: 96E23F8A6CE074BDBF9E17A6F8F1359A31103C079B87A749478E2358E35131A0 | sha512: C89A956C20EF95223207B8DB4FBAD0A348CFF1AF320F0F15EE2E474DC1041954DC360C1404B42E3B63DAA1D487CE77535AE12133E28A157045E14E276DA9B420
md5: 1196A80AA00A162495F06472532F71C8 | sha1: 7E092A9EC23ED5A64BBAD7A84B651B6FAE8B90C6 | sha256: BF09CE746BBAB577AF28C0CBD1C51F02F33D1AD81D32C556BEF78A5C92D34A67 | sha512: 7797434A516EA105C95146A12ACD342196CE98311B1DC307AB3A0D9AA765509410DB85255E479B9D3F520A46CC7BF7BEAB7E76376C770313EAFAAB381FAF7D1B
md5: 20331D03BBBD7592135A94CFAF97AD23 | sha1: F0E9BD1636E5E886234BAFFF92BFBBEE532DDAE1 | sha256: E301FEFEF469042C274884F3051C1107F76EA377FAAAEA43386FB2A2E911BFC9 | sha512: 42A29A62BFF2B555332E333692237C9D7BF2BBB72677419898F7E51DB26AD0A96F4BC2D6480EFE547D270D2FC7A686F4FC8A6630D96EDB189CAF0DCC84162397
md5: 3669D021B0EAA2A7C1B27AC2D3E8DEB4 | sha1: 91B0256367D672845B9F867A4C7B490D057DD982 | sha256: 2A0E2440C2B829A6A677AB65B6C7E0BFE1D283E9421DBCF4DB2C2DA444683CDC | sha512: 3D50202F7C15D5762E646C499D49A63B8078EC0F003C2CB45903A4BEAD9CC61F432E2173F8003CF050F36FC7B6A20F2F47BABC77593F79830B9CA7FD69229330
md5: 205DBF036559D0449857B6954A97AB4E | sha1: B7400830A7FB5D930A12EAABDBC802662D8D59F4 | sha256: 3495F971DE0228B637CA07081D240C1843B9F80311E2C45D398699FBA00B24A7 | sha512: D221DD0664D6DA946AE730E9C0C0239EC35D2C4B7119F995858DC2F31206CC6895F48DD80DC9683F1BC4D1EAF5E45494C9772EE3FA8D7DA4E94506DBC784CAE6
md5: 8D3AA58B3491C46E3BF6D59215567C1B | sha1: BB8694961CFF67CC07B7F8C44B923EF47FDF882B | sha256: 026C133A60EB5C51E4EB91F6D3ECEB9901E5F1306DA80DBB158B958A76E36652 | sha512: F9F6B38C5F427DA23DAD6291330660F256E5302031EA7E3F12A34C8F1A813EA3ACD81F229114CDFF16DBC8C26619F1CFF27AC55B50C5E2409031E39F4BE7CF7B
md5: F03A7BB618661BFEC4D797CB666F92EC | sha1: 6EFFA991B17095881CD4C2D0F77D12D56A9BAAC1 | sha256: A621047C68687724B11CA7D8E605A48D44DEA313EA11610C518B82F2DB32D56F | sha512: 6CDEDFA59E3314A91CB17896829797A06C81BFF40A2C89E78BA274F57D7CC67E5BBC1425F681BC3A0C1324E48456EA584157CA91DB10047F8B39F6917D38F13C
md5: BFAC331B71EFCC47440CB502FD2E494F | sha1: FAAAFE2C2EE968723CCE6A97858DBE6163BD86AE | sha256: C8BEA5DEDF865DA7119845DBD59CAE4CD204FBE29701413B833E3E6733157553 | sha512: BB1B34E8CA320F507EC5A422F524E0FFB5DB8695EEE0757B99733D7F4F2FDB0B98FF9A3F8DA15369901AAC666E0C3E523857F9BA54CB46EDC9BDE38D499CA564
md5: 5A6FF6E11201D6439983A06754E6F62B | sha1: 80AF53ABFA76EE1F2A42DCC654390148729964E2 | sha256: 6CACD22A3EF2510D0A8C04ED6890412164F93CE9E32E9083B24042F0C0603A61 | sha512: DEE8D8ACBAEF3B447E6C918870F7DEE9170F318F151E9E905429DA867CC46119DCAFDFB3A93CE8494C0E37C1FB2521EC2506BFCB27DF00CB81A556EFC2CC6F15
md5: 6E79AC877297D5FF4F42E2AFE84C287B | sha1: 4E10215312705BB93DA565E14BFE0A59129101F2 | sha256: 971B10C1B4D0494F0E36AB00D37B50BAEA4238A487B8FB9843B58D0592EBFE99 | sha512: D2DCBC46FA4C7767B62F330CB390C4F00BE7EB1A04A8145C68CE7EBC79F3006E964DEB25B2F7B34A6D9BA9E12A49EFFCA86BDB9523450CCC968FBB5344D360F1
md5: 5F4BCD79CC56AF7C8452082E6973BC71 | sha1: AAA2A62961E45FFAE9D22BABB9F10949E4EBFFD9 | sha256: FCF48437328E936F0C929C3B2969920B9367E4019E40496D19428A394248C64E | sha512: 048FC9B033F88EC2544952B2CCCEA30CB9994E9B3C9C848144E516891EE4505341D3570F8A698EDAA16D956D09226A4FE52C63257DF43E4132EC5E641AE2A83B
md5: 9C662E4F0CA9674FAD1745182E411655 | sha1: 19E2B9F4916D4F55AD9FD3DD321D616012768159 | sha256: 83D558DA32FFCD235AEE35D9D90380050A49624FFBAAB5EBF8695DCF847A2523 | sha512: 1CA3CE49C06333D7EB38E7F2B802D57F59328867BE638BCE1ED886A5FAB26C6DF15C0F9B9FB585F0D8E794BB71A0D8E973431CD5FC5D56CEB4196C8D08204F59
md5: 499160FBCF2C279F6843B52D254F5707 | sha1: 75F23C863BD87E1696E43DC6CEF711AFDF810988 | sha256: C952B4E928EEB7A7D1EDBDB45C104CCF9F35DB3624243C6D250851102760B6FE | sha512: 955BB8B42407CDF8A331BB0CD91CD85A1C934F9E6B63B194A6FB6BE9F1BD2BF0A09EDD86CA8B264154C726A46EF7DF9EF9579C7D3107C49015297B1A4E79611A
md5: 168DE45C52088CA91D90591E8225E92E | sha1: 744D5ACF3A9118AA91CF97CFD855D9A6F27B1D5E | sha256: 0165AD72A8CA27F593B627B4EED423AD28E3CB00B3FE73A69E02685BF3BDFF52 | sha512: 5E8ED14EC61CA78755AE5912951BF39C8C683E6C9CD82029DAFE4F0FB1070F22DC2CE1390D53D305051F6768B1327A5ACBE2E8BEFF7BDD97CA01844AFB30979D
md5: 3266B91AA6A88DC2CA3A0163A32F4CBF | sha1: A0B772B6EA322DACBEB56B7ED16E34834DB47516 | sha256: FD0E76A90EF18F144FAD126D87A2AC02A5E3519C562DEA08A9AEA74565A1A35B | sha512: F0DBB9B2D4814B026AF400D762D209D6E280D390FB2C709872E8442505D22B909B27914C57D0B066FEE3BFBC12641F5C3241D71D2D9DF8FB226A4A04C89B1624
md5: 31493B8F5639DC827296A3A88893C22F | sha1: 781B97D1C5D3BA35F1B2761418A4EF647D20462F | sha256: 62067CE6773A513A75F4030B7866B4240416D9599C22ACB6C99D7E154AFE7164 | sha512: 50420A7119BE95BAF91B05AB3652840E74CBD63C3E952BF57ED83A1D800D940368E6F45641B2316591AFA49F8FA32520F95F13C1278D68ECB7F19EC6D100840C
md5: 3C8E87DEF734BA12416FB606EA6D13B7 | sha1: 567BCE42D4F34CF2BF28D91BF0A4CEA0A454A446 | sha256: FEE5F3E25F54FF9BD58046B461D3993F3CA36FC10BF596EF883DFC2D0E2DFAAD | sha512: 8A086A4856BA5D5CF1022B0B8520E6E8160EEE2AFD988C889E307E31D80B3E87DFFB5A74A665A8DE668BFF4AAAC7E5258CD400E26544279C9B834D6ED18E114F
md5: 9B7D4B9B2AF35414EF9E63BB47C06D78 | sha1: 509D121E1994FBF6902C31C5178278372B2BA491 | sha256: 67AE2335F127B66D0F906C4F04072177C3FA825B6EC0432867CCBE40FDAFF49D | sha512: 3B8636D7EFB92AEC38F6C8E181BDD2A6531EDF2189AE9243532A165E9A99A3FF927CA689C90EA1ABB19F3062641740B1418DBBFC80D4303140B950B8866695A6
md5: FD2EBDA8B9598EF267F56BC3E837F0BF | sha1: A5D2A106366172613F8AE9AD3C67890201487B53 | sha256: F7F8924153734BE20B7D3427DB55D118FB59FD28B75F07E316D791780B88B0E7 | sha512: 009096847C1E8ABEE76028408B8C8484619C4EFAE221CE42BA92F39D62344B260FE83AB6B8E30BFB3F92292C85BCA758C72F7E9D5C0BD976583806CC8DB07AF2
md5: F1C31E19C56E342EF0CFF0E2C009BC6A | sha1: CB559A1FA1FDEE764670297204E53106B34BF049 | sha256: 055304FBEC73710090C92674A6BD611A23E19D6053C5AAB065EAE61236D8C5F0 | sha512: 57ACE7AF675E6744B7728AA7999A097AB6239B988E609F462B17851B9AEAC194E8550E64AADC409F43295DC7B61341C321A1254F93C32C0FC5FC971E930AFDBD
md5: FF1F89FBD8392D12CE64948FDBC3C5F4 | sha1: 7A98E93AC7ED1B9C9805499F4D9C2E9176774B57 | sha256: D7C5626022A5E46E3A1D9C9D2DE9BB7B62498D7CDF09FBB736C3AF381DC0DB89 | sha512: 642B2CDBF81F2BD23558F44CB193BFBD12ABF4A98658A0B389D2B3371E2233B54A7CE2FA830A60EB981456DF2A7123A11BBABE14904E53D06B2AE16C32B12EC7
md5: 9F2BFB8E12DE97CBAE379D355866F254 | sha1: 67E647B7CAD0539D73EEF21DDC975B9359B6B962 | sha256: 5F1EE667F19971DC7C8EF6424093F91232C4D0E9B0A1173A93B6B06B47B8AE96 | sha512: 2976567CB558368654DF2D3001EBA1544BA0DC0561F6ED195D60C8C44B38805D0668B12166ED00B2383934FC87BA262B242FC3E430373CDBEF325D1099C66B46
md5: C5E0D20FA85E51BD746B381C8A005B53 | sha1: 65396151B7A0FA10A8CB33F25E70DD67C4A4A71C | sha256: 005C29537170E1BC869663DB929733A906C3EEF85E2BF6FDDE547D5AB751D7A4 | sha512: 0C90D98D533DC672CFDEE9BA2B4F4C445BE761F7141C8810CA0A2F247DC7591D8EBE279C9995CE45FC88325689CA3D64B4E2EB8FF4F21A2505ACEBACE1C8BA38
md5: CEAC990F678A7727EAB60A94BF268A31 | sha1: 886809090298D17BB86CA21BA4EB93883ABBB6AC | sha256: D0BC351C739112A20DCF085B20C0DFAD9650E57DFB19A46F2170877CFD9332CD | sha512: 5598AD70E1068433E1E1F993AF4001AE265F4F61EFF62D8C671D329E65B893FFA639C9D4A36AC6A200D0DDC83C1847EE808EDE0701F212F60D5C44F6572FB021
md5: 5330CB91FC6968AA310D920E65846D95 | sha1: 83F536F78682017BD44BB33ADAD40D418988D563 | sha256: 7DAA829F992DDFAC02209E721E00722A75FC3CF11BA6E1EA86B3392D683FE208 | sha512: 98B31B96939B0A26A922337F6E29C8E15693A2E5C73D21C334E1AFB45DB52FEF5D035749F30B0AB89F88C7B9A472D17BE1E88FF9CC89D4E7F2415050C8FC8E38
md5: 902622EB98955A412CFE79CE961F42F1 | sha1: AA557F881D79B3613464CEEA52C2FBEA730F1536 | sha256: FD2AF341697A4F908C6A499328CDCF8C15B44DE356A75E38B82B48D011AF30E5 | sha512: F16D1DDA24ADE1D601BA854C51B84E02D3303F22BBC3FAD239B63F1132433F03122837425809568DB18A6DCCC60679C5EFF5E9AFB363B0971567B999BEFA0C56
md5: 9E4454490E2DACDE55D4D352DFAF2CCD | sha1: 17AC623E3F9A8C72828CF6B383C7D4DFE71C126D | sha256: 1567A89D37CB993B0AB6371CEC52BA01327B2C9F5213DC314D8DA05BD7BDE299 | sha512: 59A308C6958EB82D139E794C535FB3F2E865EA1FE705DD685F35AC6C835BC8D4451EC91D6158386C696CF69574D9890FD9486CACCE1973E6D6A3458A72F590F3
md5: E214040284777B6BBCC96AA9E020090E | sha1: FF4B84D32A73C750D2443A654914E086DD4C600C | sha256: 3E428D50A8BFEDC1EDCC735EC45CF73B71D38C82472DC5C6639986AD8ABB7C4C | sha512: E6FC2B46CDB477A482769557E6EDA0C196A982C6B09CFD3C7EF73F32441D696292BFBA4499EB659761795B9DF1845570C0B3CB927ADF39C251AEA1A849D17761
md5: 8DED7334298450DB103DC60C58C1274A | sha1: 0D25589F6F7D9DA9FBF2207D1AD33992B155D31B | sha256: A256C564793F7D6BEFCFB78B6CE89D552B693398BC1983C7422D459DAFE8520B | sha512: 24C66540F1A4872C095563449CFAA26B9473E3649E1562D6113A87495850ED7E536C06E2699707DCA49FF9E2AC6F1F4DADB0A173962E30A0EF53A994CAB8C2CB
md5: 5AF21A2269C3177EABFC9417016D2BF8 | sha1: 287B9010E2B0BFCB364DFDEC539563FB441CBA8E | sha256: CE8AA7E16F6233DB3D8FBAD7656C9B82E0EDB5C3473123F14E0E2F2DBEADD433 | sha512: 37B4FF4E5A8BAF5509FBE3402AFBB14F7BD0FF1DC3765B4B5DC401BA596C12928887A7CAF530D262348EA4FF5C7B4B12096DD84376E55BDDDF353E9081654061
md5: 31ACF1273B53E8A2E083D3467D7DE141 | sha1: 1EDAF89A63D1994EC4B22353DB3D9DDBC1ED7235 | sha256: B33A054D8D5EE04E2B0956EE73F1A70554C2CB08230AEDA26EBF66CA009C6B21 | sha512: CF3AB2B88A80F762E77A3D547A6900BAA1E194D966BE3E8503E26A1D46D8CA2DDD261069B726ADA28ACBC4A99493FD36AEE185660D2E109613BABA88B51BCD25
md5: 664BF450FF57D4FA573F29F4AF3D699E | sha1: 14722DF1E5BE507B12F9932C6F6D1E09EFE1CAE4 | sha256: 572F1EE0150A05EE708C6188F4AAECDA916482D495640D64EDB72BF8A5201C50 | sha512: 0019B0E70058A474E711588F47CC25FA68D0AB820BE69BA417A92AD91DFA06E4A344E7921EF34023D223AA264FB9881BEA6875AD6062332EF8B80C0CE0A25658
md5: F962544BEB27096B5D112F1740D39A8B | sha1: D1EDA602E448B2B2E2673B5C32C3E84A02F01424 | sha256: 6F8B24483F19ECBF0D635922CE64445A6F0FDDF1955D40235FB59D6318DAAB59 | sha512: 4FAB76A93527AAF90D20144F3B1B32F16A7026AD8C2E7E6C907BEEDE1A90D77E1D8D56FAA3A59AA013CB65E0BAF8ABF41E19512A3195B742FF4B6D0845F7582F
md5: 0410A4266AF56B7D0A9F793C78920418 | sha1: 571E339F657F7B3E5454276E9226D2876E67E0A8 | sha256: E9A7366DC9521C316CD04C3F01D6A2C102E38E8DF6124F9AFB820F02C598F740 | sha512: 591B0A687B70DE25D74895E6812C5ED977E7BC8E04FC77A02801F30CF0F6A1AEA84CF9B90431C3E6CD3862FA9B3CDDD58CA8C25C99D2326E824EFBE799647DE9
md5: FDF59DFA582A704110637AE699D094EE | sha1: DDBDFE896B6BB5F78FCF3F402CDAAF0143EC7C6B | sha256: 74012C799C1E69AC70171CF27D99910AFA50C8B78E212734C94DBC9DD64D171B | sha512: 6FE92850E862392174DED72A54145F055BA5FA987A640E85A1EA4A6BADA57796307C24E1518F7587AAE4B98D7A11EF421603EDDD5DA0049914BC75270C36B5C0
md5: 43DE36B7C25F8060E5892137AB7D31E4 | sha1: 469B10A88366D668F1C08D4E85C61EC9F32AB285 | sha256: A8DC768DEC29D475462FED58DAADA2DE4C055FE0EFF2E3287829710659164BAF | sha512: 17228285E4B2C11CDCEFC5C25B73F55147544FA3FCC2EFF5B3117C311B178DBDB8376B0191733A38E25D7005DBEECD40C4C41429B66326E41E6ABEC828CB325B
md5: 0E8A9184B4505076F317D46DDB68D564 | sha1: 1AF4146EB1A3C8A83F2650B924DE8BD504F6F691 | sha256: E2DE718622165EB40CF6EA321A0E034C6A0E00B99847FB0054FFDCFDC119C690 | sha512: 6C98E9F8B008177ED3FFDD2F51FCAEECB17F3166DC5AAFADDBF1AA00A02A4ABE50090761FB4C718C1FD4AF8A36C4F892768323A7D4AC0B4E0662B22AD4C0DDF0
md5: 76B8D417C2F6416FA81EACC45977CEA2 | sha1: 7B249C6390DFC90EF33F9A697174E363080091EF | sha256: 5EAA2E82A26B0B302280D08F54DC9DA25165DD0E286BE52440A271285D63F695 | sha512: 3B510CDC45C94BE383C91687C2CB01A501BA34E3FBB66346214FC576D6F0E63C77D1D09C6419FC907F5B083387A7046C0670377AD2E00C3EC2E731275739F9C7
md5: 2254BF0DAD0EB0AE676602963189A80A | sha1: CB8E3225873854C2A9C3AF1BA75C802E5309FE46 | sha256: F7B30674B4176E7159E6EC4FFEE55B56B3CB97DAB0CD7F3F2B9EBDED1E613147 | sha512: 8759E69C7F739882E464C6524DC96108804FD9C32673CC0AF4F3004B6A0CE1D1B1D6A84F31C33FA43B90A97CE92386C3001127F5FB17ADD2414700905BE8220E
md5: 7FBDB827E999AC4CB52D0586817A6F33 | sha1: 1671297016EF1AB1274512022F311E3621C46B04 | sha256: F19AD5D5A5EC1BA1E673A1844E23E5FD3E7982C7E48D8D711FF6AA25E4805C92 | sha512: 3CFB94E627C62833307004B36BA34F636E930F272C638DAA44B21BDE06518D380AB288CEDF9976D05ECC55C129CB44D8F0BD23B65AE36D92108E46A5C3156CFB
md5: 0ADF6F32F4D14F9B0BE9AA94F7EFB279 | sha1: 68E1AF02CDDD57B5581708984C2B4A35074982A3 | sha256: 8BE4A2270F8B2BEA40F33F79869FDCCA34E07BB764E63B81DED49D90D2B720DD | sha512: F81AC2895048333AC50E550D2B03E90003865F18058CE4A1DFBA9455A5BDA2485A2D31B0FDC77F6CBDFB1BB2E32D9F8AB81B3201D96D56E060E4A440719502D6
md5: 6815034209687816D8CF401877EC8133 | sha1: 1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10 | sha256: 7F912B28A07C226E0BE3ACFB2F57F050538ABA0100FA1F0BF2C39F1A1F1DA814 | sha512: 3398094CE429AB5DCDECF2AD04803230669BB4ACCAEF7083992E9B87AFAC55841BA8DEF2A5168358BD17E60799E55D076B0E5CA44C86B9E6C91150D3DC37C721
md5: 437900E0ADCE6CC2B4FE4C27D187D521 | sha1: 4D0AD02300E9F98512B09A719E81E7A348D5EA48 | sha256: EF7758C9D86B37DEFA28A518ED718DF297A4871619643BAC8AACB187DD1B1C84 | sha512: B6981C4CFC292613FB6060CA2367A9A8C9C34C8622C7B1A7F5C7C048E57C6F94482D5D0CAD2FA3C06ED2DDE89476384AAD660266FA299F25322586F0C98980F7
md5: 1AB71E2D65F005D1A87F568971ED10E2 | sha1: 60360C48E942BCCCBAB770126AD6099D1D35ABE5 | sha256: 4768FE60B89E779E32DA3F38911E342D90C0AA0667C1B9B6B40493242755367C | sha512: A79CAA98ECC44EA2EE6AFFDD37D6DD8E8BB9D84EE2A40642A310E889E29BB1FC445237B9B6A9ADE93B1660C1FAAD71D969B39CA5C116DD9F55C86962481BC42F
md5: 6303A846CF135E8B164A86F569A6FC62 | sha1: B35F91F76B36788364C1DA65BAAB63F0758CEF71 | sha256: 01B800343B48CBA6A0E9D905191E8A8F0B968CB505BC465D458E943889E7730D | sha512: F190D4A6EE5A1BFB269FF11F920657EB792257BE6D756701E4B40B5BFEEBE07D0A5FAD7CC0A9F53EBB4EFF11D8A6985F41605C8D247F0D5BD3AD8EA38955E492
md5: A014F14756D22AE4FF7371F930BC51C3 | sha1: 1B7F481FE2EFF73C1EE6DBCAD140E98B529492CC | sha256: 6F6D6757721703C62B5255E0D290A1B805BC0C5D72CD58F72FD3E4D618BE1F19 | sha512: 3FE46434BAF28CA5DB4BCCD7893CFE6E86AA6633C17A710F62830317FB99F6EBC7D1284D7A4000085086F08CC7C6D800E6AB3F88B98CCE65C9C8A6FE8AB3183D
md5: CF294D31DEA73B72B50B5CE4270EFB5A | sha1: 841EEE71C056E8CCA3B18EC475C514236A10D3E7 | sha256: B88CB66B5B63A65F377670B8E7218F53B9049F44AA7AB748AFB8BE7FD2711C3A | sha512: A60235F2413AC46B8BB9EC1A459799E88120E82190710DA338071031A0A0C97FC6DD5EB3D048790F9C6DE3E563D19731DF3A49F5E62838CCBD9C9D8BD44E000B
md5: 9C8539E41D05472A1E8E06473A12C6DE | sha1: 06140DCBA304C847634E30ABF0D1353597256F08 | sha256: 5C762BC3FC067D53B4EA02B17C4FB5D5702629CDE2C43971AC8D2A071A0BF97C | sha512: 59FD14BE7D6A0B45DF0F2A525C00197534A898DC972997B9565EF21F3D1C22D8697CE90CE0D748402B7DD15EF691A11AC365CDD31B217C777AD504701C008E75
md5: B7667ED512FEC0E4F9C07DE02890A5B3 | sha1: 4592DE615F2FA705C67E03A9B60A00DEE769653D | sha256: 241F11D5582C4024D3C8F42360392F1CFADE541D34EDAE4A8468108DCE843766 | sha512: BEF37B60670813A467E6C69F78FCA4BA890BFC1F446F8DB2B89523FA13F79A7C2A12B231AECF7955DAF63ACE66512320D8C0A81E4A9F6C983976AC04FA7E0230
md5: 2995D96E707A0C85991D6B9C51506004 | sha1: FD1B0C5479C2F08EE8D23952BD0B47A17E1A205D | sha256: F79127BDD9E05E996B7ED711ADDDE9B09138F6EACB8DD2492D346F84E15D71C6 | sha512: 3994350CB44B1DDFEA1DB6E28B88FB9823202FEDFACA61C74F54E5ADB533B456ADA3A4C8833D4A42B4ADF5E078EEBD342B2D54268F859B0325E72B6E499C3E7C
md5: 3AE716FA9FE57469C753E6744B5DAACE | sha1: 20BF8B2588D4AAB2EF790CCA44CD409F4A4DD66E | sha256: 45DC40A65B7971CE2731A2CF60403915CA5BF8812EF71E56AA5603A7B4833BB7 | sha512: 035EEC2A7AFF69B952EC8A2DD70D160C2EA346939727A7282CDF9AECB5F02DF475AEBAE45BF614E0EE59A413D842382F3DBB41EA17B5EF98D7F8BA4CB311415E
md5: A1E53F82E97980504ED6311BE45BC74E | sha1: 3CDF1FE6BF018C069BBACDF9589B0870F2A36D1D | sha256: ABBED182BCAF79EA164349E7A7AC579F8141829EC596750F4FBD07D3B425B5F8 | sha512: B091E954EB4A8013C71C565F0ED4DAAF1B79F49B1D453155CF2BEF419E969E184DE8D41858499CA171A44C54917A449F32623B6BC8F22CEB242B960E076F43C2
md5: D9DE1E864CB95772DA501B5217CE9191 | sha1: 6CF650898A40C63D097F8E1FBFC5B5793D301B19 | sha256: 403F4B4F80CCC8AFB8776E13DC726FB66636CA1EF3509912299AA43C3EC27ECA | sha512: 65F5496CE17681CE6EB3B4EA23ACA291AB15F005A5C34350C0FED2DFB69D331C1E847A12D6AC2B14EE3F2552B798C84ED46CF49878A447C2D26BB4B9EBD4FF36
md5: B38462A7A09BA7CF3AF1B8F660FF0920 | sha1: 4C1B86D02485A620A2B8D89D9CE6AEBFFECF3D74 | sha256: 47C3D1EA28C9825485136EFE92B3EBB6E21A166F228CC07B6FEF7F1448BB5795 | sha512: A0F3651925B08F7064A9BD5985D1036FA4B90B3C46CD034E9106F2CCCCD69895EB1E1C76ABB12311992A05B90B350730AA4BFB596859BF3C884E2AEAC230BD7D
md5: C1085982DBC5D234D60EE47A2075E84B | sha1: F071E986267AC79B6B9ED72F45683F2F84617105 | sha256: 7AF7E805D2844B0F180DF5F3EE6DC0373367CD798ED7245208D9D0EC9E884A3F | sha512: DD3E22E4437E17B010B4747402B0EE7DE0B4880B781430A0F5C06DBA4B98F8C746BE2383C2C8886D1A4CEFA77EBDDD173C36E7B839B0F17BDD904F6E4E4E1117
md5: 4F22348E4599939D55B84E1A7C14D973 | sha1: F5BD7B5D2AA0A58FE815E58B2D4EF52FCF7ADE20 | sha256: AED3CE4E318FE15CA2821A6E5D84B0151A4BDBDD75806150C914629C46FFFF6F | sha512: EA4EC887AF21E68C9BE7ADFBDFD282A877F4E2A60A459A50AF41E928F599D1604211FC1604DD0B0F4920EEF36DAC80B211293297029A77F56160774297F9DD29
md5: 761518F9A008134DEBD79D3B8B76090A | sha1: A6E53951D7D0491ED1D98186A393C4A6D50C394A | sha256: 3FF6EEC72CABBE02BD30E3439A5DEC4B1ED83EBB1DEC340ACB03989F6A2F5C62 | sha512: 102A8AFFCEC2FA0BA8B8F335E8D04E768CAD35DD60AFC015713C48B91682049AFE392235CA449229B1E5AC94F2D03DD6A0E2C449374DD8F4464C53170D6A7447
md5: 261735279F50A0153412E2B79CD5A08B | sha1: 439F0039F345078B06B768B79A7744942472D9A7 | sha256: A24058420F83F9929A67EDC59BB26924962DFEBC5DB7A87F0BB805E90A5C7FC3 | sha512: 106A1E96AB26B242A959A549A0005FB7851210BB231A4B0B6137EA5381CC0FFE14EB37A08DFE17871561E336CD3E2E78A99ED5DE73B275CD3C8911B5DA194AE7
md5: 09CA7F2A46D14C676FB11445182E1F4B | sha1: B93315C98935B11DD7B6A1036ABB50F4D348717B | sha256: 994AAAEDE49682F81509E46FF259D68E76778CE7A1B1A45D0CC5505DFCDB1602 | sha512: C23888696F9F556B979C1C39D53E2FB5ECE56AE70B157A1319B3E4C0485BE4BDA5AEF8F4DEB0DDB1BC50058B0937880C04D7A6F8B806354F14E8952F0EE5BA64
md5: B1234AB0113EB9DFA52CBD1804B02AC1 | sha1: 277746B00412EE65CE217AA78F83B2DA34878AE0 | sha256: 83C19C89849B4E950704209A561C494D9E0E97E79A7115E8ABEC7740887F40FB | sha512: 28E1339F3AE788458A1FA4D7499AC20F847FE84EA4993B5B2E9306639706B6E3A6BF191CB4106DBFB77B51294EA3D4649E42BF02B01677E474D02E031BFC4E10
md5: EA4764194CA1C4F21901778BA1660632 | sha1: C37193E37C8FBA7C279C572471CF8EB3E76908C8 | sha256: 011E98B31370A52A2B46B9B19DE8F31B9C6D4CA9A50DDC688D95980D347A1FE2 | sha512: 4B2F4B0F885E73599976798EB7019C3368E264C3E76F3D60E6F0BA8DFDA08B6313E44C2D41C940753DDC9A7C7919E89C7588309C2D583624A34DA59090480A82
md5: 6D238BF18A8159E4E32A1049CC100E1B | sha1: 9C1F1ECF2BDCA780BF580A4A3C5568DC3FE0990E | sha256: 2B9139417B2C63415A67C94C493BB7D2785F4F64A6BB2353601EF68FA1005DBE | sha512: D9D0E1DEC85166C2DB0DEA517E6C189F09C20C80A8BD12FBAC1FFC16B0A441DB267E1AD7B6A827B62B50ED467702F3A894D217EF2EABA73B4F87CDB346C0B361
md5: 2FB22DCA71C706A6945C84A729242A1F | sha1: 2927D7F3104896A8973A5E3328138D410F942BAE | sha256: CD34D4EF98A4BF80A8F267E1D65BC675EE6EA5E86D07E72E14EF4AE1E1F1180A | sha512: 8113E94AEB3F0EFB72D578C3DB48EF3F6A6DF5C915E77BCC79E5D6D5B6EB775CD69CF1711D0E9D8B87125D1F7471FAF983D232001B682B08B9950CBCF9A53722
md5: C40D7D64AE80EAB4E087B5CB1AC5FD7E | sha1: 0132D3980CC617B2E5AA21714F5CF90031B7DF05 | sha256: 9AD54F71BDEFCAE67CFC2ADF089271A25ABFE8C68A5A988DBDCCD6ED03BA2F8E | sha512: D6DD161F413474A3A6BF22EEE629FE2A7FA931CBF712056B04DE1BBFA766276CA073CE97C5B39E43058A01D7295E9215C1016C0A5F6BE4F0E0B5CCA14BFEC3AB
md5: B9A43B0B1E5E68FAF7F8B3C2E11E581E | sha1: 96CAAADD7DA6279FEB25FAAD51FB2235517094FB | sha256: B186AF51C14F492ECE571371F37DF75FA7A7626B254EB32E5888E451DA75D545 | sha512: F6BF35D950A87370BABD99C1CD477F9722DD9A0470147CF9991511B6DD2D56841C1CCC99907F6D0078DD9BF36B7CD45FEC7A82CECB72758A9061BE8D041B35E4
md5: 84EAB205850AAE1A607E36F5A2ECBAB6 | sha1: 59D76E21B5FFFED94A52B472AE030EBDFA741DE4 | sha256: B318348ECA213865766F0B36476C3CA11757C4C2C05F477D5E90FFFB162DBA84 | sha512: 541C940A7FC83D32463F12A478B799E71BDE4018821300A9C6AE311DD84E1CAB5FC0FB6628E9923398077817057722AA8BC0E382CE408ADA4B63D9A3522F652B
md5: 614E9B3A83BCC681796B9AA22F81B059 | sha1: 167617197B03F5450C57AFB6795FFD07ABC81279 | sha256: F874118F7FD24CAAC667B2A138E2FE4FF26EAE8CCCC780BBE5EB42A262EF36C0 | sha512: 3845A32344095F966CEE12565DD68C3D8AEEE0FDACCBB860186F882B9E9D710F7D4B2254D628628425697AAE37981672E54890652CFBC4E6AF6FE08B41423D34
md5: F170976A8A06CA78FF9B5DA2BCAB1A6E | sha1: 04FBD9B34DA7FD8032C0398E550F143530042B02 | sha256: 386CA647E9BA5ED8EEC54A98EB51052FD789DE4671C215EA4AC2DF61EEFC57D8 | sha512: 300EA5A9CA77DB691902B7811EC735203C81F037D96623DAEA93FFF3B6E747A4D5D8FFB4BED263AC3271FEBDB142308CA1BC8F015D550717018876E569EBE9F4
md5: C86D7E5D9B7F78459AC38ED699F9C5F8 | sha1: 8A0AACBAC1C20F1E765208B855D831D7026F5670 | sha256: 4AF376906B855082567C5E758B9C753DB362372042604FE3297A2FC9D0593B6C | sha512: E974A8B94FAF96F7938C722E77EA5153657F9F5069D578D9EAFD0E7EFE0B62B4E01D4748BFD22A5A769328FF4001A543AB6CC864C7701BAD74B4BDC8C8BD45DF
md5: 5CBB43B5BA65163774536B31C642AC86 | sha1: B6B3434FF75A2D5217846152A4E7F431870E74C7 | sha256: E562D40B45A3304601A8A77E14A794A07BBCDDA41867E515693C408D22D0D2FF | sha512: D7ED8B510B3131FEF4A10C036184C87B908F1D3FB375077E75BE62A0B4CE0BC44710BEE806AD3E1A11169FD80A62F6BFBFDF62B3A5B13FD92FA8F31AFA6FF5E5
md5: C836E55CECB0E43D7D0B2AFEF0DF2829 | sha1: F0792464D131FCB330D5BC1904F4178C885D1CF2 | sha256: C0E890948840B5B26B87CA47D69393DC6E1A06E9EBE80045F07C99B32452294A | sha512: D1DA77581AF5405E1045DBF2181FC0F23944C3DE03363E4849CAF4B57D7710262BCBA6FEC5C1FD4EC3B838CF19F33F5F4F243847B6A9D830D5E60AA6BAA9E4D6
md5: 5857B909E4DC0F83A6F6176514A86427 | sha1: 3C41FA32D3163528FFBF8A8449023B2B7E4655BE | sha256: 505AA69C4AF5606A890469D4AB48D5F89E66FE28D0DA4570ED0013C9B4C2CBAF | sha512: 496B99096FED397A5EA71F8BA3A209C6390B1BAE06AD9871B8AE07C33EB3C841B78CB6F847077314B9B22343C1024D01C58752699717A3E904369A2817287916
md5: 19B9AB032A5BB136A35B4530947B41FE | sha1: 332076E04C0BB70117181648B707369E7D532EE4 | sha256: 24FEDC39BF3E8E3E8E4F71AA6C8A782896507261E968875A5B261EA9DAFE5217 | sha512: 2F8AFBCFDAE9234A2BFC6A3776585431D63837BC8F97AF4B20F9B33FEFA897353691706D1D9F4820E50C44595E7296CEC71116258F8252700CF69056C69978FD
md5: D2FA28BF677A89FB306E45E2EBB42944 | sha1: 991433407F7B6FE4261B61D47FA6C786D5CD0C01 | sha256: 15A15A13C542B8539839D82B6B70081EF1EC075A4DB0A6BC33826F0BA804DA58 | sha512: 0302694C2470F11B001392DF90E53A245793D1383B9280395C1399FCF0CCA1B9C9AEF319FDBDFC69272AC6C5992D75289DAEFCE103C3C1B25DB9682CC671C647
md5: 7DF40AF7B1AC9EE17B398F358BB840B1 | sha1: 56940146C047EEB57A135D5C723473951E09BF95 | sha256: 82538B9DA0BAA108B3CAB403EAD71642A99BCC8BDDCBB3382ABED327A049FEF9 | sha512: F1E8C629789B7067AE05FAE052DF5C29C7FD18CCD1A2B15D0F5C8AFEE4AF9434054E67EC0C9B5DA86AD476817F9B4EB99284DC8CAD951FA15D255B1B01D4A838
md5: 710F41889E5574C954FCB7CE5A9C09BF | sha1: E192A3E0370D5C8B96429DC704A89BB6EF483A7E | sha256: B922D3525234F47EC6AADD7086BF661DA7137AF9E1E3E864CF05CB6401544D20 | sha512: CCAF997D4C0BEE3969313BB62831245709939A046F80F695DF6D86ED86560B91C9171C92B351364411184321BD50A1DDF4A5A102FB21A100AE69AEDF60EF3C0C
md5: 0DECED67333D6F5C7040CD1F7A90DBC0 | sha1: C7021DE8F8EB67C05E6582E7CF6B06F03101A7B3 | sha256: 295587413F283D63AA0B436419A74AD7A0F7A93EEAF1BE74ABFF066AEB3FDC1A | sha512: D4ABA725F51299D4D7352A922D553F792C52CEB9D386B36A77FA65A8E065C111133B1BDA55C339CCBE70FCBE3EB17A6E3083E164B8A588EAAF1594C2D9AA14C7
md5: F923522419DB8FC69A1DB72DF538E69C | sha1: 17463A6323056BA4AB8AC6C0FD214A6E7606DDC2 | sha256: BF3A128263CCC8B9213FC438DCFA5576D82A84A6086EEDC5BAC798ABAB058E7A | sha512: 3CD3759920C183542742004DE4B26C772DC789359A7749B8335F260C4AD4C48A9DE20C1E0F0D0E459C875FDCC7A483698B889826250E59ECFFC90FFE0B2843E0
md5: C6EF8CFD297CD3D0A06CD4CA17644C7E | sha1: 838F3580A174007953CFF4AD3BCE08763EF9404C | sha256: 7179203D1D53AF8000DCA6591D4EAACD464DAF21BC8A7F09A0396812F4856224 | sha512: A0104529BBAE1237ECF368DBEBEF6F2CC89F5BF18288E02FCC0D14F70EF967EC231758256AFF5F1A149D7F9953135CFE7B52A65CB96B3785D051D8DBC678D959
md5: 07CDFED9683313B7A62C94BE383F1248 | sha1: EF2F0E14CB337394488A67E37F48C20D3CBA7746 | sha256: 504F5B67950BE1E70C05ECDF1BB6CAD97F520BE4827626EC474702C11A25E5C5 | sha512: A35320BA81A4111C3949049EDB2C97A6AD709C64E3345A645496036B0075885D050341C48FF71E29819155C138644D8A7C8DC983F8E4AC1E3260CC8D082E86CE
md5: 91225C85EA1D104A236F77BB475A227C | sha1: 9517BCD4C51218606EAD676B2EBE3A882A77B5A5 | sha256: 8BCEFD6F2B8985A0C4A9E90B1812EFD2CE1B3DC92DA79C220C784CB33D50198A | sha512: F0B9D3FDC4277F89350C09FB0D7C99974DD9FAE27F5D07FD44A3C277D28B382A6FC07C42BDC8B37B1D1C7B15D91A868B89996B2E43ECAC4E4ED212B4CB86B573
md5: 3D3CE2B8DEC451EC3AA0AD2E15D50A88 | sha1: 87190A5CB70D03F5027D464FFDD09353DE47CE94 | sha256: 5BEC91F50CEFA185890A6F0D2284A2D9B19CD1EE9C5B3C3A6A3E98E10554D736 | sha512: E064E085404768FC82F5ADC126607E2B0ACB98A867B04643D8EC32BBE054F765ADFD3D2C3DE6FAA55617E527FBA718620798CC562834C3C27209092099413ECF
md5: 5F54B68315A4D66A109845F464CE88F8 | sha1: DE65E19A6522A3972F1696DD954E931DF7C7834B | sha256: 441A6C3A51F6EFB527CACFF9275848BFA377EB0D227233C29EDE82C699D2C680 | sha512: 22C0E132F6D0AB30909661B31D9D330ACE18358868BFF54A7FCEC0E914691D35D7D19DD9DB50FC4E472802D4DD15F3924738396B8DC3BB93ADF587EFCE340912
md5: 2E41D71DA1B54C5D51B4A34B5D767828 | sha1: 402168F331A5DF93E7AE7833C502C6F0D15EB991 | sha256: A57F80E550D9E97DDEC272C26B3BB8186A28559428903B7E82A16E1BC4116B7F | sha512: E1648D4AD148932B4F430F8562D7F189CDF8F7E4D135BF5B18D7DB2E2050D7664A4F02893496B63BE13BB479E3954933C8965D0B113F15E7B16A5A73C8F34FBB
md5: 0411F4EB35F6922FFED0B43895B9C612 | sha1: BEBFCC741791B3DFDB61C132E8317994CB34AB35 | sha256: 0ADE1D5202B46571A8BA1F6F8C197F7719BA3C1E0C19C63CA3CB3E747EBF39FD | sha512: E5537C1682004EE519CEFDFE0D9D6EE9C8664A68603CFD3BB807C743277B8C3A2826EB76D089E1FEE81B1008DB78FB6C8907881639329452755730D16D273620
md5: E528637F955FB09C9C219FF24F029C0D | sha1: 242310A8C4AF031AFC3591B7B78DD2DFE02117B5 | sha256: A8ADD0F3001A4CF3408DC07059F4DC8B6C2D81B82B22B86C4EC99B152CD35501 | sha512: A295577B1D02FCC196E49B228F34D20F03B3D311D9F2BF212776C58890F642C00C5B43AABCACEFF0F2EE00F16129B50E71E2BF68FBD302B168EFD74B30BDCB88
md5: 23021DAF8D5C90EB8D3056EB1D59E1E1 | sha1: 5790FEF836D73DC9489E0573B4C53425433E2C67 | sha256: E7A01C09DF32BF78CE64A16DE4165AA5C46E9253B03C05D6EAF8D35AFF144CCD | sha512: 89A535DEAEE0BE39D180FFFC0E9107A50C3936BA65828398F32055282A7466F434FA0497D02FF36E5CF5149C778F6BEAFE6EC384BCE6973B9077FBD387B85D2A
md5: 3C5AF75B6F7E10CD3DE795CAC4B4C912 | sha1: 21F518334BC06F58695A900EAD7D4F86EBB1454D | sha256: DD9656F0E881703C5FAAB0E7AAF95DB288866940180322CFC6B3B665AF3842B8 | sha512: 79530086800CD8A623B62337B2C1A8FD09EB60B656ED38CC6B159791772951765069AE3E3B8BE01D1F083BFE589F27746E7B219D2C8B2BC47BEB1627F62225D2
md5: BE799614E2658468EAB0836545A22649 | sha1: 7F93994E1A9195B0557D5F8533392C706547940B | sha256: 5635C831F6C2CC9D1E61792AC7F079D010809147ADFFDB047270FCF81304D453 | sha512: D14D0588B41554A73A0AE9BA39686744B5D44CB948E1B1B3E4FB24B6994F7E0A164EF8918FF42DE3470503045EAD49D890B50A04AB08FFF10EA4DB23A0FDF9B6
md5: 9E29DB1D5568FDC5412E2D73BB754896 | sha1: 9E73FC8E7649A713686CE6CBCBB2B9053766839B | sha256: D250B679D1196F8B3642481106D807A4020221BCA8BA5DAC36D0E3CCF925DBE9 | sha512: EB7A6D726775E3DE427DB91AE845ADF563D749987558A59CAFEB351314F9A2C506138BB32A48F9C802EB89ABD0041D30A58FBB3E9A9B7783D6D76BDA18363DB0
md5: A2B5277382FAA3EE40471C2BCD1791F0 | sha1: 2F745680592F6526C4804233E038DDF12C2A09A2 | sha256: 4263A0CFD5D13D66A8E707129844B6F5626FBB7FAB3E84A29BB148DC8D35DB26 | sha512: E190E7502D1A858F51AE04BB71C1F90A0B434ADDBF16F15EDC31FAF072EFB3647E832D5681698627CE1DB69BC14A11E0F3231DE12B68D105F85AC6B120B78317
md5: 2D9EA1F59123E606C56A1A0F44F29F1E | sha1: E01A4C58F1EC8C41014795F8772F57CF963D672D | sha256: 2BB9BB7144FB8B9718533FAD120A688CB829BA3E5820CD4BFB9AC8AD583923C6 | sha512: CFFE3947307632C165D2929226502B67BD891A763BE5DCD1BBA7A40FA05BF08747455C59B1EEC99178994A972C0E4A65FE39A094377EAD1FB7FAE85B09CA2721
md5: FC57BF6731AD4989457471FD814569BB | sha1: 471F5CDA843592EF79F22D69F5290B4E0764E182 | sha256: 5DF3BAFAEB1F80FC171EB477BA8C92CF6ADDDE524919333762689A5B1D2D702E | sha512: 05DA5CC6E9785584E71B8B00C5220CA35F78DDC80C52D9EE77BB9987E0BBC573982615CC335EABBFE99F7F8C947E52F84A4DA006E947EE510C6D5CC81D1A2339
md5: 873A80C916AA6ABA1F408361AAA66A64 | sha1: 003A617A2F2B6A5D1316670B2DA3A622EF8DE95E | sha256: 1DBB6F80A54E3C8FEE8BC5360AA069CA7DFC453C1188FCF70E928F4331494C7B | sha512: 1DE172C42800B3A98A48669B2301B3160AA31CE7B361CE567166A61215A51C096D7CA464D3C0D03779DE069C7E720E6924FC3699B7A794780F711BDE3956A3E3
md5: 0EE2736279AD33503A4030834658D133 | sha1: 67F8808574641EF65AED7784FECE02AA64766CAC | sha256: 7F8DC3F416CB34AD0205D684D49194A4D981832D72CD7547F5945B1D07218402 | sha512: 1B6346D685D80121F8898322C20103DD88266834776B7AE7A5D48A662A936EB6A3F3E4A74D4258634B3CDAAB45C6773578E4CCEB96AB45A410FE6445F12CE9D1
md5: 9136F54FC0CEBA2701B761F501BE79B5 | sha1: ECDA7EAC84558E0237F97B83F158AA050C25AAE4 | sha256: BBDD67A54224A511646B41BE377620433601F88DE38D53E008E5067B43F8260A | sha512: 7EDF5C7B728738B3CDCA4DFC63B24EFEC81B33A8FB49672DD385DD902D42DBDF6D554E29DD3233B307AD7FB69D13A8F012E0124597566D0E8F96462FA95DCFE4
md5: FDEB2CD99A6EAA98C76DC79366D8E63C | sha1: 590E838BD73EA0E0E4AA820F4BC5D8E1003B7061 | sha256: A580794F135DD1597BF33BE75C9D25AC5A36886DFAFCF57A835C67EEBB9D0587 | sha512: 11FAE4785116D1812F6186A0BB08210258F14513B5C5AEFAD1947969815552FA9ED9DF18270684F1973A363AE1BC16EB6C0EF04758044C6C7ED2DC84281AD9C3
md5: AB125E3F164146D39CD93587985922F4 | sha1: 652F54089728EA7FF34F1E868FEE211F5EC02571 | sha256: D8C89453700D5F2442738AC68BF5113AE3876997F9FE2A3CC9C8BC6E1C11154C | sha512: 6B1332626BC6CD5620752CB6368DF105799885E24714B9CDA3F2C1F1680EEBBAB9A100414D5563441CAB566B1CF64848E0A0DCFF5261B77903703C26B8F0B7AB
md5: E37F3BCF62FF9BC67971282B2FB940D1 | sha1: 7DC848FB4FEE776EEE5DD70220D7FB59FB3CFE9F | sha256: 3B189BAD82289BD8A51F2FD0B81233767244285C36000FEF397AA9A92D127A8A | sha512: 5FF77CF90B14EC677091F46B77BB1DBE74C7DCC4581E77FA6A01BD74178868B822A1704027C6C0F7846C666C706EA00FCEF6707CA5387D06EF07B3AC0FF1D6F2
md5: 24FE49FFF7507B09AE1497D497FFD5D5 | sha1: FBCD273A64AFEF7ECEC4A6E8C44058C02F45EAB6 | sha256: 1686CB2DD82D5F061E02826F4A51401539B15E1B8B3C6CAAB01B32C1D0A97F31 | sha512: 69FD2A3C0D7CC36DF4E5D56FEE545A7B915A56F1D3B6FD89D13CCA30BF335573BAAACE0939C2B190EF81DBB4049DF4AF830BF777CC8CE17E6D2BF05FBF805C98
md5: D628F61F2228D04DED52686106075253 | sha1: 2FACD982A27990DED502B0CB056889F6DC550791 | sha256: D85A7B68023033DC3C144B4F5A443C52EA080D819BEA2DC18B56532A24604F05 | sha512: 02F0315D338D3FD614D69537C0A1F4E5D7FC893865A13A38B831F43C37D907A864497AB6DCFD6F2FBF796310A5B566742DF5C18F028B61A032E306776CBF07D4
md5: B0F9781664574FC17F25B5C1D33DD30A | sha1: 1AEB965E1A3D5423E7FF40FF2BF5975D2072D480 | sha256: EA99C7D379AC609546A303E180C21ED667938DD0B87871388BA88863BDA748C8 | sha512: BFC2402AAADBF8CBEE1C15CC97F7377DDAF480E6D9EEAE10D5A2707E60708AB40329F5ACA3695B648B05875B9FF0A0BFE37B89A69495C95A99F1FA7336DF73CE
md5: 4618DF207E2F50B26B5CEFC9F45569B9 | sha1: 0F7166118E0ED3CA2FFAD8EB455A676C66074E18 | sha256: 478C79358895D9E740EA3BA322CA9F8A805C00894314817E2C01BB0B1F3A6F83 | sha512: 45C6942B3F8CC1D96D44675636BC7C17D24FC371EC36380717DB01513435EB2D46F79DAC442C06F278024CC83108D703969895859834D9BE3C76D7F889D307B8
md5: 3E572CE24D239A7DDA6E40DA7BF67F68 | sha1: 5888627F1CDF4F853829949B1D802250CAA0ABB1 | sha256: F31616FF82DC8966766D3F44C3943B12D128CD77FCF565D942829E25010AB5E7 | sha512: 87F1DA9FC3E185DE38098589ECE40EA7C52293CC7814EBD4AC0F52F05FE5405135EAA11A07918F193F8E000C8E87CE568FA45C9B62876A99E14900563D5858E5
md5: 3F37AAE17A895EAC539EFB34374E5BAB | sha1: AF5DD2FB6A1660D3150588402B11F88A915DEDFD | sha256: 393E51613CA0EF1F2D2BCDF5A945986B7DE1DEFA29F04432CC591252487282ED | sha512: 874B8E7DA3C5CEA53CB35C6EB172E5FD689478385E706D307B0A9B31232DA9849831019DA037556B0F1ED5F06289634962FEADB7630BDF108E85ED650B1946D8
md5: 30EBF154FAE2172375741BD574CAC576 | sha1: 8A0617C6F18A84D57BC8037179A19FFC256418FA | sha256: 478D453FD6B4CC44EBED6DE7CD9AE91D78A3A0FD97987B7AD6CBC900B3E4E3B1 | sha512: A775E7BAC11CBCAA7D9A7F71C9ADBD541123133F07E3251D618526B7CEC3ABD387ECA2B14D772D9D340388A562F6B8D74EC03ED6067CA98012F857721D238D5F
md5: B70B836D9C7320D89B8EA6307C067341 | sha1: F3A1071E010F2E17D8BC8D9501BFCAD28821FBA0 | sha256: 403E7B617B92C44D1D9FCF0F70CD28568003EF23A99C23C2816C54C586A97C3F | sha512: D6A97AFA5602A1C58EFF39591D2C4AF36ED453F32ABCD8152B216F984CC71DE32E731BFECDF69F0643F240E477CDF83F7F03F0038ACA2497389D95A561CC22B0
md5: 4C87C2A76A498CB9BD1A8412492B7DE3 | sha1: 8690BB6943976345B960EC99CDB376B0CB4A80EB | sha256: B46D1BDF58643BA56702C79143B0D49A6A9ABB45D8221A1712EBEF87D633619B | sha512: 154E360DC331CB5592B54CC0A9AA07B0D938C83450570F952624BEBD11EC0C72CE1E1FAEE0BC895ADC936D3656CEFF77FC6C8FAE79839E16A409B7BBB29374F6
md5: 2A0CB8338E4E5276511AD6520AEFA41C | sha1: D2583D31CC008287B67E1FE594D4820886152BC5 | sha256: 506F6CEAE64813E0A625ECEED15B1124AC63A5E9D50268C541D6EF0C4A7E8F79 | sha512: 81367376158BD2510711BC5806F796F42591B397A4816F532264036A2BA894FA22E86FA66316ADA97BBBF6057A27AAFB75E7F3E62D9175C76540D0679103FCF0
md5: B0B9B24EFA17184BE06B9B6B046C9CB8 | sha1: 909637CD4F8C91223BEDBDBC228E8882227F18F7 | sha256: E574D27D3694A53AB8051064DB77B7916624846D9206D220F542E25B0A96C1CE | sha512: F18F15C94BCFEF3E11829A916E6CD2C6B94DB4E75D158AB0EEAE54887EE995DE56B5E8D2C10A038F3DF834659EAAD80B4E4767F0902B7702A2D39774965D21A3
md5: 13E7CEF00FE03C4597AA88BC8B3A58ED | sha1: 73D9F6CB077BD37508C899672BDD274897CD12F1 | sha256: 234756852F30C9FF0891019765A4D9FFA769ED35E7749A547423ECB8CC1903A8 | sha512: B59C986FB6C6E39DEB40DA959D8FBA8FE56F04784BAA434C9085D59D4F97EE98AD1167A81B442D02A2CC8C6C046E307BD80565DA08CD61EE515079494DE106B6
md5: 1CB871DC1323534833CC7E1787C289AE | sha1: 9B039DF39A3E94B6F01234E2A946EBADAA18B14D | sha256: B2CB1A44279A524F0FAF6DFF931FC2F221F8EB53DC912FF3541C108994F2DCEF | sha512: FAB64A6F54EC14855CB2AEDB4C629C482F0223A4FAD258A759608CA37DA778878CF0E6740DADE7AB759837DBA6EA1F892C7B3F2D3B3CBB9EAAEEA389F845C196
md5: 617B19A85123F748857480BEB9261D20 | sha1: 515D5F14B434D128A5E2CA668EAB62FFE64CE4B1 | sha256: C72BD52BFBDDF2CA141A11BED5D1A5EF46DA503518A6B35F08F4A6F46D667D42 | sha512: 7C82E71A3B64A8300763C7543441C10EFEFE0D6B49B2D7DD8B6B951273A12315ACCBC8E97B2A63B6854481559BA0342836855EF68E7DCA25A58897F09B97C5DB
md5: 8CC4C7DFEB41B6C227488CE52D1A8E74 | sha1: 93702135DB0646B893BABE030BD8DC15549FF0C2 | sha256: 9DC115AC4AADD6A94D87C7A8A3F61803CC25A3D73501D7534867DF6B0D8A0D39 | sha512: E4DA7E3AE5CA31E566EA0475E83D69D998253FB6D689970703A5AD354A2AAD1BB78D49A2C038F0A3C84A188D091696191B04E4A39253DEB3B6CB310B72F02F97
md5: 559C98EB9633C7BA1BC813F8E6E0E9A5 | sha1: 311F52B31611E6DC5FD4C0159BFA452C22980CA7 | sha256: CC62F3B867D50083C2932061F20662C698D2E1A741C4D2F9DF1FD2D435E3EF3C | sha512: E241C16869D1CDBB2C6482A7C5B2AF93DE4BA0CEF8185B8826EEE35ECB174F35F7585C8AE0320F7F4F6B80F3BB5B3EDAE2383760F2F35637F03C3A0E38E0875C
md5: 1D8AAFECA1EA565B257384D3F64864B0 | sha1: 4D923B100142AFA2E0A8B7ACDB3A6DE6FEB91148 | sha256: C2250E9E51B44D8AB8C5B892592766925F6580EE00B95026621D0AFB037C2707 | sha512: 99E4A226E1FABB348E7EF7C6FA56AD0CE4E4CF5D8569CE21881703DCA8D83A1C113FD5F440A4FC9E9B99A04AE8CF4490E17D62FFC09CFAC5A45678A4419EFDBB
md5: BDDD1CF42DD6F7BA5D1D7114CF7D86AF | sha1: 7AE42F96E3348EEC36783C15AD5D9E453D232FAE | sha256: A411A3E3AAC75D3211D8A58810B5FE13329E9D0BE62CC62C61FB1B3351E11FBD | sha512: 1C2B2ECDDD465C9304F88DBF13301403BDDEFA05C061923020625A088A245EA6837E94334013CC8CD6FAEEEB53671F0CD1D3C3349BBB149C84FE31C357632C00
md5: 45FF71114047DBF934C90E17677FA994 | sha1: 526C688E71A7D7410007AD5AA6EA8B83CACE76C5 | sha256: 529943C0CDF24F57E94BF03FAC5F40B94A638625027A02DF79E1E8CB5D9BC696 | sha512: 29684AC5391268EAA276196A6249364F6D23ABFE59BDC304A561CF326CEA6CD662FA04C05E15924FD6D3F9E9D1607992B8DCAD3F817CFE891580F9D9462FE9B7
md5: B52C339601CB264F83DF72D802E98687 | sha1: 8BBB7BADAAA912C1F17775E9ACDCAB389704C772 | sha256: 938DA38561DA54793944E95E94B6E11CF83AACD667487297D428FBCE1C06DC9C | sha512: 287F08AB07827570F9F3EF48A6D7E5C186899A2704FB3DBAF36975F6BE7B29FB6695A69FAB85A6F09BDDEFB60C79052C3A33CF862651F892EB9D773D880B3AF8
md5: 632CC8AD69B76FD9BB5847DE1E1439F7 | sha1: 2E32D50EC33EC6635681485B754F4E58D434A5EE | sha256: 5E61D755616CB10524F5F31E9B70C65A7FFF8E30E25CE711AC8B354D657AB479 | sha512: 9BA5CC82573308E5D995BA05BC660FC1C087EB91D8BD7EFCA6FF838A3C47BD6118D9C92919B2E0DAC11A5A27977318C5C819499DC19CD5D6E57122A0749858C6
md5: 6067ECBAB3C6DDDB6BF7C49C7948CAA8 | sha1: 5F3DA777AF01DBC159BD8D9D97D5DC105918AFC5 | sha256: 22108E32E0B6E42F5F52A4CB17B9B6FA3DFD547ECD9EEF9C67226DBEC54D23E5 | sha512: 9F3E834B8342E0C7AA5CCC993B520D664B03F1F0091066C66067923E1D4991EFA03F63908552538C05F423AA2B696DE7C76993F71A7564F3E87662CB0FC00726
md5: 2F39655CCFC010E32A7240D9BF5D0852 | sha1: 20AEAED12DFB8D71E39687350EB12BC0DE372AF0 | sha256: BFCD867F71C887429DFE008D7EC5D1853D15B3932D4CE8991694293477B5BE37 | sha512: 9769E59279A32F29C2F2C6970C81D3ED76FE3421B819DDFFC8FA98329F1B45300C737FDF71956672F80F69B3A75727D184F8C421E00B84E94163A86CB744A991
md5: D1699287934DA769FC31E07F80762511 | sha1: BFE2384A92B385665689AD5A72F23ABC8C022D82 | sha256: 0DBB92ECD5DFA7FC258BC6DEED4CECF1B37F895457FD06976496926ABDB317BB | sha512: 4FEF3E1535F546FFDDE0683F32A069BEEFFE89096524C7068F1F5CE8377824F82AE530D3990C9DD51BCCAA9E53FDED5613FA1174013325808059276DEE771187
md5: EA9376C17EE0148F0503028AD4501A92 | sha1: 9D5686CBF45E90DF5E11D87E7B90173A1A64B1A0 | sha256: B537313413F80105F143CC144FEEAE2AC93F44747727DE309A71D57D2650034A | sha512: 18D1BB2D5C469644078D75766DBF04ADDF7D0C543F7ED15FF522CEEAEF960900DD8EC68172F5D684B76B0AA6946BB38D641F021EC04C70AD66A6062C10412E0A
md5: D712A5A82A446086443CE00B610D8A5D | sha1: 7ADD96BAA123DB819F2F3D5AA62D6F872CE8FE14 | sha256: 1C7BFF6F16BB618648E699B723AEAFE511515CD6AAD699C25FAAE2A507E22811 | sha512: 225128E58E2F01B5CAADA6FE54B1D32FF6A700542CE22B425649AB22DA2944F796F04D1A2428C542BCAB5348A161CF73F5F9A1E7BBF1F6417C4D507217FE3FD0
md5: 99373AB10858746AAD424F28B48277F5 | sha1: 5042EE630A6C7C2986E8323A14D052C1D83B6F61 | sha256: 9C4AE61E0E8365762EFE3D34C5595029F2C12E0079E6070720E2CEF0882C84E5 | sha512: E96F8FDD6FFB702D344746CE82DE576BBA8636EDE3E39A7DA18CCF8A0178B8346FD31140760B864F1487D7804D931FF1A18DE07A4CAFA0CF79BDB340421FC03F
md5: 8B8C402311D7AB87E588675E736414FD | sha1: EB8C010A35B461402C1C33133F1B61C78BE8425A | sha256: 55A30D92D163CF1807BEA6DC13B4C13E70AEBBB034DC77EAEF4F4394730DCD8E | sha512: D03F450A3A19320DE71145E48CD7C088D9B50D0A683CC9A79D8967DCE085A6F63CBE537FCA1C6208865EB52EAFB10189613C7233047318CAEB2FB2C23C34A269
md5: 0D9A641105098D642567B22101A4DE0B | sha1: 12419C25D1C2EB706A4E4E649EE353CEDA7446A9 | sha256: 7C25A74772E135257235640A0264DDC05235E14F3627896CFE735E9955155F83 | sha512: FD4560CDF01DE237DDF797A33C5DBC220D3FCAE07EDE17D43C39F5562E36E03646676A87E20699D7603FCA6D84F66C8756EB863DD4727B7E1A499619BB88DDE1
md5: D86B0ACA05321569D9383DC7C4E9E934 | sha1: 2EF7D0A222C3A3E564B3C72D5B71A5BE40A7ADEA | sha256: 28B165CDDB82A2507114394AE398995EF8A50C549214F8678AA66054F6927754 | sha512: 5959E1129C983825233A07869DD1B2B1DB32830D2B5F6B7F8D869C39A76A241F88F76D37341FDFBF56F000FC6ACBA19AEB36A7EFB94721494B41B65BF4978651
md5: FA98A0F020248C2BE1DD40C07092F22A | sha1: EF6B3CCFF90BEDDAB5CE6F60B4CC23F75EDFD009 | sha256: CAE99F910874288AFBF810968D13B79D755CD4B2006609EC036EA4934181CBA5 | sha512: 554A25C761102DC41A9E421621E329868D1162AB29F47E59754C8FCFAE0C12BBE8200E1B5975ABF926F1DE0977A5407C43202AC8A2801C69A7F01D95B6A1E959
md5: A964808487E671BB369DBC0E4DC5A947 | sha1: C3848473E42E2F9B4D0A00180EA9ADE654432587 | sha256: 63EAB38EE9F4DCD686C8E6A4F01E1E2A9BB91E52B20AB4DDE0C28061E9261860 | sha512: 7352368B68835ECC9C5943AE2F2BD5CAB775A7FBB018AF7683E74FAD1731A9738AE14EBE0BCCD854A223AB762FCA7EC11411FDAE865C5C6DDD034900FA55CFD0
md5: 27C7D752C11C3F43F28EB31968E73E2B | sha1: 51E466218025126C5E524AFD2086F4AB0BF3660A | sha256: 260C6250EF9B57DCA99B4CECC533F9A34857B5A32B5351202F776163841200AA | sha512: 393D1747911A7F91F4C4F4F363A3782F24E00431478088DA454823A223A4E75E51D9B010FC5D9746E2BF0185BE90071B6CB70C777337D718B39151EEF6B486AA
md5: 37BE4CCE0ED037F8D9A7A3940BD2A2E1 | sha1: 96314EC1A59E4BB53C5B609BF79AD4C998A7A988 | sha256: C81A57D0634C462A6CF49844059E9B170F650CCDF0789519FFD4AE7D28E2718D | sha512: CEDAC24F414CCE5053FDF10779DBD153FCEBAD69B3960F75A5AB1110DA18799C79DC01B30269641022FCD874A331BC2DC7CE1A7D1A60DC90E109DD55B58665DB
md5: 60F59659DB517C2F4DD4C5C583D43097 | sha1: 87ED79D195D8D93AE1155AF08857F751A7ECA245 | sha256: B84B93BE455CC7D14EC0C88CE08DAFAC7B6AAC2E549C969E7126EB48C31F8B1C | sha512: 90BCEA3BAA04146F08013A832633957C6D511D5EB52270575EF9A571153384B5A02C5026361B70940775907B5BC710B2C91627EEACE432744F3B9E5E1ED509D6
md5: 29B0A1554E54611EBBA7911049F26FD3 | sha1: D707745E72D2F39374F2D28AF52AAAB7888B93AB | sha256: 2805A18724A24034AD6ACB315DAC516E479CECC5F3753204052657E560932D5D | sha512: 17558306A611BFAC6982D5650335B05EA407191290B653C028896142EBEE2ABCEB22F7D71926FBBCC3FAB8227C61A5FDA0E770ABFCA021AC7F891C9C7EE42E81
md5: C5CADB1409F25B6A1C7A6DD4C2DF236B | sha1: A994C87352486D433A06943C01329DD721AB343F | sha256: F600ACC811720183C639CEBE5618BAF9C8135B85B9CBDC0758BC9B2DCC6DD7A9 | sha512: 6BD6E482533B9FF8FFF8823F84CDE7191A0FD5575F76891A95E99CD1F5C1122EF92B436745EC9583089445FD5EAC795181759080B1D83CCFA1EED31D9CCE3AF0
md5: AC2F4B435DDF0600D7A866F42F3B40D9 | sha1: 0564FF7F7E6084BD6D02D8E6A4127D1C878B3FA6 | sha256: B56FFB65B842DAAE13F3020B0B04646DB92F89801D2A2F89087D145A996D43F7 | sha512: DC3E9C3B4D732801DCF43CFD6CDD2672F01E03CB99D804A3F4803FDDB9CA9817BCFD2F96FD94B7B33DB0994F5478CE200C048DB5DBB78D3B24E950262EBF4D28
md5: AE023BB0BEEE5189A07C7FD4E0CF3FCA | sha1: 846711D4161A3950FACDEF97037898A71F4EFDA1 | sha256: 56BD0C02C734ABF4D7FD1EF2E8B6A9E4BF5E4BAB4E606CD1023D63B02852FA61 | sha512: 62305027AE8BB5B830630FE54F2CF9E607F9B97FFE28912C2CB15D429252668F17EAF2D7CEECF5601C889D5EA52E0B9100F115173BB11B5D6208171792833C85
md5: C7C93DE0627833900B8379FD181B7351 | sha1: 2CB98F9622F57A0A9E037A378519AA6A271302F6 | sha256: C7E91BD148ED22EE1FF8EBD3E58B199A30AF90AA37499BCF8DA34409672F2ED9 | sha512: 1067BACC4495EACBC27937B54780B97DA62FED1AF66158E2FA492FC82B068D49BB49BC20C3C82C22D8EDD300BD7B097E14AA1E317F1789744E188BCA15D22B4D
md5: F9CA978B29C5B56B502CC37DEA7AA8E1 | sha1: C8914013108C48086E09D893F8FD0507D719300A | sha256: 919B933E167252DE36A9A752DD296C475475F1817A19D9F892D0FFEA3854165D | sha512: EDF2294B19ECB580E9356E1D2B549349FD668DBE66A3CE0D2E3D50C158049E9A93A226078550C1313A39390ABD24128C4A68226E2A14A43D0BB7547B2E111A23
md5: 33B8972FA6B00B8922210CA95E5745D1 | sha1: 609F31B98831327677E89E08BFF7D7322BA0F4A4 | sha256: DA18D61BB6B7D35C56CB4F392FAE0844CCA73F72A043A08994BECCB531FF3B77 | sha512: F85F03E20C8CE40BCF28D883CCD80CED755BF75D515FA66986963F0F4F5AD00BB1823D8C100A75323147B28A4916DD6C598102B18999AEB7B358C196AF4206DA
md5: BB1A520F25BB93ACE4DD0A060FBA677D | sha1: 92BF07CCF32EB9FDF06F446A256E0271C4028BF0 | sha256: 7720EE13405EA8A3C204703A181E67DC6D66835E9DF263C09D04D8B48B41EB26 | sha512: 9288148EC879EBEAFD53C225854EE3BD3768BA5C7B829D6AF1251D20AC301FC27A04BEBB603FE2CDE6949BC5968FDE717E8B747337C1AD872450D26F7C36F515
md5: 809FDBD7422A3E02C89244DC530A3367 | sha1: A6999C04B243B034F8EE7AD0D79F3CE24DF9A9D0 | sha256: C191A43029EDD4EB8EEE003356F1FE79AA45071C25433A7A3589590E9089EED9 | sha512: 5232B7EF2B60A99BE2B027112078A7DEBF58BFA4308F4AE53DD9A96FA7BCCBB0927BEB7148E7A3944173F7820F9F519767539D1FDFEF848B6F1D6668BE11FC15
md5: BFCEB4FACA75681137455CD70F8038B6 | sha1: BFA0E27BE1D56BA48918A9B7CA7090AF7779A10E | sha256: 9A4595DBB128E2D8F373B3AC45478E7131F4D181B50EC821EC8CB88BD46BD5B8 | sha512: 58D7E8D6FA237A6EAC018C0A88D6BF76AD9EE49B6A6790B64E68C33EBF80AFCB4223881AAC6821132B877E7D848BC917EB9490590CDB297F362C9B43143D6713
md5: 2FCB2158FC41D97E2BB71953664B99B9 | sha1: 16EB49AFCA84C9E6160B4E5B36F1EC5C98470C86 | sha256: 984575C44CAB17D46587AF6CC8C22C409B79BEC280FD771E6AF93A0A0C20E5B0 | sha512: 1527A426F8EC9931573468929966E102012B630EC4AA370C196B2B87472BCEE696B00355ADAEB39B4151B986470F7DADA415E3F930D9678B68D3C531C8AC9B52
md5: 51B07204081BDE29A1F84A3B48554186 | sha1: FCA2F72C039937357099CA6E167330E540F8335D | sha256: 5C84DD40D67C0E59906511D2B09DA8E28C454B5979EB5FDE74213F9D4BDBC564 | sha512: 099EC1B84FCF6BF07142AD8CD34307C80F19A64C754ADE505AB55707075A764FBE7BFA4CE2FBAEAA09B3E61EBDB6E3D116608DF0CF77BC076C7B3119DB37A324
md5: 3772A3A7E55178EC90ECB607ABA28511 | sha1: 68C240D1A43DE1678EF13107B9300C544E9D5E4E | sha256: C9E2562F1A1B86ACDB6957CF916ACED9C4F8B71EBB16DFA0050252146205AD37 | sha512: 245F12B4926114EBDB39A54628A1DF2501C4A27ABD531172CC63BC96298EE0F4BE5658AE95FE730C063EADFB1B664C7D201C69C2246CFBA23ED5A4FE7EF3D14E
md5: AB8D293BCD7A13E83565B4AFA8438988 | sha1: 48F227C62B2001C441BCBC5B570911F096DDF421 | sha256: 0E80A2E256D16E487BC847D1857ED7CD088F176254BA2A385D675338B836B0FC | sha512: 443DD75234C043DE736423466C1FC2FF2BD9B6B9FE753521C3C225DE99F5A7D3828A470CF8EA54678A86681949E5DCD1DE1EAB35BF0F348F758FA099A9092F54
md5: 34E21101FAF71A27C6819CC051DEBC9D | sha1: D9DF77B4993418337894FF04C6B813224B9F8543 | sha256: 81B6527AC2D18782AC24AE463C11DD1D70AB1BC89F626B7347A592229B371A1D | sha512: AA339F2489CA9BC9EF7F6121C9586DBD8F5AD2CA5A160A3BCAC74B908570EC2FC0BC24E0EC33AE9DE9D6A6C3557EC2816FE8E89FFCA93E310503F6F83A691F6D
md5: 58A2E5AC0510B9223236B9317C505B58 | sha1: A00954217CA326C54A863D451820263A6D7EE1AF | sha256: 80A229B2917FC3A5D941FF9745A6BE0065028AFDF9509300410D2721C71F1198 | sha512: 18736ECFE0EF0C477BF64F89CA97AF4578DEFC996F0A5BAD33D7A29AF6E09745E4B10D6D543243B9664E40169EE550C996E783C5FFBB0FC767DA7FFC63E13FB6
md5: D74405753F829E75E89BBA5EBC296112 | sha1: 474944856DB781A34796BFCCE18ECD4580275AD1 | sha256: 86F1F12E47F260985B08BB966598123578EB5E48BEF9BB086F04E16E9D53BB32 | sha512: CDC5D49FCF0249C539E45C9917C152F130C8FEE975D97C2F62526F474CB779B2BF273195F4AA7A64F76DD2496528C0D021B56E60AAE2635606F9F55092CB47F4
md5: 5E33930FE2E0867CB1F9FABEDDFBD7B1 | sha1: 4D93C7D7E6315CA2195ED73716996ADE8E17FBB2 | sha256: 349C7FBE9AE2B78C2F90239BDDFCEA5B16A0FAAC1FE83553A816C50C3E9089B1 | sha512: 8F87B5013E0CF3A776BFB1F1A68F316A28AF3CB6C74F0ADF3EAD6D5063525C6668B42C077549F66267130959A9CB986BF5F8E4242FC4EF36C356D6927F587A0F
md5: 3B49BF361F3116DE28176B40845BC199 | sha1: 5627E53D15E56868DC9082EDCAE5A653B96B9AF1 | sha256: BF97F67165231C2A42B95F11D80337B082E2B2BE54351DA44C8A10C06194B369 | sha512: 0FE87438ACD6C14401523987BE617A83DDFD2B42938FC52E0DA5F941F7DC70686CC6436EDD41C4998FD56D5F52D64ACFAB5010B96B1E80C084C4AB9F546202A8
md5: 8BE0CAA60074176FA1E7E63C0AEB6C01 | sha1: 4D4AE0D2664025327F28400D917CC59AFD69F33A | sha256: 30A49D16436E3A05569C99A0C2D21755C2FA323C5B925F9F21C10287CC97D9C9 | sha512: 057F21A7E7496343C06CC497A24E46E59218EAE1838885EEEF7391285CDE243AFE853155F52933959B40F40AA7028A289D15D279833208BBA42BF853D4DF91C6
md5: E04CDB6229D83768285ACB08D870F23A | sha1: A181F5CC93E9273D9169A9954A74D73BC1852980 | sha256: 719AC73BB261E0A13574F5A198126CCF40352264958DEFB555280D005134C704 | sha512: 257FB07C0D86E292FE6FA88E03B29994CB9864C17A535CE7B366A728EAA4B3A803D88A23157CAA457D0B681A2C0D97DD7D9A2754300B73030D9A09C4E9004772
md5: D4C1558516297C9F4989BA8CC5276AAC | sha1: 5D99737E910358F37DFABD1D400AE123C1E04F35 | sha256: 197C7EC45938E874F6324DE0FF2BE3AA9B0F4BC27E031E89F14C5371FA0EF808 | sha512: DCB8F56C33743A1F43305F7DBA34F8DF079C049B759F948DA395DC731515CB32A4F548B2839926350F6ADD1696F12E7683A9AB2AD8EA6528F317AF30E292224E
md5: 665E355CBED5FE5F7BEBC3CB23E68649 | sha1: 1C2CEFAFBA48BA7AAAB746F660DEBD34F2F4B14C | sha256: B5D20736F84F335EF4C918A5BA41C3A0D7189397C71B166CCC6C342427A94ECE | sha512: 5300D39365E84A67010AE4C282D7E05172563119AFB84DC1B0610217683C7D110803AEF02945034A939262F6A7ECF629B52C0E93C1CD63D52CA7A3B3E607BB7D
md5: B676D5E9828D6010339743F236F54EC4 | sha1: 0DFF461BE2E04EBF6DA5F4F2D3EB639CC2E0A8B5 | sha256: 7B58ADC6E23B24CD6615B35E848A002BDA053A26D48F9DDAFACFC8098E97C49C | sha512: CCA0ED47B391B12F44716DB1921314E7DCBF2A9F6B0916C78642B4AA814825C570569B103A7F5E298E9C02DBAE22E7CB905F08F80F94AD6DCB69FE09085CD8A8
md5: 2EEC710DBAACD32BEDFCA09ECA8DE52D | sha1: 2CB934305D3648FF29FDBC7D92485003F8458848 | sha256: 222BD77C5692C2961E8C3638F6511D6F7CBEB9E0977E2D5C3BCA6739A5311F37 | sha512: 03F132E1BAC629A394A093D59550B22D5FD4C4D6F244697173229282741A9CD6669C4256C024467CE94293C74F304560066711C35620AB4750621502AA67B5B1
md5: F39A35095CFD0019D6D4BB8461750BF0 | sha1: AD55AF22E5479A5ADDF01D698138E5149270E3CF | sha256: 2E2D28A0802D8C8C08C0D422F48733AD8BF1DFAE75F5682A4A3DF8898E7E819F | sha512: 25FC9D4254DE0AFAB9AE3E19B8B225E1D875DCACE6CA2C83F768B62C0E2B331CC9DD2988DFF7994B5819FB0DD7A89A49FD19E653FC2E4EE656182E08A969A93D
md5: 2A459C2C395F54352A16DE4AA0E5407F | sha1: 1BA9ECC598E170D779CEB290163AC88E6993935F | sha256: 4D97E8481B9A27042BB903245625735D82FF627C66797DE619303C1E705D0D6A | sha512: 28DCB8B6E306015D2004EC00443652CE986AB8E09FB09EB82193BFB0604268CA63C527FF64B6364F63C3ADBCDAF5FCDF4D1494243BFC8F6BB629BD213073BD7C
md5: 562F67001889CDBC2531947636418EE5 | sha1: B219DD45550762B54DAB46533D489C4755F55E0E | sha256: 9A8BA725F8E953C933285065228A9409036F9137D03016B127CCEA8A19452466 | sha512: FDE868018D24FD72177EDE58952325B52561F9D44AE02A4A2268E445F47ABF3B81B809F443D362DF83BD6667B5988AC2CA15242B9F76A0B5FB5B444FADA1BF26
md5: 28141960A88365DF6A60B0C6FF831B0B | sha1: B56C3D2E270B1C793A2EE17CAC9C98B178258E94 | sha256: F2E74A3EC2DC753C9A48FA9A677775F949EB1E02FC1BB8BF38C39E8D2AB147EB | sha512: CD44E789A6C04E2BC3B07810B57CC83787F06530065FDCE069D89E42557F40770923CC705E73B7699731166F19FD7133FBDD8EDD578D308A4F72CBB29E76939F
md5: 8D00682E84D1D773D2160B63C0380BA6 | sha1: 5E4158533532A27E03D0CCC9A0AF5E89FFFD8637 | sha256: D0D90152136A0ACF340FB345098F2E5C718BB13F3B5A809D7BE4D9948B8574D4 | sha512: 991FC952B452446255963AEB4F11C74E7116E15B666924452F3C0D15517322EF1D925DC44BC1F003E8483B5C0B34AD71D54ECAEE360FD9E942664FDEC4E37E99
md5: 8C9D9F45B85526E491F6555B1566A41C | sha1: 1420EF91F6E0F6954F373F1AC4079064398AB455 | sha256: 694F4C61B6BAE0AEFAC07A1E861C12C03CB6002F30091E4C8B05BB9C8CCF0D3D | sha512: 38890886C641D7E6E76A3D4D984215C680F5DCF12129BA2EBD560644EDA793335B01C637C1F6744C249DAB1FEFD5AEB8D1B212475221C03DF3CA82413F6670C0
md5: 7DA1FEE108A0750F47B70F25FE2CC55A | sha1: 6523838EF4AAB39D0D3C0DF11C28ADA449EDD592 | sha256: 69B48FF8E6F40B84CDDDB95BCDBB34E1184A2E29CB4CCC0FC9F1A2493648EE37 | sha512: 9C0E69C07B2ED6CAA9BB3FFD9EBA6C82A0B763F2DFB06341F6343C54DBC254505CC0350B96B79DC4062D8D28D47C79824E98BB293C8C85203E827164AF862B5A
md5: E06BAE626965FBDB0BAE5437498B5155 | sha1: 49392F58BE6F5C97C5DE59BFC44F9CFCBE1E5DD7 | sha256: 19766A20B62B038ABC3E863F2D6E7B55FABEE4D9CBCAD3EB1D7BD3EBFE8D023A | sha512: 69C6D8D5F8835DA31D36940F0AE793BD00D87E9CB9380C3A7B21FE3E315F192F95B8E63C8F9D0A3737C73673A0AEAC41FC728FB7B236F12453A953066F9E53E7
md5: 2E6378FEAEEE2F745417FC025C7850F9 | sha1: E0FAD5EF75676B2ED7CF155AF6602B867FCED041 | sha256: 99920CE34A01A0C07EFD86D6E134BB401993515D001B7567A4116AD222993A63 | sha512: 5A8C41F32598BCF8C8E315B18AD5F1BBC377D7B638DC05CAA3CC47E988536AA0EBE4718D73AEE39ED5004328BE3A9DE9722D8759E5DFD500038E7139DADF9638
md5: 55D9528D161567A19DBB71244B3AE3CE | sha1: 8A2FB74CF11719708774FC378D8B5BFCC541C986 | sha256: 870EE1141CB61ABFCE44507E39BFDD734F2335E34D89ECFFFB13838195A6B936 | sha512: 5338B067297B8CB157C5389D79D0440A6492841C85794EA15B805B5F71CFED445EFA9099C95E5BDEF8CF3902A6B10F032BFC356B0598DDE4F89FA5B349737907
md5: 1A3DA139180E9FAB380033D8D1FE3995 | sha1: 3CA31DE7F0F0784559E5A73EBD0EFB42C34D18FC | sha256: 63AAF632EE7F3BC852C4D71C742CF1D26F18F784F6C89113E056B2599BA8F514 | sha512: D991298419FB5290D6906A1F9FCCEF56BB3E17506E235C85B4D979EBC49ABD4F4B3123697E675346B57829C3EFDEED6291A155D69348CD55B8B6B2EEC9F804A1
md5: DEFAADD4A92D4D348B0827AB8159D2FE | sha1: F3BD9B4108ACD42ABFB99A3A4760BFFCB84F6C28 | sha256: 3D2551D6458B84566025FDDFE5DAD479CAB5785428EFD6814860D36AD1811C9A | sha512: 1B13C70F05D56871008D5C8752BC93C8FB590D5F89B4E97264F592CDFD772CBBCCE8380D255F8BB305BC25BCDDEA21E422617FA614DFFD3DDCC9A1D4BE6C54A5
md5: CF318475E6A7A56789ABB0F98C37ABE1 | sha1: 33D1EBD7212D747C8723CFB9E4292C99A641B964 | sha256: 0383DC02FDF0B5D4612D8CAAAD13D594CAC1609C8240B73DFD6EA5803F5E17EA | sha512: 5C67456A65FD051147281E14041F5165C1852FD6519DFC8DFCF9C86F20217CDAD9E2D26F815B557B99E2DB3500AF47B2DF8A1225A659FA1069815CD62302458F
md5: F1CC91D25B52C7504DC5BEAB5D0F498C | sha1: 498F0FBBD2712F4F637BDB7370B2302FCC4966F3 | sha256: E3036362506D96C9C00ED6393A2AFCACD9F2E71CD2A35C1D638A61E85D2FB040 | sha512: 4C931389035DF21AE67810D8C8E95CB613D9495E2392B11E34D84F624F90C78C541B14FB0D6FE7F0F89799AAD4B34E91FB6F73978AE38231840F047915E6EB5B
md5: 9E71DFCE86F14BEEB8F3E9F00D0A472E | sha1: BF83A7E98418BDE907DEAE8C0C0F3FB0F6C9DB1A | sha256: 62DCE4679E33C079E11F41B096BC803B30B1D963A1EA79EFA84187CEBBC06AFE | sha512: FF8CDC0287E510F859F46C1E35F9B0FB42EAD907B1EAA42C90C84B31CF6C2D4638CF682777F359B8611DD22062C1A5FA71F7FB667B7A3903783673E678098515
md5: 05D1B950C470EA8B0AA357F9A59CF264 | sha1: B1756DC750ED5CFD5D0BFC70CB899FD590867A0C | sha256: DAAABD07F1B94BE19D72913360286E469F454886850AFCC603506EAAB03150E4 | sha512: 8E65FF1909AC8D65F599062E61AC935A919D43404C357DBC6AD628923B0C7ED7158862DDD272CFC1C2A8CEC393D48A57BC4D69CE7706EEF1BB6838826B1AFAE3
md5: 9F31B6954FD453F13B5F39DA36F2E8EB | sha1: 7A6276348D85EAF00AE6958117797045929078CB | sha256: 18A610B8BAD43CF784CDE4D4902A238F2281C2A677DAAE790CAB55F6DA915979 | sha512: D3696D4D60CFC5AA5834F60A0B97A4F3A3F8EC3FB05BEB3C3D927426B72B3E5463C628C7DF950E43FF1344823B8C2D39730BA47BA0F2FEC7A0CFCDC237A5BCC6
md5: 0E35085C130D2D91E5241334BE7EF0DA | sha1: FD622ADE5CAE26353A22B6FA50A83669B72B6C41 | sha256: 50AD612D4CF6113DE26B2870DA099C4817F59E64A2DA98F05803B4A2E2304919 | sha512: 2498811F4AAC308CDC55C3406BEA4FEF5DC9E6F23559B09FB181F7447474EF586F00038282DDC39C241490B5DC2BCA7F41F19BD3E1BB00890DA29DF6489BB151
md5: B0346A4C5FA0FAC135509A0E7D3C4449 | sha1: 7D71B46BB9A28289384AA1EDF5CB03D64B3BCFF0 | sha256: F9FEB277F86241F55425182A26DECF50A210675D4F040EC542AF3FB3DD287DE6 | sha512: 916A465236F11FF6E421800961B20CB80A320176DA8C58002F6742040CE33C5207D378667A584C5D8E35CF8CFC19AC54504B3F6129E489EEABD86A5B4E7D8C77
md5: 65FBBA7A86B3E175200AE44727AB40E5 | sha1: 584B8683943A8E0AE98B10F452C94F6109D1C4EA | sha256: 7A81D2A001B543B2A55C9AFFC845A5DF7EDAB1FD308C6979BBD982B1B826B57C | sha512: 43607AEBBB0A3F2D437C7DE77785CD6C9F49411E1D4EFE41ECCD93D7FCCA197DABD4E15F45FBC4FBFF27C202FEC96B79F82202AFC88B59C20ED5E7912BCDC6D3
md5: D7E74EA95786A02687CE43C356ABDC95 | sha1: 2E6A3047BD3BCEE01F55D139A3C03E6D4D2DB14A | sha256: 383A1F9DAC655C6805C24D4A03BC5FBEB9ABD1536DE5510F5756259EEFCB4871 | sha512: B7E76B65406904F092FE96DED558A94EA53FA40BEC500EFCDCDEBF124921F4526DE2F239CD25BAE1801692DD6DFE5652FFD46B2AA4325133C7127D27F626BB9B
md5: 568B53398BFC0E54AAF448B68F5C77C2 | sha1: 76B0B6E65E38A90A4ECDB3F6DFE16D5A803081E9 | sha256: 8BB9D52BA5C67F05C8F632DEB1E7E98A909318B10E1388B47E919515FDD42CBF | sha512: 6052EE3664FD2095DE3338CF6D24DF022DC13D00B4BF14C57572F2A34AC078E07BD1F634A50028DB0952AE8067FFCF19079177FA534240D9526F33AE1E1459AC
md5: 6CCCA0BA6A7B9CAF8B8D3B0287DBED8B | sha1: B81FF87B407578EFBF184BDC10D0F101610379DB | sha256: 16E7EFD6C19B2E3E516AE1BC7B3175D0E22F1AD357701F229E353DA348EEE182 | sha512: 8505479031A0A5CAEEEE1A8A60AA35D7E0C332BBFDDE61193B615E242C127780E55F404289F26930E9EC9E53FCCF436B1A991BA2C8A9177163B41AAAF6BE0D32
md5: A42C32F4E98A9656FC2FED72D30E9380 | sha1: B6B8986FC1B5140817DE262AE4102499E37DAFFD | sha256: C343F7BF08A4C97A90BA607A492C721533333173FA63F65F6E5DE9CEEE65FC16 | sha512: 5C2DE8F18CB9B367D7DE88A2AF8A7FD538486B9FFB393972FBDFF42CD2899D6679FD8D7076FE37954D5E8EAB6C5041F19EDAD32659C5CCEEC1C2BA35E6F8982A
md5: E1E2239979B853157BA75310FEA7E65D | sha1: EE1AE416570911282ABDD3745674E58F9D469C9E | sha256: E8D531F0AAA674F794B7F43EC76E4E32AD93F3C136020CF4B6E3433832F9C0DF | sha512: DDF9D6E05D9566C9E02295A061756FF164C408EA211D016023EDBFA91BBA4D0D7DFF293D2BF4D87C25FE923500C7535E4A21B6A8D4B18FD9505F8E5C635F9C95
md5: 3373A24450373CAF0CBB756E10097FD4 | sha1: 87C352153804FF5BD4F8AEF8851546F3CF22461E | sha256: 575E26A455892F1FD77B730E6928F70B760E76094AFE5BCB677D854DAF869AC5 | sha512: 85E005B5BEB7C14BA34C62C38DA635962D1AA4740F91549B8659910EDD10F0FDE1734064B19567BF5BC63DBBBB62399F6CBE0AA323193DA599232DCE22B14A01
md5: 9087373EEE85190DAF8915E614B1E4BD | sha1: F434AF8CE30EAF5511E28C0230211F0D8ED4A154 | sha256: 557858E44A51A74646AD07A85CBA56AF1DA13AD26AC2F74EE5D8C3E8A171C221 | sha512: F728238FA567457D7977FEA667FCCB56C2EFE718A9A362E294934CC752E506E05C5D20C0BE2A309DE2A984DD60C3AE4EA03054185B96C9B5F5F5DE827AF9CEAF
md5: 99604779C668D9B8EF913854B9A24F9D | sha1: 97B62A3DBE2465B4C995E082AD6FF183F6267F59 | sha256: 8270D1248950EE8AEE5C2AC2E321DF07E65C7A94004AE03C857DEACD231A5542 | sha512: BE6DEE6E7030B400EAC68AC289EC9B74BFE0140EE59AF5E68BF43A63A821C6F6AD9CA03C501896A6C92464BF8116D7996FFE640AB51BD9FA96673D9794AC82CD
md5: E4A1681E09AEC6EFB00FB2A9355A1296 | sha1: 95699D187BF150D319CC64F90064301CAC57F338 | sha256: 967DDDBFE7F1CEB933B5875D65C59CDB835BB063F287A361E8B35DD814A9B14D | sha512: 49299C773A4C7CCC235C54A91FD07A000CF547B3EE55272E2EE8B2AA40281DC0AF3C3B5A9EDF5CAEE4BEB3AD0DE5A0DEA07159ACEBA582911B78A6B85DB793B0
md5: F554762FC38F81CB22D1DC8AB5CD40D5 | sha1: A67FDACEB10E828805A9E24FE0C59E1D73D19A7C | sha256: 566775F5502C3C1FA70ACADE145293DF5D02C1A9F031820D429605E9B4584B44 | sha512: BD23571BF9D0FE62BBF5FDDCAFF6B8F383CCC728AFBCEEBCAD8404D68C02EA1F55D4A22306BFC86C30172E70C6CF5425F2FF8877AAA8758A51C48CF4303BD2AB
md5: 7AB10B31C5CE290672B319D403751E95 | sha1: ED23E654968B3704A82F613B06BE5829E0CAAD70 | sha256: 1F5C1ABE1B2720680170388569354D8CDA9D558B53AFF7CAF175CE0F7E3733E5 | sha512: 65ED3AFF2424E7560FCC44380DC719BF200D444F9B06AF7F916D52152C330D55A7F4B96D0C1D2B291B07D82805C71DD9850F2F5F612F00ADFCA1CDF117C6B14A
md5: A60084F9988C7907F7092C143C8D3818 | sha1: A69238054BEE26063D32B85B797BC4E0C49F79D4 | sha256: B755D0B55A465D07C9DD3FC11822487D1E649B684AEF91A4CE9B935B416A01B9 | sha512: 6147F18BD9C49727251CBEA7A3168E3B19F34056DE5A9898571ECDEC85D424627A72968072449C81F97F95330BAED7E2ED0F6FDBA7E2F79B59B9352AB11003CF
md5: 06D000552ED6785988AE188FC35D1B86 | sha1: B0A8868D459FE0AF34D16C263CFE0202C414DC53 | sha256: 3C8630ACB43C12A6A317227FF2922056ECD991FE945464FDF7EA81F1293A479F | sha512: F3E5E97AAF3D26EA62C64787198CCE6DF703EA3A4EBB389BEBC84B424C8129A0181142A4FA5D965CA3106758A047D0E1A723F181AD293FD389C4F1B8D290B5A5
md5: 6DCD91B6A029794728F4EDEB2BF2E42D | sha1: 82BA1313448B431893C14D866F46D47B620514A9 | sha256: 02416BC542BE82002B8B81ADBBBCDCC8D098104020D09B571DC674B5BC19A177 | sha512: 2566F369EDEE9313E823AA2667CB95977F0DB57B4B47DA62F44850811F524D0598FDE6F5BB082BB3325789E4B256E970603B4297D3586F1C435498430723A38B
md5: 4523F60270149BAD67F6AE63375D2CDB | sha1: FF6E6BCD83A11D40BF53DABD0480A67AECFDCF50 | sha256: 18032D190D0D599823E59C8DD8B588909BEF8888B8BF304723A138B61F1B911F | sha512: 025E33F6927E634FE187491F40D96B36B2DDAF2ACDE97B340C8705BAE58BDED6C02B8BF9199A1B9D4AC75884C69DC665DC03B34571B1BD178CA1784C5F0D5451
md5: 7F65CCBF58C39F3853BB8DC4137DFD12 | sha1: 3946DFF0B68F0CA01689BD44C348559ADF548258 | sha256: 0AB1F7F87B7C2AFCA57D394E4F4E262C82BA3209CB0A750CD66401FB33F21ECA | sha512: FF7D953EC4B82C10E64FC85D3AFC8A1A58582170EF1752D4688FA1D48EFC490DBA5F0A784E748F7902E96FD885EA868B1A84DE44F48CF071975F3CD3F8E52C6A
md5: D40515A84448B91315F956E6D1A6C64B | sha1: 7FE773332D0461A252E52BE720A7794FCAAC7BFB | sha256: CBE29672CD2B6A0EA97B55F3844FBEDE3E591996F39C3AA1F829F2FA50551FA9 | sha512: 322F82AEB9EB9DA22257AC9FE835BF1C54C1BB268D37F0F97A4CA52BB42F6ACCCA9C8DBDB96D6D695FA69C24F5069978A4B6F1E960EE81D9EA671CCD30A348D3
md5: 7D317D88F9860A18ECF7FB90B33995D3 | sha1: C2E4B19CB9A0B48E899512CD121FFE6657D41072 | sha256: C98A52BD017DF01AEA7B955E6F219537D391A62C2C2B976684DA282F9CD7CACF | sha512: 79ED01C6D1CEA3DBA6B3566E03D05A971745E221BE9330F6800A249D1B239E092D3FF704E7403E7ECD6B7709B24B0CDD7E518F2EE5DA38019E7139D80594173E
md5: 11D674CFC81B7102C0BC6FFE58F6AC5E | sha1: DDDA49572D112944EC9AB62B31959AA93A386618 | sha256: 4DC8D588EC63641C28422D648E8DE5E2C030EB7AFEC2071A99DD3BD9A204557F | sha512: FB7C628B796A321AD9ECBF01D165E24F151C99D7E60A65D0AF52F779AD60A3203F47B247D44FC47044A68790D1EA4EE458A7BC8DF7EBE9D42C2275A9C11BC324
md5: 1A890C488CF2ECD406B804E7E3C5B7F0 | sha1: BF2C1287F0EC04223CD17FE20AB2ECFFF18579E3 | sha256: F17FF442B77A6CFE9C118D2F8FAE1AB6C814A0D4F35C5844996BE84F3FCC8592 | sha512: 4EEC61F9245DFF3D468818D6D6CBB8E12A5172658F1027A9AB0ECE03CC1377499833056A0DD4FF20B83B9FF9E47BB2E7F8DC7B641BC63AD78FF96C54BE01F524
md5: 0AD301EE2B7282B87DCD0D862EFE14DC | sha1: F720109A38846E358BDE7C47D9C946A79D2B6B1C | sha256: 0110616DFE870B8BCF25DF8F6CE38EF5AAC39E728DDAA3420EA199F5A7E80A16 | sha512: C66FC92435C399804D8A8C1C836E5648725DDA8A55D7ACD897AE719CA231D89251A0D9A293A67F079E345709CFDA83DCC693AD41A28D13661A55459F94FE33E0
md5: 9088029E38B2A393F22AFD9E576CE86E | sha1: 05E65EE95F647F38C717C73A0399870912DD374A | sha256: 3468E0C875DB94A8F45D56AB76BBCC677B942CA51A23649BA3C5AD1B20E391F1 | sha512: 23DCF5819996EE0F0C8FE044D6642A12E98A40309CE1F3F74688CF8E3DD6F6ED230AEC391FE7E511E15FBBBF14BFF09F976E923F22F2D68AD816D8FFAD17F101
md5: FDB3A743B2DAE5924CBA88A5C865128D | sha1: C53132EC95A7211C1BB6DCD5AD21CCB150A7B923 | sha256: 9D4FAEA9892D4ECFABF61986687FC6CB30F5F51A6B62819B9571FF58E04C4DD5 | sha512: CBD8370F3CB84CB9EB8BF3A7392245D6A90CE1A324971EA96170974DA092BDFC3DB2196F66958CA5D5000F13B18AFAB44FF82D50C5B9A625AA1B7A4AF17717DE
md5: 18CE4ECC42FC8D999EF091D812472CF0 | sha1: F874903CEA9F08F1A0887949B47722E6BA81B789 | sha256: 3D9EBC81B1BD3234666C8CE403A5F17A726867C68FFA5DE4EC8EE92599335658 | sha512: 0C027440EF6F6C105B0BF9319F4E0EA421FD310699028AF0A159300145C662E74B4B5D969663E3B52CDA7F9934A6AB93BBAE9BCD1BD39AAAC24FCBA7EC451156
md5: 824053272B268C577E9ADF17ED398142 | sha1: 5EA3F290ECDE1BAB983CEEE2417A688B7ED9B7F5 | sha256: 04B9235F64C9C846F8A767230714895DA87C7AE2CD0105E9D14835AE46F0FED8 | sha512: F475DCD2CC23FDFB017688713170FCAF8FEA05869A680613EA4AD84CB358ED0F2442DB0FF0DCBD739E3CC3DB7128A8F4A568AE8E5AF6A8840319B02630E420B9
md5: C8456355B990C6347AB2F3621E2010BE | sha1: 0B7A9EC0DFF6D958C9C64B5F592993372D31C5E9 | sha256: EFD8155CEC6F3683B701FE94F555D225332D283126BB36B36D9A20EA9D7FC724 | sha512: 7EAA67B9F5E0CD5D1F2ADED212721973CE7FC951D6AF554084B1FF82521F9EE85EAACF8881EF58453CF67935289CC68092A8F845506314BDC1249780B46503D8
md5: 145EB749E3B061DAB3360B142690FFD6 | sha1: F0759599123B46212080FA42E84F23D2EA2D7B0A | sha256: FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02 | sha512: 3DEF8EC69FACD7BE6B0FE0082548DFC46D2853AF721E22014CF1A1C46F7C7D0CE4C32283EB8EA38763B924CEB0DAB1AA24EAD943F93455A59C7028B680A5730E
md5: D1976F7280F75E8B6D8FBB2D03BED6EE | sha1: AA964BFDF49330C118FD2FC186FB6633266D3551 | sha256: 4CA246031C9CC050FE3E88C3F5ABF970612211155CD6FFA6C9E81E5050337A36 | sha512: 88EB23BFF00D9F61E664E54FC873F03481A7E25C476C7C92A988132CB9E79373AD41938B8C158CBB48B3CC8F55184E72CF8E54775185EFA1020F9EF35F025BB7
md5: 090FF56C4FE2EEFF2E16F03099AD71E1 | sha1: EF317CACC230A58A3B2FCC6CC079CC763AFCC7C5 | sha256: 5F560E1DD529BB2529D7052E04008449F58D0439C2BB43437D7B5D39F84F949F | sha512: FDAC43D0A18D9158DB4438349A7A550557A36E6ED0665EFCB65A046A5BEB5C38181996CBF6D860B8AD01C19E35315BB61AE766CAF06B23985E046484DAB45256
md5: 37E21B63959F243A157534133F85C5AF | sha1: DFAD52A9990B2FAFCE7098CEBB174927E8E0BA00 | sha256: 4F6A14E4BA2A2B26B8B8433D5F82F75A96AF5A4F036D9447373B07271493917B | sha512: F59FAA6319FE2AFEBCCBD643E20C1EDB75DB74E9271354BD86DAC3BEA2CC59452EE024DC26B517AE88254A7C90DBE0E6C19A7B5AB3BFE9159D986D6C53CA5521
md5: 328D12AF9613B0F3F25320B85DCCCBF4 | sha1: 09D02B85A094E925AC3C5D8B1ACA096B730C160F | sha256: 8957F0BCEA6AB8A011A53AE62466505199F11A228F87F3809931D974F87078CE | sha512: 16569ECB727ADA36811E72FFC925F07AA21B8A627BE45F1EDA18CF2B759939591DCAFCB2D087596EE903C5ABFFAF19F56F25E9710EF22874C934CAD19537B798
md5: D9F02D9F7DA653F82E75112A2AB99CE6 | sha1: BBBB4C2C3911AE1F5BA7FAF1D632ED0F14D9B6AC | sha256: 21493F7F615A099E795F7FAE7ECCE6082414D1D427790BDF4B103623A3AB34EB | sha512: DE5546FF103CCC6AA38E254039A372697A193F9C44D0A44F0BE3B242D9EEF63023DC3FD0C6E8E0D2363177F9230A4E7200D4C32591B398269A1CEE9BC47A99FC
md5: 415E3AB72F17F10D646B3E2C7A76F612 | sha1: ED25E94D4E88293345A0F28A5B975159C393B050 | sha256: 24DAA1FAEE0478BA58FEBE8EE789EB88BE0A14D350B57AD8B10690C55976B2E1 | sha512: 55B5C22B87F21DF89D0514AE05C9433B65A3C7532845FDFC4C2C5C5E2C3929D70143D84698FDB4DC13EC01895B1022CF0E5E76E12102739530B54150932A7B07
md5: A5F541655A9EDC24F4B5184A40E40227 | sha1: 90E196DCD76168F770ABE30098399BC5866ADF1B | sha256: B33D08149A756A401628D11BFDDFEEACA1F03C0578395BB061DAE44F8A12CE5D | sha512: C4D13E95114E232300B36ED7B7A72CE786F66D0F68B0ED9D54FEF788A831B39C893DAA3C2DE982B376A56A539C23E8F314CE8552ED7094E6826D5F70BFBE2D4B
md5: EFC5CCF2AA7F375240095B5F6C23CE2E | sha1: 3AD93841538E9D42D7C86A0BFD4A5107FC4299AF | sha256: E2BA29B53888D545B76953FA4E9E17DB6DAC1746F852BB04801709257A868840 | sha512: 2E8D153533BD233BC9AFDB8C9484C55F438EA9DB30C6EEDB2538230E6160B0AAF64ED0B19052CB2ED27AC3AC61BE874C0C388F743C6C31D8FE53D889048868AA
<?xml version="1.0"?>
<doc>
<assembly>
<name>TfsCmdlets.PSDesktop</name>
</assembly>
<members>
<member name="T:TfsCmdlets.AssemblyResolver">
<summary>
Custom assembly resolver
</summary>
</member>
<member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
<summary>
Mantains a list of all assemblies stored in the /Lib folder of this module to support
on-demand assembly resolving and loading
</summary>
</member>
<member name="M:TfsCmdlets.AssemblyResolver.Register">
<summary>
Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and
loads the list of private assemblies to the Assemblies dictionary
</summary>
</member>
<member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
<summary>
Represents a private assembly
</summary>
</member>
<member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
<summary>
Creates an instance from an assembly name and its file path
</summary>
<param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
<param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
</member>
<member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
<summary>
Assembly name
</summary>
</member>
<member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
<summary>
Full path to assembly file
</summary>
</member>
<member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
<summary>
Indicates whether this assembly has already been loaded by the Assembly Resolver
</summary>
</member>
<member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
<summary>
The actual assembly represented by this instance. If the assembly wasn't previously
loaded, it will be read from disk and returned to the caller
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection">
<summary>
Detaches a team project collection database from a Team Foundation Server installation.
</summary>
<remarks>
Before you move a collection, you must first detach it from the deployment of TFS on which
it is running. It's very important that you do not skip this step. When you detach a collection,
all jobs and services are stopped, and then the collection database is stopped. In addition,
the detach process copies over the collection-specific data from the configuration database
and saves it as part of the team project collection database. This configuration data is what
allows the collection database to be attached to a different deployment of TFS. If that data is
not present, you cannot attach the collection to any deployment of TFS except the one from which
it originated. If detachment succeeds, this cmdlets returns the original database connection string.
It is required to re-attach the collection to TFS.
</remarks>
<example>
<code>Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</code>
<para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</para>
</example>
<related>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</related>
<notes>
Detaching a collection prevents users from accessing any projects in that collection.
</notes>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Collection">
<summary>
Specifies the collection to detach.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Reason">
<summary>
Speficies a Servicing Message (optional), to provide a message for users who might try
to connect to projects in this collection while it is offline.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Timeout">
<summary>
Specifies the maximum period of time this cmdlet should wait for the detach procedure
to complete. By default, it waits indefinitely until the collection servicing completes.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.DismountTeamProjectCollection.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection">
<summary>
Attaches a team project collection database to a Team Foundation Server installation.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Collection">
<summary>
Specifies the name of the collection to attach. It can be different from the original
name - in that case, it is attached under a new name.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Description">
<summary>
Specifies a new description for the collection. When omitted, it retains the original description.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseServer">
<summary>
Specifies the name of the SQL Server instance where the database is stored.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.DatabaseName">
<summary>
Specifies the name of the collection database.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.ConnectionString">
<summary>
Specifies the connection string of the collection database.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.InitialState">
<summary>
Specifies whether the collection will be started ou stopped after being attached.
When omitted, the collection is automatically started and goes online after being attached.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Clone">
<summary>
Changes the internal collection IDs upon attaching to that a "clone" of the original
collection can be attached to the same server.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.PollingInterval">
<summary>
Specifies the polling interval (in seconds) to get an updated status from the server.
When omitted, defaults to 5 seconds.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Timeout">
<summary>
Specifies the maximum period of time this cmdlet should wait for the attach procedure
to complete. By default, it waits indefinitely until the collection servicing completes.
</summary>
</member>
<member name="F:TfsCmdlets.Cmdlets.TeamProjectCollection.MountTeamProjectCollection.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection">
<summary>
Starts an offline team project collection and make it online.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StartTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection">
<summary>
Stops a team project collection and make it offline.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.StopTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection">
<summary>
Gets one or more Team Project Collection addresses registered in the current computer.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetRegisteredTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
<summary>
Gets one of more team project collections (organizations in Azure DevOps).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
<summary>
Returns the team project collection specified in the last call to
Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
<summary>
Creates a new team project collection.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
<summary>
Deletes a team project collection.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.StartIdentitySync">
<summary>
Triggers an Identity Sync server job.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.DoProcessRecord">
<inheritdoc/>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Wait">
<summary>
Waits until the job finishes running. If omitted, the identity sync job will run asynchronously.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.StartIdentitySync.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString">
<summary>
Gets the configuration server database connection string.
</summary>
<related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/">Online version:</related>
<related>Get-TfsInstallationPath</related>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.ComputerName">
<summary>
Specifies the name of a Team Foundation Server application tier from which to
retrieve the connection string.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Session">
<summary>
The machine name of the server where the TFS component is installed.
It must be properly configured for PowerShell Remoting in case it's a remote machine.
Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a
previously opened PowerShell Remote session can be provided instead.
When omitted, defaults to the local machine where the script is being run
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Version">
<summary>
The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
When omitted, will default to the newest installed version of TFS / Azure DevOps Server
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.Credential">
<summary>
The user credentials to be used to access a remote machine. Those credentials must have
the required permission to execute a PowerShell Remote session on that computer.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Admin.GetConfigurationServerConnectionString.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
<summary>
Gets the installation path of a given Team Foundation Server component.
</summary>
<remarks>
Many times a Team Foundation Server admin needs to retrieve the location where
TFS is actually installed. That can be useful, for instance, to locate tools like
TfsSecurity or TfsServiceControl. That information is recorded at setup time,
in a well-known location in the Windows Registry of the server where TFS is installed.
</remarks>
<example>
<code>Get-TfsInstallationPath -Version 2017</code>
<para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
</example>
<example>
<code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
<para>Gets the location where the SharePoint Extensions have been installed in the remote
server SPTFSSRV, prompting for admin credentials to be used for establishing a
PS Remoting session to the server</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
<summary>
The machine name of the server where the TFS component is installed.
It must be properly configured for PowerShell Remoting in case it's a remote machine.
Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a
previously opened PowerShell Remote session can be provided instead.
When omitted, defaults to the local machine where the script is being run
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
<summary>
The machine name of the server where the TFS component is installed.
It must be properly configured for PowerShell Remoting in case it's a remote machine.
Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a
previously opened PowerShell Remote session can be provided instead.
When omitted, defaults to the local machine where the script is being run
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
<summary>
Indicates the TFS component whose installation path is being searched for.
For the main TFS installation directory, use BaseInstallation. When omitted,
defaults to BaseInstallation.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
<summary>
The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
When omitted, will default to the newest installed version of TFS / Azure DevOps Server
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
<summary>
The user credentials to be used to access a remote machine. Those credentials must have
the required permission to execute a PowerShell Remote session on that computer and also
the permission to access the Windows Registry.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
<summary>
Gets the version information about Team Foundation / Azure DevOps servers and
Azure DevOps Services organizations.
</summary>
<remarks>
The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization.
When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
<summary>
Gets the value of a given Team Foundation Server registry entry.
</summary>
<remarks>
The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope.
Registry entries can be scoped to the server, to a collection or to a specific user.
</remarks>
<notes>
The registry is an internal, hierarchical database that TFS uses to store its
configuration and user-level settings and preferences.
IMPORTANT: Retrieving user-scoped values is currently not supported.
</notes>
<example>
<code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
<para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
<summary>
Specifies the full path of the TFS Registry key
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
<summary>
Specifies the scope under which to search for the key.
When omitted, defaults to the Server scope.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
<summary>
Sets the value of a given Team Foundation Server registry entry.
</summary>
<remarks>
The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the
value specified in the command.
</remarks>
<example>
<code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
<para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
</example>
<notes>
The registry is an internal, hierarchical database that TFS uses to store its
configuration and user-level settings and preferences.
IMPORTANT: Retrieving user-scoped values is currently not supported.
</notes>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
<summary>
Specifies the full path of the TFS Registry key
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
<summary>
Specifies the new value of the Registry key. To remove an existing value,
set it to $null
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
<summary>
Specifies the scope under which to search for the key.
When omitted, defaults to the Server scope.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer">
<summary>
Gets one or more Team Foundation Server addresses registered in the current computer.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.DoProcessRecord">
<inheritdoc/>
</member>
<member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetRegisteredConfigurationServer.Server">
<summary>
Specifies the name of a registered server. Wildcards are supported.
When omitted, all registered servers are returned.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer">
<summary>
Gets information about a configuration server.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Current">
<summary>
Returns the configuration server specified in the last call to Connect-TfsConfigurationServer
(i.e. the "current" configuration server)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ConfigServer.GetConfigurationServer.DoProcessRecord">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer">
<summary>
Connects to a configuration server.
</summary>
<remarks>
A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level,
it is represented by the Tfs_Configuration database. Operations that should be performed on a server level
(such as setting server-level permissions) require a connection to a TFS configuration server.
Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer.
NOTE: Currently it is only supported in Windows PowerShell.
</remarks>
<example>
<code>Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</code>
<para>Connects to the TFS server specified by the URL in the Server argument</para>
</example>
<example>
<code>Connect-TfsConfigurationServer -Server vsalm</code>
<para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</para>
</example>
<para type="input">Microsoft.TeamFoundation.Client.TfsConfigurationServer</para>
<para type="input">System.String</para>
<para type="input">System.Uri</para>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.DoProcessRecord">
<inheritdoc/>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Server">
<summary>
Specifies either a URL/name of the Team Foundation Server to connect to, or a previously
initialized TfsConfigurationServer object. When using a URL, it must be fully qualified.
To connect to a Team Foundation Server instance by using its name, it must have been
previously registered.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Cached">
<summary>
HELP_PARAM_CACHED_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.UserName">
<summary>
HELP_PARAM_USER_NAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Password">
<summary>
HELP_PARAM_PASSWORD
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.PersonalAccessToken">
<summary>
HELP_PARAM_PERSONAL_ACCESS_TOKEN
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Interactive">
<summary>
HELP_PARAM_INTERACTIVE
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectConfigurationServer.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeam">
<summary>
Connects to a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Team">
<summary>
Specifies the name of the Team, its ID (a GUID), or a
Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details,
see the Get-TfsTeam cmdlet.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Cached">
<summary>
HELP_PARAM_CACHED_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.UserName">
<summary>
HELP_PARAM_USER_NAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Password">
<summary>
HELP_PARAM_PASSWORD
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.PersonalAccessToken">
<summary>
HELP_PARAM_PERSONAL_ACCESS_TOKEN
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Interactive">
<summary>
HELP_PARAM_INTERACTIVE
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeam.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeam.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject">
<summary>
Connects to a Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Project">
<summary>
Specifies the name of the Team Project, its ID (a GUID), or a
Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Interactive">
<summary>
HELP_PARAM_INTERACTIVE
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Cached">
<summary>
HELP_PARAM_CACHED_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.UserName">
<summary>
HELP_PARAM_USER_NAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Password">
<summary>
HELP_PARAM_PASSWORD
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.PersonalAccessToken">
<summary>
HELP_PARAM_PERSONAL_ACCESS_TOKEN
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProject.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection">
<summary>
Connects to a TFS team project collection or Azure DevOps organization.
</summary>
<remarks>
The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or
Azure DevOps organization.
That connection can be later reused by other TfsCmdlets commands until it's closed
by a call to Disconnect-TfsTeamProjectCollection.
</remarks>
<notes>
Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their
-Collection argument in order to access a TFS instance. Those cmdlets will use the connection
opened by Connect-TfsTeamProjectCollection as their "default connection".
In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection
provided by Connect-TfsTeamProjectCollection by default.
</notes>
<example>
<code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
<para>Connects to a collection called "DefaultCollection" in a TF server called "tfs"
using the cached credentials of the logged-on user</para>
</example>
<example>
<code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
<para>Connects to a collection called "DefaultCollection" in a Team Foundation server called
"tfs", firstly prompting the user for credentials (it ignores the cached credentials for
the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection
-Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Collection">
<summary>
Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to,
a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object.
You can also connect to an Azure DevOps Services organizations by simply providing its name
instead of the full URL.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Cached">
<summary>
HELP_PARAM_CACHED_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.UserName">
<summary>
HELP_PARAM_USER_NAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Password">
<summary>
HELP_PARAM_PASSWORD
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.PersonalAccessToken">
<summary>
HELP_PARAM_PERSONAL_ACCESS_TOKEN
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Interactive">
<summary>
HELP_PARAM_INTERACTIVE
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.ConnectTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer">
<summary>
Disconnects from the currently connected configuration server.
</summary>
<remarks>
The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its
counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server"
as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet,
unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made.
</remarks>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectConfigurationServer.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeam">
<summary>
Disconnects from the currently connected team.
</summary>
<remarks>
The Disconnect-TfsTeam cmdlet removes the connection previously set by its
counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team"
as provided by "Get-TfsTeam -Current" will no longer work after a call to
this cmdlet, unless their -Team argument is provided or a new call to
Connect-TfsTeam is made.
</remarks>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeam.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject">
<summary>
Disconnects from the currently connected team project.
</summary>
<remarks>
The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its
counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project"
as provided by "Get-TfsTeamProject -Current" will no longer work after a call to
this cmdlet, unless their -Project argument is provided or a new call to
Connect-TfsTeamProject is made.
</remarks>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProject.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection">
<summary>
Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
</summary>
<remarks>
The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its
counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection"
as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to
this cmdlet, unless their -Collection argument is provided or a new call to
Connect-TfsTeam is made.
</remarks>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.DisconnectTeamProjectCollection.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Connection.NewCredential">
<summary>
Provides credentials to use when you connect to a Team Foundation Server
or Azure DevOps organization.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Url">
<summary>
Specifies the URL of the server, collection or organization to connect to.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Cached">
<summary>
HELP_PARAM_CACHED_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.UserName">
<summary>
HELP_PARAM_USER_NAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Password">
<summary>
HELP_PARAM_PASSWORD
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Credential">
<summary>
HELP_PARAM_CREDENTIAL
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.PersonalAccessToken">
<summary>
HELP_PARAM_PERSONAL_ACCESS_TOKEN
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Connection.NewCredential.Interactive">
<summary>
HELP_PARAM_INTERACTIVE
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Connection.NewCredential.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
<summary>
Exports a XML-based process template definition to disk.
</summary>
<remarks>
This cmdlet offers a functional replacement to the "Export Process Template" feature found
in Team Explorer. All files pertaining to the specified process template (work item defininitons,
reports, saved queries, process configuration and so on) are downloaded from the given
Team Project Collection and saved in a local directory, preserving the directory structure
required to later re-import it. This is specially handy to do small changes to a process template
or to create a new process template based on an existing one.
</remarks>
<example>
<code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
<para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
</example>
<example>
<code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
<para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
</example>
</member>
<member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DoProcessRecord">
<inheritdoc/>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
<summary>
Specifies the name of the process template(s) to be exported. Wildcards are supported.
When omitted, all process templates in the given project collection are exported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
<summary>
Path to the target directory where the exported process template (and related files) will be saved.
A folder with the process template name will be created under this path. When omitted, templates
are exported in the current directory.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
<summary>
Saves the exported process template with a new name. Useful when exporting a base template
which will be used as a basis for a new process template. When omitted, the original name is used.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
<summary>
Saves the exported process template with a new description. Useful when exporting a base template
which will be used as a basis for a new process template. When omitted, the original description is used.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
<summary>
Allows the cmdlet to overwrite an existing destination folder.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
<summary>
Imports a process template definition from disk.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.DoProcessRecord">
<inheritdoc/>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
<summary>
Specifies the folder containing the process template to be imported. This folder must contain
the file ProcessTemplate.xml
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
<summary>
Specifies the state of the template after it is imported. When set to Invisible, the process template
will not be listed in the server UI.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
<summary>
Gets information from one or more process templates.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
<summary>
Specifies the name of the process template(s) to be returned. Wildcards are supported.
When omitted, all process templates in the given project collection are returned.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
<summary>
Creates a new inherited process.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
<summary>
Specifies the name of the process to create.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
<summary>
Specifies the description of the new process.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
<summary>
Specifies the reference name of the new process. When omitted, a random name
will be automatically generated and assigned by the server.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
<summary>
Specifies the name of the parent process from which the new process will inherit.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
<summary>
Allows the cmdlet to overwrite an existing process.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
<summary>
Exports an XML work item type definition from a team project.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
<summary>
Specifies one or more work item types to export. Wildcards are supported.
When omitted, all work item types in the given project are exported
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
<summary>
Exports the definitions of referenced global lists.
When omitted, global list definitions are not included in the exported XML document.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
<summary>
Specifies the path to the folder where exported types are saved.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
<summary>
Allows the cmdlet to overwrite an existing file in the destination folder.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
<summary>
Exports the saved query to the standard output stream as a string-encoded
XML document.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
<summary>
Gets one or more Work Item Type definitions from a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
<summary>
Specifies one or more work item type names to return. Wildcards are supported.
When omitted, returns all work item types in the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
<summary>
Speficies a work item whose corresponding type should be returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
<summary>
Imports a work item type definition into a team project.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
<summary>
Gets one or more Work Item Areas from a given Team Project.
</summary>
<example>
<code>Get-TfsArea</code>
<para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
</example>
<example>
<code>Get-TfsArea '\**\Support' -Project Tailspin</code>
<para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
<summary>
HELP_PARAM_AREA
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
<summary>
Gets one or more Iterations from a given Team Project.
</summary>
<example>
<code>Get-TfsIteration</code>
<para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
</example>
<example>
<code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
<para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode">
<summary>
Base implementation for Get-Area and Get-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration)
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
<summary>
Gets one or more Work Item Areas from a given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
<summary>
HELP_PARAM_AREA
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
<summary>
Gets one or more Iterations from a given Team Project.
</summary>
<example>
<code>Get-TfsIteration</code>
<para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
</example>
<example>
<code>Get-TfsIteration '\\**\\Support' -Project Tailspin</code>
<para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode">
<summary>
Base implementation for Move-Area and Move-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Destination">
<summary>
Specifies the name and/or path of the destination parent node.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Force">
<summary>
Allows the cmdlet to create destination parent node(s) if they're missing.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveClassificationNode.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
<summary>
Creates a new Work Item Area in the given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
<summary>
Specifies the path of the new Area. When supplying a path, use a backslash ("\\")
between the path segments. Leading and trailing backslashes are optional.
The last segment in the path will be the area name.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
<summary>
Creates a new Iteration in the given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
<summary>
Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\")
between the path segments. Leading and trailing backslashes are optional.
The last segment in the path will be the iteration name.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode">
<summary>
Base implementation for New-Area and New-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewClassificationNode.Force">
<summary>
Allows the cmdlet to create parent nodes if they're missing.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
<summary>
Deletes one or more Work Item Areas from a given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
<summary>
HELP_PARAM_AREA
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
<summary>
Deletes one or more Iterations from a given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode">
<summary>
Base implementation for Remove-Area and Remove-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.MoveTo">
<summary>
Specifies the new parent node for the work items currently assigned to the node
being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
team project level).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Recurse">
<summary>
Removes node(s) recursively.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveClassificationNode.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode">
<summary>
Renames a Work Area.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.Node">
<summary>
HELP_PARAM_AREA
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameAreaNode.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode">
<summary>
Renames a Iteration.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIterationNode.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode">
<summary>
Base implementation for Rename-Area and Rename-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.NewName">
<summary>
HELP_PARAM_NEWNAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameClassificationNode.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
<summary>
Modifies the dates of an iteration.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
<summary>
Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date,
both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
<summary>
Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date,
both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode">
<summary>
Base implementation for Set-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration)
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
<summary>
Determines whether the specified Work Area exist.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
<summary>
HELP_PARAM_AREA
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
<summary>
Determines whether the specified Iteration exist.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
<summary>
HELP_PARAM_ITERATION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.StructureGroup">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode">
<summary>
Base implementation for Test-Area and Test-Iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Node">
<summary>
Specifies the name and/or path of the node (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.StructureGroup">
<summary>
Indicates the type of structure (area or iteration)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestClassificationNode.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem">
<summary>
Creates a copy of a work item, optionally changing its type.
</summary>
<remarks>
Use this cmdlet to create a copy of a work item (using its latest saved state/revision data)
that is of the specified work item type.
<br/>
By default, the copy retains the same type of the original work item,
unless the Type argument is specified
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.WorkItem">
<summary>
HELP_PARAM_WORKITEM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.NewType">
<summary>
Specifies the type of the new work item. When omitted, the type of the original
work item is preserved.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeAttachments">
<summary>
Creates a duplicate of all attachments present in the source work item and
adds them to the new work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.IncludeLinks">
<summary>
Creates a copy of all links present in the source work item and adds them to the new work item.
Only the links are copied; linked artifacts themselves are not copied.
In other words, both the original and the copy work items point to the same linked
artifacts.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DestinationProject">
<summary>
Specifies the team project where the work item will be copied into. When omitted,
the copy will be created in the same team project of the source work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Project">
<summary>
Specifies the source team project from where the work item will be copied.
When omitted, it defaults to the team project of the piped work item (if any),
or to the connection set by Connect-TfsTeamProject.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.Passthru">
<summary>
Returns the results of the command. It takes one of the following values:
Original (returns the original work item), Copy (returns the newly created work item copy)
or None.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.CopyWorkItem.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
<summary>
Gets the contents of one or more work items.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
<summary>
HELP_PARAM_WORKITEM
</summary>
<seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
A WorkItem object
</seealso>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
<summary>
Specifies the title to look up for in a work item. Wildcards are supported.
When a wildcard is used, matches a portion of the title
(uses the operator "contains" in the WIQL query). Otherwise, matches the whole field
with the operator "=", unless -Ever is also specified. In that case, uses the operator
"was ever".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
<summary>
Specifies the description to look up for in a work item. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
<summary>
Specifies the area path to look up for in a work item. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
<summary>
Specifies the iteration path to look up for in a work item. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
<summary>
Specifies the work item type to look up for in a work item. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
<summary>
Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
<summary>
Specifies the reason (field 'System.Reason') to look up for in a work item.
Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
<summary>
Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item.
Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
<summary>
Specifies the board column to look up for in a work item.
Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
<summary>
Specifies whether the work item is in the sub-column Doing or Done in a board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
<summary>
Specifies the name or email of the user that created the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
<summary>
Specifies the date when the work item was created.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
<summary>
Specifies the name or email of the user that did the latest change to the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
<summary>
Specifies the date of the latest change to the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
<summary>
Specifies the date of the most recent change to the state of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
<summary>
Specifies the priority of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
<summary>
Specifies the tags to look up for in a work item. When multiple tags are supplied,
they are combined with an OR operator - in other works, returns work items that
contain ANY ofthe supplied tags.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
<summary>
Switches the query to historical query mode, by changing operators to
"WAS EVER" where possible.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
<summary>
Specifies a work item revision number to retrieve. When omitted, returns
the latest revision of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
<summary>
Returns the field values as they were defined in the work item revision that
was the latest revision by the date specified.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Query">
<summary>
Specifies a query written in WIQL (Work Item Query Language)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
<summary>
Specifies which fields should be retrieved. When omitted, defaults to a set of
standard fields that include Id, Title, Description, some state-related fields and more.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
<summary>
Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
<summary>
Fetches work items in "time-precision mode": search criteria in WIQL queries
take into account time information as well, not only dates.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
<summary>
Opens the specified work item in the default web browser.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
<summary>
Gets deleted work items.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
<summary>
Gets the history of changes of a work item.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
<summary>
Adds a link between two work items.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
<summary>
Gets the links in a work item.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType">
<summary>
Gets the work item link end types of a team project collection.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkEndType.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
<summary>
Moves a work item to a different team project in the same collection.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
<summary>
Specifies a work item. Valid values are the work item ID or an instance of
Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
<summary>
Specifies the team project where the work item will be moved to.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
<summary>
Specifies the area path in the destination project where the work item will be moved to.
When omitted, the work item is moved to the root area path in the destination project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
<summary>
Specifies the iteration path in the destination project where the work item will be moved to.
When omitted, the work item is moved to the root iteration path in the destination project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
<summary>
Specifies a new state for the work item in the destination project.
When omitted, it retains the current state.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
<summary>
Specifies a comment to be added to the history
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
<summary>
Creates a new work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
<summary>
Specifies the type of the new work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
<summary>
Specifies the title of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
<summary>
Specifies the description of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Area">
<summary>
Specifies the area path of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Iteration">
<summary>
Specifies the iteration path of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
<summary>
Specifies the user this work item is assigned to.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
<summary>
Specifies the state of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
<summary>
Specifies the reason (field 'System.Reason') of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
<summary>
Specifies the Value Area of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
<summary>
Specifies the board column of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
<summary>
Specifies whether the work item is in the sub-column Doing or Done in a board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
<summary>
Specifies the board lane of the work item
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
<summary>
Specifies the priority of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
<summary>
Specifies the tags of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
<summary>
Specifies the names and the corresponding values for the fields to be set
in the work item and whose values were not supplied in the other arguments
to this cmdlet.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
<summary>
Bypasses any rule validation when saving the work item. Use it with caution, as this
may leave the work item in an invalid state.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
<summary>
Exports a saved work item query to XML.
</summary>
<remarks>
Work item queries can be exported to XML files (.WIQ extension) in order to be shared
and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use
this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
<summary>
Specifies one or more saved queries to export. Wildcards supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
<summary>
Specifies the scope of the returned item. Personal refers to the
"My Queries" folder", whereas Shared refers to the "Shared Queries"
folder. When omitted defaults to "Both", effectively searching for items
in both scopes.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
<summary>
Specifies the path to the folder where exported queries are saved.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
<summary>
Specifies the encoding for the exported XML files. When omitted,
defaults to UTF-8.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
<summary>
Flattens the query folder structure. When omitted, the original query
folder structure is recreated in the destination folder.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
<summary>
Allows the cmdlet to overwrite an existing file in the destination folder.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
<summary>
Exports the saved query to the standard output stream as a string-encoded
XML document.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
<summary>
Gets the definition of one or more work item saved queries.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
<summary>
Specifies one or more saved queries to return. Wildcards supported.
When omitted, returns all saved queries in the given scope of the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.ItemType">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder">
<summary>
Gets the definition of one or more work item saved queries.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Folder">
<summary>
Specifies one or more saved queries to return. Wildcards supported.
When omitted, returns all saved queries in the given scope of the given team project.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryFolder.ItemType">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase">
<summary>
Base implementation for Get-WorkItemQuery and Get-WorkItemQueryFolder
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.ItemType">
<summary>
Indicates the type of item (query or folder)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Scope">
<summary>
Specifies the scope of the returned item. Personal refers to the
"My Queries" folder", whereas Shared refers to the "Shared Queries"
folder. When omitted defaults to "Both", effectively searching for items
in both scopes.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQueryItemCmdletBase.Deleted">
<summary>
Returns deleted items.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
<summary>
Create a new work items query in the given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
<summary>
Specifies one or more saved queries to return. Wildcards supported.
When omitted, returns all saved queries in the given scope of the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
<summary>
Specifies the query definition text in WIQL (Work Item Query Language).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.ItemType">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder">
<summary>
Create a new work items query in the given Team Project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.Folder">
<summary>
Specifies one or more saved queries to return. Wildcards supported.
When omitted, returns all saved queries in the given scope of the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryFolder.ItemType">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase">
<summary>
Base implementation for New-WorkItemQuery and New-WorkItemQueryFolder
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Scope">
<summary>
Specifies the scope of the returned item. Personal refers to the
"My Queries" folder", whereas Shared refers to the "Shared Queries"
folder. When omitted defaults to "Both", effectively searching for items
in both scopes.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.Force">
<summary>
Allow the cmdlet to overwrite an existing item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQueryItemCmdletBase.ItemType">
<summary>
Indicates the type of item (query or folder)
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
<summary>
Deletes a work item from a team project collection.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
<summary>
Specifies the work item to remove.
</summary>
<seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
A WorkItem object
</seealso>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
<summary>
Permanently deletes the work item, without sending it to the recycle bin.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
<summary>
HELP_PARAM_FORCE_REMOVE
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
<summary>
Gets the contents of one or more work items.
</summary>
<related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
<summary>
Specifies the text to search for. Supports the Quick Filter syntax described in
https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
<summary>
Specifies the maximum quantity of results. Supports between 1 and 1000 results.
When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
<summary>
Sets the contents of one or more work items.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
<summary>
Specifies a work item. Valid values are the work item ID or an instance of
Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
<summary>
Specifies the title of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
<summary>
Specifies the description of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Area">
<summary>
Specifies the area path of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Iteration">
<summary>
Specifies the iteration path of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
<summary>
Specifies the user this work item is assigned to.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
<summary>
Specifies the state of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
<summary>
Specifies the reason (field 'System.Reason') of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
<summary>
Specifies the Value Area of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
<summary>
Specifies the board column of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
<summary>
Specifies whether the work item is in the sub-column Doing or Done in a board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
<summary>
Specifies the board lane of the work item
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
<summary>
Specifies the priority of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
<summary>
Specifies the tags of the work item.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
<summary>
Specifies the names and the corresponding values for the fields to be set
in the work item and whose values were not supplied in the other arguments
to this cmdlet.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
<summary>
Bypasses any rule validation when saving the work item. Use it with caution, as this
may leave the work item in an invalid state.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
<summary>
Gets one or more work item tags.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
<summary>
Specifies one or more tags to returns. Wildcards are supported.
When omitted, returns all existing tags in the given project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
<summary>
Includes tags not associated to any work items.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
<value></value>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
<summary>
Creates a new work item tag.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
<summary>
Specifies the name of the new tag.
</summary>
<value></value>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
<summary>
Deletes one or more work item tags.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
<summary>
Specifies one or more tags to delete. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
<summary>
HELP_PARAM_FORCE_REMOVE
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
<summary>
Renames a work item tag.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
<summary>
Specifies the name of the work item tag to rename.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.CmdletBase">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.CmdletBase.Provider">
<summary>
The service provider injected in this cmdlet instance
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.CmdletBase.CommandName">
<summary>
Returns the PowerShell command name of this cmdlet
</summary>
<value>The name of the this, as defined by the [Cmdlet] attribute. If the attribute is missing, returns the class name.</value>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.BeginProcessing">
<summary>
Performs initialization of the command execution, logs the supplied parameters and check whether the current
this is tagged as "Windows-only". If so, throws an exception
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.ProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Object[])">
<summary>
Executes a PowerShell script in the current session context
</summary>
<param name="script">A string containing a valid PS script</param>
<param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
<returns>The output of the script, if any</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Executes a PowerShell script in the current session context
</summary>
<param name="script">A string containing a valid PS script</param>
<param name="variables">Variables passed to the script</param>
<returns>The output of the script, if any</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.InvokeScript``1(System.String,System.Object[])">
<summary>
Executes a PowerShell script in the current session context
</summary>
<param name="script">A string containing a valid PS script</param>
<param name="arguments">Arguments passed to the script, represented as an array named <c>$args</c></param>
<typeparam name="T">The expected type of the objects outputted by the script</typeparam>
<returns>The output of the script, if any</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetServer(TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Returns a "server" Connection object built from the arguments currently supplied to this cmdlet
</summary>
<param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
<returns>An instance of Connection containing either a TfsConfigurationServer (Windows) or VssConnection (Core) object</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollection(TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Returns a "collection" Connection object built from the arguments currently supplied to this cmdlet
</summary>
<param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
<returns>An instance of Connection containing either a TfsTeamProjectCollection (Windows) or VssConnection (Core) object</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionAndProject(TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Returns a tuple containing a "collection" Connection and a TeamProject objects, built from the arguments currently supplied to this cmdlet
</summary>
<param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
<returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows)
or VssConnection (Core) object) and an instance of TeamProject</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCollectionProjectAndTeam(TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Returns a tuple containing a "collection" Connectionn, a TeamProject and a WebApiTeam objects, built from the arguments
currently supplied to this cmdlet
</summary>
<param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
<returns>A tuple consisting of an instance of Connection (containing either a TfsTeamProjectCollection (Windows)
or VssConnection (Core) object), an instance of TeamProject and an instance of WebApiTeam</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetClient``1(TfsCmdlets.ClientScope,TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Returns an API Client from the underlying connection
</summary>
<param name="scope">The scope from which to retrieve the client. Supported scopes are Server, Collection</param>
<param name="parameters">If specified, the values in this parameter will override the values originally supplied to the this</param>
<typeparam name="T">The type of the API client</typeparam>
<returns>An instance of the requested API client</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetService``1">
<summary>
Returns an instance of the specified service
</summary>
<typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
<returns>An instance of T, as provided by the current service provider</returns>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItem``1(System.Object)">
<summary>
Gets one item of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.TestItem``1(System.Object)">
<summary>
Checks if specified item exists
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetItems``1(System.Object)">
<summary>
Gets one or more items of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.NewItem``1(System.Object)">
<summary>
Creates a new item of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.RemoveItem``1(System.Object)">
<summary>
Removes an item of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.RenameItem``1(System.Object)">
<summary>
Renames an item of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.SetItem``1(System.Object)">
<summary>
Renames an item of the specified type
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.GetCurrentDirectory">
<summary>
Gets the current directory in PowerShell
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.ResolvePath(System.String,System.String)">
<summary>
Gets the current directory in PowerShell
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.WriteItems``1(System.Object)">
<summary>
Outputs items to PowerShell
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.Log(System.String,System.String,System.Boolean)">
<summary>
Log a message
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.LogParameters">
<summary>
Log the parameters passed to the cmdlet
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckWindowsOnly">
<summary>
Check whether the currently executing environment is Windows PowerShell
</summary>
<throws>For cmdlets which are "Windows-only", a call to this method will throw a
NotSupportedException when running on PowerShell Core.</throws>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.CheckRequiredVersion">
<summary>
Check whether the currently connected server is of a minimum version
</summary>
<throws>
For cmdlets which require a certain version of TFS, a call to
this method will throw a NotSupportedException when connected to
an older server.
</throws>
</member>
<member name="M:TfsCmdlets.Cmdlets.CmdletBase.DoProcessRecord">
<summary>
Performs execution of the command. Must be overriden in derived classes.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GetCmdletBase`1">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GetCmdletBase`1.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GetCmdletBase`1.DoProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
<summary>
Gets information from one or more branches in a remote Git repository.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
<summary>
Specifies the name of a branch in the supplied Git repository. Wildcards are supported.
When omitted, all branches are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
<summary>
Returns the default branch in the given repository.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
<summary>
HELP_PARAM_GIT_REPOSITORY
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
<summary>
Gets information from one or more Git repositories in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
<summary>
Specifies the name or ID of a Git repository. Wildcards are supported.
When omitted, all Git repositories in the supplied team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Git.GitRepositoryDataService.DoNewItem">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
<summary>
Creates a new Git repository in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
<summary>
Specifies the name of the new repository
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
<summary>
Gets the Git branch policy configuration of the given Git branches.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
<summary>
Specifies the policy type of the branch policy to return. Wildcards are supported.
When omitted, all branch policies defined for the given branch are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
<summary>
Specifies the name of the branch to query for branch policies. When omitted,
the default branch in the given repository is queried.
</summary>
</member>
<member name="F:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
<summary>
HELP_PARAM_GIT_REPOSITORY
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
<summary>
Gets one or more Git branch policies supported by the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
<summary>
Specifies the display name or ID of the policy type. Wildcards are supported.
When omitted, all policy types supported by the given team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
<summary>
Deletes one or more Git repositories from a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
<summary>
Specifies the repository to be deleted. Value can be the name or ID of a Git repository,
as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
repository.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
<summary>
HELP_PARAM_FORCE_REMOVE
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
<summary>
Renames a Git repository in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
<summary>
Specifies the repository to be renamed. Value can be the name or ID of a Git repository,
as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
repository.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList">
<summary>
Exports the contents of one or more Global Lists to XML.
</summary>
<remarks>
This cmdlets generates an XML containing one or more global lists and their respective items,
in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist"
</remarks>
<example>
<code>Export-TfsGlobalList | Out-File "gl.xml"</code>
<para>Exports all global lists in the current project collection to a file called gl.xml.</para>
</example>
<example>
<code>Export-TfsGlobalList -Name "Builds - *"</code>
<para>Exports all build-related global lists (with names starting with "Build - ") and
return the resulting XML document.</para>
</example>
<notes>
To export or list global lists, you must be a member of the Project Collection Valid Users
group or have your View collection-level information permission set to Allow.
</notes>
<input>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</input>
<input>System.String</input>
<input>System.Uri</input>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.GlobalList">
<summary>
Specifies the name of the global list to be exported. Wildcards are supported.
When omitted, it defaults to all global lists in the supplied team project collection.
When using wilcards, a single XML document will be producer containing all matching
global lists.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.ExportGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList">
<summary>
Gets the contents of one or more Global Lists.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.GlobalList">
<summary>
Specifies the name of the global list. Wildcards are supported.
When omitted, defaults to all global lists in the supplied team project collection.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.GetGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList">
<summary>
Imports one or more Global Lists from an XML document
</summary>
<remarks>
This cmdletsimports an XML containing one or more global lists and their respective items,
in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist"
</remarks>
<example>
<code>Get-Content gl.xml | Import-GlobalList</code>
<para>Imports the contents of an XML document called gl.xml to the current project collection</para>
</example>
<notes>
To import global lists, you must be a member of the Project Collection Administrators security group.
</notes>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.InputObject">
<summary>
XML document object containing one or more global list definitions.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Force">
<summary>
Allows the cmdlet to import a global list that already exists.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.ImportGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList">
<summary>
Creates a new Global List.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.GlobalList">
<summary>
Specifies the name of the new global list.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Items">
<summary>
Specifies the contents (items) of the new global list.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Force">
<summary>
Allows the cmdlet to overwrite an existing global list.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.NewGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList">
<summary>
Deletes one or more Global Lists.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.GlobalList">
<summary>
Specifies the name of global list to be deleted. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.RemoveGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList">
<summary>
Changes either the name or the contents of a Global List.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.GlobalList">
<summary>
Specifies the name of the global lsit to be renamed.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.NewName">
<summary>
HELP_PARAM_NEWNAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.GlobalList.RenameGlobalList.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList">
<summary>
Changes the contents of a Global List.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.GlobalList">
<summary>
Specifies the name of the global list to be changed.
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Add">
<summary>
Specifies a list of items to be added to the global list.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Remove">
<summary>
Specifies a list of items to be removed from the global list.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Force">
<summary>
Creates a new list if the specified one does not exist.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.GlobalList.SetGlobalList.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
<summary>
Gets one or more identities that represents either users or groups in Azure DevOps.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Identity">
<summary>
Specifies the user or group to be retrieved. Supported values are:
User/group name, email, or ID
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.QueryMembership">
<summary>
Specifies how group membership information should be processed
when the returned identity is a group. "Direct" fetches direct members (both users
and groups) of the group. "Expanded" expands contained groups recursively and returns
their contained users. "None" is the fastest option as it fetches no membership
information. When omitted, defaults to Direct.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Current">
<summary>
Returns an identity representing the user currently logged in to
the Azure DevOps / TFS instance
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Identity.GetIdentity.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
<summary>
Adds group members to an Azure DevOps group.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
<summary>
Specifies the member (user or group) to add to the given group.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
<summary>
Specifies the group to which the member is added.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
<summary>
Gets the members of a Azure DevOps group
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
<summary>
Specifies the group fom which to get its members.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
<summary>
Specifies the member (user or group) to get from the given group. Wildcards are supported.
When omitted, all group members are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
<summary>
Recursively expands all member groups, returning the users and/or groups contained in them
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
<summary>
Removes a member from an Azure DevOps group.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
<summary>
Specifies the member (user or group) to remove from the given group.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
<summary>
Specifies the group from which the member is removed.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.NewCmdletBase`1">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.NewCmdletBase`1.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.NewCmdletBase`1.DoProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder">
<summary>
Gets one or more build/pipeline definition folders in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Folder">
<summary>
Specifies the folder path. Wildcards are supported.
When omitted, all build/pipeline folders in the supplied team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.QueryOrder">
<summary>
Specifies the query order. When omitted, defaults to None.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
<value></value>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
<value></value>
</member>
<member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.GetBuildDefinitionFolder.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder">
<summary>
Creates a new build/pipeline definition folder
</summary>
<remarks>
Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of
the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
child folders.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Folder">
<summary>
Specifies the path of the new pipeline/build folder, including its name,
separated by backslashes (\).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Description">
<summary>
Specifies the description of the new build/pipeline folder.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.NewBuildDefinitionFolder.DoProcessRecord">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder">
<summary>
Deletes one or more build/pipeline definition folders.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Folder">
<summary>
Specifies the path of the pipeline/build folder to delete, including its name,
separated by backslashes (\). Wildcards are supperted.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Recurse">
<summary>
Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Force">
<summary>
Forces the exclusion of folders containing build/pipelines definitions. When omitted,
only empty folders can be deleted.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Pipeline.Build.RemoveBuildDefinitionFolder.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
<summary>
Gets information from one or more release definitions in a team project.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
<summary>
Gets one or more Release/pipeline definition folders in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
<summary>
Specifies the folder path. Wildcards are supported.
When omitted, all Release/pipeline folders in the supplied team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
<summary>
Specifies the query order. When omitted, defaults to None.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
<summary>
Creates a new release definition folder.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
<summary>
Specifies the folder path. Wildcards are supported.
When omitted, all Release/pipeline folders in the supplied team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
<summary>
Specifies the description of the new build/pipeline folder.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
<summary>
Deletes one or more release definition folders.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
<summary>
Specifies the path of the release folder to delete. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
<summary>
Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
<summary>
Forces the exclusion of folders containing release definitions definitions. When omitted,
only empty folders can be deleted.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild">
<summary>
Queues a XAML Build.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Pipeline.XamlBuild.StartXamlBuild.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.RemoveCmdletBase`1">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.RemoveCmdletBase`1.DoProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.RenameCmdletBase`1">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.NewName">
<summary>
HELP_PARAM_NEWNAME
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RenameCmdletBase`1.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.RenameCmdletBase`1.DoProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
<summary>
Gets an Azure DevOps HTTP Client object instance.
</summary>
<remarks>
Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core,
Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to
many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient
that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication
information supplied by their parent connection object and can be used as a more convenient mechanism
to issue API calls.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
<summary>
Specifies the full type name (optionally including its assembly name) of the HTTP Client
class to return.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
<summary>
HELP_PARAM_SERVER
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.RestApi.GetRestClient.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
<summary>
Invoke an Azure DevOps REST API.
</summary>
<remarks>
Invoke-TfsRestApi can automatically parse an example URL from
https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens
(such as {organization}, {project} and {team}) as long as collection / project / team
information are available via either the their respective arguments in this command or the
corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted
from the supplied example, when available.
</remarks>
<example>
<code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
<para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
</example>
<example>
<code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
<para>Calls the API described by an example extracted from the docs.microsoft.com web site.
HTTP method, host name and API version are all set based on the supplied values;
Tokens {organization}, {project} and {team} are properly replaced with the corresponding
values provided by the current connection context (via previous calls to
Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
</example>
<example>
<code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
<para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
<summary>
Specifies the path of the REST API to call. Tipically it is the portion of the URL after
the name of the collection/organization, i.e. in the URL
https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is
"/_apis/projects".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
<summary>
Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
<summary>
Specifies the request body to send to the API endpoint. Tipically contains the JSON payload
required by the API.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
<summary>
Specifies the request body content type to send to the API. When omitted, defaults to
"application/json".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
<summary>
Specifies the response body content type returned by the API. When omitted, defaults to
"application/json".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
<summary>
Specifies a hashtable with additional HTTP headers to send to the API endpoint.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
<summary>
Specifies a hashtable with additional query parameters to send to the API endpoint.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
<summary>
Specifies the desired API version. When omitted, defaults to "4.1".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
<summary>
Specifies an alternate host name for APIs not hosted in "dev.azure.com",
e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
<summary>
Returns the API response as an unparsed string. If omitted, JSON responses will be
parsed, converted and returned as objects (via ConvertFrom-Json).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
<summary>
Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API.
The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
<summary>
Gets one or more service hook consumers.
</summary>
<remarks>
Service hook consumers are the services that can consume (receive) notifications triggered by
Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams,
Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get
the ID of the desired one to be able to manage service hook subscriptions.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
<summary>
Specifies the name or ID of the service hook consumer to return. Wildcards are supported.
When omitted, all service hook consumers registered in the given project collection/organization
are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
<value></value>
</member>
<member name="M:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
<summary>
Gets the notification history for a given service hook subscription
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
<summary>
Specifies the subscription to get the notification history from.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
<summary>
Specifies the beginning of a date interval to filter notifications on.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
<summary>
Specifies the end of a date interval to filter notifications on.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
<summary>
Specifies the notification status to filter on.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
<summary>
Gets one or more service hook publishers.
</summary>
<remarks>
Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by
event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get
the ID of the desired one to be able to manage service hook subscriptions.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
<summary>
Specifies the name or ID of the service hook publisher to return. Wildcards are supported.
When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization /
TFS collection.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
<summary>
Gets one or more service hook subscriptions
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
<summary>
Specifies the name ("action description") of the subscription. Wildcards are supported.
When omitted, returns all service hook subscriptions in the given
team project collection.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
<summary>
Specifies the name or ID of the service hook publisher to filter subscriptions by.
When omitted, returns all subscriptions regardless of their publishers.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
<summary>
Specifies the name or ID of the service hook consumer to filter subscriptions by.
When omitted, returns all subscriptions regardless of their consumers.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
<summary>
Specifies the event type to filter subscriptions by.
When omitted, returns all subscriptions regardless of their event types.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.SetCmdletBase`1">
<summary>
Abstract class from which and TfsCmdlets cmdlets derive
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.SetCmdletBase`1.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.SetCmdletBase`1.DoProcessRecord">
<summary>
Performs execution of the command.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
<summary>
Activates the Azure DevOps Shell
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
<summary>
Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
<summary>
Do not clear the host screen when activating the Azure DevOps Shell. When set, the
prompt is enabled without clearing the screen.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
<summary>
Do not show the version banner when activating the Azure DevOps Shell.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Shell.EnterShell.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
<summary>
Deactivates the Azure DevOps Shell
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Shell.ExitShell.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
<summary>
Gets information about one or more team projects.
</summary>
<remarks>
The Get-TfsTeamProject cmdlets gets one or more Team Project objects
(an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied
Team Project Collection.
</remarks>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
<summary>
Specifies the name of a Team Project. Wildcards are supported.
When omitted, all team projects in the supplied collection are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
<summary>
Lists deleted team projects present in the "recycle bin"
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
<summary>
Returns the team project specified in the last call to Connect-TfsTeamProject
(i.e. the "current" team project)
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
<summary>
Creates a new team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
<summary>
Specifies the name of the new team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
<summary>
Specifies a description for the new team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
<summary>
Specifies the source control type to be provisioned initially with the team project.
Supported types are "Git" and "Tfvc".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
<summary>
Specifies the process template on which the new team project is based.
Supported values are the process name or an instance of the
Microsoft.TeamFoundation.Core.WebApi.Process class.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
<summary>
Deletes one or more team projects.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
<summary>
Specifies the name of a Team Project to delete. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
<summary>
Deletes the team project permanently. When omitted, the team project is moved to a
"recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
<summary>
HELP_PARAM_FORCE_REMOVE
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
<summary>
Renames a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
<summary>
Specifies the name of a Team Project to rename.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
<summary>
Forces the renaming of the team project. When omitted, the command prompts for
confirmation prior to renaming the team project.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
<summary>
Undeletes one or more team projects.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
<summary>
Specifies the name of the Team Project to undelete.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
<summary>
Gets information about one or more backlog levels of a given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
<summary>
Specifies one or more backlog level configurations to be returned. Valid values
are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the
backlog level to return. Wilcards are supported. When omitted, returns all backlogs
levels of the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
<summary>
Gets one or more team boards.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
<summary>
Specifies the board name. Wildcards are supported. When omitted, returns all boards in
the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
<summary>
Gets one or more team board card rules.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
<summary>
Specifies the rule name. Wildcards are supported.
When omitted, returns all card rules in the given board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
<summary>
Specifies the kind of rule to return. When omitted, returns
both rule types (card color and tag color).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
<summary>
Specifies the board name.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
<summary>
Set the card rule settings of the specified backlog board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Board">
<summary>
Specifies the board name. Wildcards are supported. When omitted, returns card rules
for all boards in the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
<summary>
Gets information about one or more teams.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
<summary>
Specifies the team to return. Accepted values are its name, its ID, or a
Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
When omitted, all teams in the given team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.QueryMembership">
<summary>
Get team members (fills the Members property with a list of
Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
When omitted, only basic team information (such as name, description and ID) are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
<summary>
Gets the team's backlog settings (fills the Settings property with a
Microsoft.TeamFoundation.Work.WebApi.TeamSetting object)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
<summary>
Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
<summary>
Returns the default team in the given team project.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.GetTeam.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRemoveItem">
<summary>
Performs execution of the command
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamDataService.DoRenameItem">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
<summary>
Creates a new team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
<summary>
Specifies the name of the new team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
<summary>
Specifies the team's default area path (or "team field"). The default area path is assigned
automatically to all work items created in a team's backlog and/or board. When omitted,
an area path may still be associated to this team depending on whether NoAutomaticAreaPath
is set
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
<summary>
Do not associate an area path automatically to the new team. When omitted, an area path
is created (if needed) and then is set as the default area path / team field
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
<summary>
Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
<summary>
Specifies the backlog iteration paths that are associated with this team. Provide a list
of iteration paths in the form '/path1/path2'.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
<summary>
Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
<summary>
Do not associate an iteration path automatically to the new team. When omitted,
an iteration path is created (if needed) and then is set as the default
backlog iteration
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
<summary>
Specifies a description of the new team.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
<summary>
Deletes a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
<summary>
Renames a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
<summary>
Changes the details of a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
<summary>
Specifies a new description
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
<summary>
Specifies the team's default area path (or "team field"). The default area path is assigned
automatically to all work items created in a team's backlog and/or board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
<summary>
Specifies the backlog area paths that are associated with this team. Provide a list
of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all
child area path will be included recursively. Otherwise, only the area itself (without
its children) will be included.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
<summary>
Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
<summary>
Specifies the backlog iteration paths that are associated with this team. Provide a list
of iteration paths in the form '/path1/path2'.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
<summary>
Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
</summary>
</member>
<member name="F:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
<summary>
Specifies the team's Working Days. When omitted, defaults to Monday thru Friday
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
<summary>
Specifies how bugs should behave when added to a board.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
<summary>
Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
<summary>
Sets the supplied team as the default team project team.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
<summary>
Adds a new administrator to a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
<summary>
Specifies the administrator to add to the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
<summary>
Gets the administrators of a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
<summary>
Specifies the administrator to get from the given team. Wildcards are supported.
When omitted, all administrators are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
<summary>
Removes an administrator from a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
<summary>
Specifies the administrator to remove from the team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
<summary>
HELP_PARAM_TEAM
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.TeamAdmin">
<summary>
Represents a Team Adminstrator
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
<summary>
Adds new members to a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
<summary>
Specifies the member (user or group) to add to the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
<summary>
Specifies the team to which the member is added.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
<summary>
Gets the members of a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
<summary>
Specifies the team from which to get its members.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
<summary>
Specifies the member (user or group) to get from the given team. Wildcards are supported.
When omitted, all team members are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
<summary>
Recursively expands all member groups, returning the users and/or groups contained in them
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
<summary>
Removes a member from a team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
<summary>
Specifies the member (user or group) to remove from the given team.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
<summary>
Specifies the team from which the member is removed.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
<summary>
Clone a test plan and, optionally, its test suites and test cases.
</summary>
<remarks>
<para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
<para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
<para> * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
<para> * Shared steps referenced by cloned test cases;</para>
<para> * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
<para> * Action Recordings linked from a cloned test case;</para>
<para> * Links and Attachments;</para>
<para> * Test configuration.</para>
<para>The items below are only copied when using -CloneRequirements:</para>
<para> * Requirements-based suites;</para>
<para> * Requirements work items (product backlog items or user stories);</para>
<para> * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
</remarks>
<example>
<code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
</example>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
<summary>
Specifies the name of the test plan to clone.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
<summary>
Specifies the name of the new test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
<summary>
Specifies the name of the team project where the test plan will be cloned into.
When omitted, the test plan is cloned into the same team project of the original
test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
<summary>
Specifies the area path where the test plan will be cloned into.
When omitted, the test plan is cloned into the same area path of the original
test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
<summary>
Specifies the iteration path where the test plan will be cloned into.
When omitted, the test plan is cloned into the same iteration path of
the original test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
<summary>
Clones all the referenced test cases. When omitted, only the test plan is
cloned; the original test cases are only referenced in the new plan, not duplicated.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
<summary>
Clone all test suites recursively.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
<summary>
Copies ancestor hierarchy.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
<summary>
Clones requirements referenced by the test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
<summary>
Specifies the name of the workitem type of the clone.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
<summary>
Clones only the specified suites.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
<summary>
Specifies the comment of the Related link that is created ato point
to the original test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
<summary>
HELP_PARAM_COLLECTION
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
<summary>
HELP_PARAM_PASSTHRU
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DoProcessRecord">
<summary>
Performs execution of the command
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
<summary>
Gets the contents of one or more test plans.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
<summary>
Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
<summary>
Gets only the plans owned by the specified user.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
<summary>
Get only basic properties of the test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
<summary>
Get only the active plans.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
<value></value>
</member>
<member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
<summary>
Creates a new test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
<summary>
Specifies the test plan name.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
<summary>
Specifies the owner of the new test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
<summary>
Specifies the owner of the new test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
<summary>
Specifies the start date of the test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
<summary>
Specifies the end date of the test plan.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
<summary>
Specifies the owner of the new test plan.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
<summary>
Deletes one or more test plans.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
<summary>
Specifies one or more test plans to delete. Wildcards are supported.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
<summary>
Forces the deletion of test plans with test suites and/or test cases.
When omitted, only empty test plans can be deleted.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
<summary>
Renames a test plans.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
<summary>
Specifies the test plan name.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
<summary>
Gets information from one or more Wiki repositories in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
<summary>
Specifies the name or ID of a Wiki repository. Wildcards are supported.
When omitted, all Wiki repositories in the supplied team project are returned.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
<summary>
Returns only provisioned ("project") Wikis. When omitted, returns all Wikis
(both Project wikis and Code wikis).
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
<summary>
HELP_PARAM_PROJECT
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
<summary>
Creates a new Wiki repository in a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
<summary>
Specifies the name of the new Wiki
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
<summary>
Specifies the name or ID of the Git repository to publish as a Wiki
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
<summary>
Creates a provisioned ("project") Wiki in the specified Team Project.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
<summary>
Deletes one or more Git repositories from a team project.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
<summary>
Specifies the Wiki to be deleted.
</summary>
</member>
<member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
<summary>
Deletes the provisioned ("project") Wiki of the specified Team Project.
</summary>
</member>
<member name="T:TfsCmdlets.Cmdlets.ParameterDictionary">
<summary>
Represents a collection of cmdlet arguments
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor">
<summary>
Creates an empty dictionary
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object)">
<summary>
Creates a new dictionary, copying the properties of supplied object
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.#ctor(System.Object,System.Object)">
<summary>
Creates a new dictionary, copying the properties of supplied object and merging it
with another.
</summary>
<see cref="M:TfsCmdlets.Cmdlets.ParameterDictionary.Merge(TfsCmdlets.Cmdlets.ParameterDictionary)"/>
</member>
<member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Get``1(System.String,``0)">
<summary>
Returns the value of a property. When the property is missing, returns an
optionally supplied default value.
</summary>
</member>
<member name="M:TfsCmdlets.Cmdlets.ParameterDictionary.Merge(TfsCmdlets.Cmdlets.ParameterDictionary)">
<summary>
Merges this instance with another one. Only parameters present in the other collection
that are also missing from this one are merged, i.e conflicting properties are skipped.
</summary>
</member>
<member name="T:TfsCmdlets.Models.Connection">
<summary>
Encapsulates the platform-specific connection object
</summary>
</member>
<member name="M:TfsCmdlets.Models.Connection.op_Implicit(TfsCmdlets.Models.Connection)~Microsoft.TeamFoundation.Client.TfsConnection">
<summary>
Converts a Connection object to a TfsConnection-derived object
</summary>
</member>
<member name="M:TfsCmdlets.Models.Connection.op_Implicit(Microsoft.TeamFoundation.Client.TfsConnection)~TfsCmdlets.Models.Connection">
<summary>
Converts a TfsConnection-derived object to a Connection object
</summary>
</member>
<member name="M:TfsCmdlets.Models.Connection.GetClientFromType(System.Type)">
<summary>
Gets a client of the given type
</summary>
</member>
<member name="T:TfsCmdlets.Models.Identity">
<summary>
Encapsulates the platform-specific identity object
</summary>
</member>
<member name="T:TfsCmdlets.Models.BacklogLevelConfiguration">
<summary>
Encapsulates the backlog level configuration object
</summary>
</member>
<member name="T:TfsCmdlets.Models.Board">
<summary>
Encapsulates the team board object
</summary>
</member>
<member name="T:TfsCmdlets.Models.CardRule">
<summary>
Azure Boards card rule
</summary>
</member>
<member name="M:TfsCmdlets.Models.CardRule.#ctor(Microsoft.TeamFoundation.Work.WebApi.Rule,Microsoft.TeamFoundation.Work.WebApi.Board)">
<summary>
Creates a new instance from the given object
</summary>
<param name="original">The original object to copy settings from</param>
<param name="board">The board to apply this rule to</param>
</member>
<member name="P:TfsCmdlets.Models.CardRule.Board">
<summary>
The board linked to this rule
</summary>
</member>
<member name="P:TfsCmdlets.Models.CardRule.BoardName">
<summary>
The name of the board linked to this rule
</summary>
</member>
<member name="P:TfsCmdlets.Models.CardRule.RuleType">
<summary>
The type of the rule
</summary>
</member>
<member name="T:TfsCmdlets.Models.ClassificationNode">
<summary>
Encapsulates the area/iteration node object
</summary>
</member>
<member name="P:TfsCmdlets.Models.ClassificationNode.RelativePath">
<summary>
Get a node's relative path
</summary>
</member>
<member name="M:TfsCmdlets.Models.ClassificationNode.FixNodePath">
<summary>
Fill a missing node path. Older versions of the REST API don't populate the Path property.
</summary>
</member>
<member name="T:TfsCmdlets.Models.GlobalList">
<summary>
Represents a Team Foundation Server global lists
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(TfsCmdlets.Models.GlobalList)~System.Xml.Linq.XElement">
<summary>
Converts a GlobalList to an XElement
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.op_Implicit(System.Xml.Linq.XElement)~TfsCmdlets.Models.GlobalList">
<summary>
Converts an XElement to a GlobalList
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.#ctor">
<summary>
Creates an empty instance of GlobalList
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new instance from the given name and items
</summary>
<param name="name">The name of the global list</param>
<param name="items">The items (content) of the global list</param>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.#ctor(System.Xml.Linq.XElement)">
<summary>
Creates an instance of GlobalList from an XElement containing a <GLOBALLIST> element
</summary>
<param name="el">An XML element containing a global list definition</param>
<returns>An instance of GlobalList</returns>
</member>
<member name="P:TfsCmdlets.Models.GlobalList.Name">
<summary>
Gets the name of the global list.
</summary>
</member>
<member name="P:TfsCmdlets.Models.GlobalList.Items">
<summary>
Gets the contents (items) of the global list.
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.ToString">
<inheritdoc/>
</member>
<member name="M:TfsCmdlets.Models.GlobalList.ToXml">
<summary>
Returns this global list in its original XML representation
</summary>
<returns>A XElement object representing a <GLOBALLIST> element</returns>
</member>
<member name="T:TfsCmdlets.Models.GlobalListCollection">
<summary>
Represents a collection of global lists.
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(TfsCmdlets.Models.GlobalListCollection)~System.Xml.Linq.XDocument">
<summary>
Converts a collection of global lists to a well-formed <gl:GLOBALLISTS> document
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.op_Implicit(System.Xml.Linq.XDocument)~TfsCmdlets.Models.GlobalListCollection">
<summary>
Converts a well-formed <gl:GLOBALLISTS> document to a collection of global lists
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor">
<summary>
Creates an empty collection
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Collections.Generic.IEnumerable{TfsCmdlets.Models.GlobalList})">
<summary>
Creates a collection and adds the given global lists to it
</summary>
<param name="items">Collection of global lists to add to this instance</param>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(TfsCmdlets.Models.GlobalList)">
<summary>
Creates a collection and adds the given global list to it
</summary>
<param name="item">A single global list to add to this instance</param>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.String)">
<summary>
Creates a collection from the given <gl:GLOBALLISTS> document
</summary>
<param name="xml">A well-formed <gl:GLOBALLISTS> document</param>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.#ctor(System.Xml.Linq.XDocument)">
<summary>
Creates a collection from the given <gl:GLOBALLISTS> document
</summary>
<param name="doc">A well-formed <gl:GLOBALLISTS> document</param>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.ToString">
<summary>
Returns the XML representation of the contents of this collection, in the form of a
<gl:GLOBALLISTS> document
</summary>
</member>
<member name="M:TfsCmdlets.Models.GlobalListCollection.ToXml">
<summary>
Returns the XML representation of the contents of this collection, in the form of a
<gl:GLOBALLISTS> document, as a XDocument object
</summary>
</member>
<member name="T:TfsCmdlets.Models.Team">
<summary>
Encapsulates a WebApiTeam object
</summary>
</member>
<member name="M:TfsCmdlets.Models.Team.op_Implicit(TfsCmdlets.Models.Team)~Microsoft.TeamFoundation.Core.WebApi.WebApiTeam">
<summary>
Converts to WebApiTeam
</summary>
</member>
<member name="M:TfsCmdlets.Models.Team.op_Implicit(Microsoft.TeamFoundation.Core.WebApi.WebApiTeam)~TfsCmdlets.Models.Team">
<summary>
Converts from WebApiTeam
</summary>
</member>
<member name="M:TfsCmdlets.Services.BaseService.GetService``1">
<summary>
Returns an instance of the specified service
</summary>
<typeparam name="T">The type of the requested service.static Must derive from IService</typeparam>
<returns>An instance of T, as provided by the current service provider</returns>
</member>
<member name="T:TfsCmdlets.TfsComponent">
<summary>
Indicates a TFS component
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.BaseInstallation">
<summary>
The root folder of a TFS installation
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.ApplicationTier">
<summary>
The "ApplicationTier" folder of a TFS installation
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.SharePointExtensions">
<summary>
The "SharePointExtensions" folder of a TFS installation
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.TeamBuild">
<summary>
The "TeamBuild" folder of a TFS installation
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.Tools">
<summary>
The "Tools" folder of a TFS installation
</summary>
</member>
<member name="F:TfsCmdlets.TfsComponent.VersionControlProxy">
<summary>
The "VersionControlProxy" folder of a TFS installation
</summary>
</member>
<member name="T:TfsCmdlets.ClientScope">
<summary>
Client scope for Invoke-RestApi
</summary>
</member>
<member name="F:TfsCmdlets.ClientScope.Server">
<summary>
Server-level scope
</summary>
</member>
<member name="F:TfsCmdlets.ClientScope.Collection">
<summary>
Collection-level scope
</summary>
</member>
<member name="T:TfsCmdlets.CardRuleType">
<summary>
Board card rule
</summary>
</member>
<member name="F:TfsCmdlets.CardRuleType.CardColor">
<summary>
Card color rule type
</summary>
</member>
<member name="F:TfsCmdlets.CardRuleType.TagColor">
<summary>
Tag color rule type
</summary>
</member>
<member name="F:TfsCmdlets.CardRuleType.All">
<summary>
All card rules (card and tag color)
</summary>
</member>
<member name="T:TfsCmdlets.RegistryScope">
<summary>
TFS Registry scope
</summary>
</member>
<member name="F:TfsCmdlets.RegistryScope.User">
<summary>
User
</summary>
</member>
<member name="F:TfsCmdlets.RegistryScope.Collection">
<summary>
Collection
</summary>
</member>
<member name="F:TfsCmdlets.RegistryScope.Server">
<summary>
Server
</summary>
</member>
<member name="T:TfsCmdlets.Extensions.DocumentExtensions">
<summary>
Linq to XML extension methods
</summary>
</member>
<member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXmlDocument(System.Xml.Linq.XDocument)">
<summary>
Converts a LINQ-based XDocument to a "legacy" XmlDocument
</summary>
<param name="xDocument">The document to be converted</param>
<returns>The converted document</returns>
</member>
<member name="M:TfsCmdlets.Extensions.DocumentExtensions.ToXDocument(System.Xml.XmlDocument)">
<summary>
Converts a "legacy" XmlDocument to a LINQ-based XDocument
</summary>
<param name="xmlDocument">The document to be converted</param>
<returns>The converted document</returns>
</member>
<member name="T:TfsCmdlets.HttpClient.GenericHttpClient">
<summary>
Generic HTTP Client, used by the Invoke-TfsRestApi cmdlet
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
<summary>
Creates a new instance of the GenericHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
<summary>
Creates a new instance of the GenericHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
<summary>
Creates a new instance of the GenericHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
<summary>
Creates a new instance of the GenericHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
<summary>
Creates a new instance of the GenericHttpClient class
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.GenericHttpClient.Uri">
<summary>
Gets the API URL
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.UseHost(System.String)">
<summary>
Specifies an alternate host name for APIs not hosted in "dev.azure.com"
</summary>
<param name="host">An alternate host, such as "vsaex.dev.azure.com" or "vssps.dev.azure.com".</param>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get``1(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Sends a GET request to an Azure DevOps API
</summary>
<typeparam name="T">The typed model (JSON proxy class) corresponding to the API result</typeparam>
<param name="apiPath">The path to the API, relative to the collection/organization URL</param>
<param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
<param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
<param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
<param name="mediaType">The MIME content type of the response</param>
<param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
<returns>The response of the API, converted to the model type T</returns>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Get(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Sends a GET request to an Azure DevOps API
</summary>
<param name="apiPath">The path to the API, relative to the collection/organization URL</param>
<param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
<param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
<param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
<param name="mediaType">The MIME content type of the response</param>
<param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
<returns>The response of the API as an HttpResponseMessage object</returns>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post``2(System.String,``0,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Sends a POST request to an Azure DevOps API
</summary>
<typeparam name="T">The typed model (JSON proxy class) corresponding to the API parameter (content) object</typeparam>
<typeparam name="TResult">The typed model (JSON proxy class) corresponding to the API result</typeparam>
<param name="apiPath">The path to the API, relative to the collection/organization URL</param>
<param name="value">The API parameters sent as the request body</param>
<param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
<param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
<param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
<param name="mediaType">The MIME content type of the response</param>
<param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
<returns>The response of the API as an HttpResponseMessage object</returns>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.Post(System.String,System.Net.Http.HttpContent,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Sends a POST request to an Azure DevOps API
</summary>
<param name="apiPath">The path to the API, relative to the collection/organization URL</param>
<param name="content">The API parameters sent as the request body</param>
<param name="apiVersion">The version of the requested API (e.g. "5.1")</param>
<param name="additionalHeaders">Any additional HTTP headers that must be sent along the request</param>
<param name="queryParameters">Any query parameters ("query string") that are part of the request</param>
<param name="mediaType">The MIME content type of the response</param>
<param name="userState">User-defined, arbitrary data sent as a "userstate" HTTP header</param>
<returns>The response of the API as an HttpResponseMessage object</returns>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Invokes a REST API asynchronously
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.InvokeAsync``1(System.Net.Http.HttpMethod,System.String,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Invokes a REST API asynchronously
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.GenericHttpClient.PostForm``1(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean,System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Object)">
<summary>
Invokes a REST API asynchronously
</summary>
</member>
<member name="T:TfsCmdlets.HttpClient.TeamAdminHttpClient">
<summary>
Custom HTTP Client to handle team administrator management
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.Guid,System.Guid,System.Guid)">
<summary>
Adds an administrator to a team
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.AddTeamAdmin(System.String,System.Guid,System.Guid)">
<summary>
Adds an administrator to a team
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.Guid,System.Guid,System.Guid)">
<summary>
Removes an administrator from a team
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.RemoveTeamAdmin(System.String,System.Guid,System.Guid)">
<summary>
Removes an administrator from a team
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials)">
<summary>
Creates a new instance of the TeamAdminHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings)">
<summary>
Creates a new instance of the TeamAdminHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,System.Net.Http.DelegatingHandler[])">
<summary>
Creates a new instance of the TeamAdminHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,System.Net.Http.HttpMessageHandler,System.Boolean)">
<summary>
Creates a new instance of the TeamAdminHttpClient class
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdminHttpClient.#ctor(System.Uri,Microsoft.VisualStudio.Services.Common.VssCredentials,Microsoft.VisualStudio.Services.Common.VssHttpRequestSettings,System.Net.Http.DelegatingHandler[])">
<summary>
Creates a new instance of the TeamAdminHttpClient class
</summary>
</member>
<member name="T:TfsCmdlets.HttpClient.TeamAdmins">
<summary>
Represents a collection of team administrators
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmins.Admins">
<summary>
Collection of team administrators
</summary>
</member>
<member name="T:TfsCmdlets.HttpClient.TeamAdmin">
<summary>
Represents a team administrator
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.IdentityType">
<summary>
Identity Type
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.FriendlyDisplayName">
<summary>
Friendly Display Name
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.DisplayName">
<summary>
Display Name
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.SubHeader">
<summary>
Sub-header
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.TeamFoundationId">
<summary>
Team Foundation Id
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.EntityId">
<summary>
Entity Id
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.Errors">
<summary>
List of Errors
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.Warnings">
<summary>
List of Warnings
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.Domain">
<summary>
User Domain
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.AccountName">
<summary>
User Account Name
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.IsWindowsUser">
<summary>
Is Windows User
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.TeamAdmin.MailAddress">
<summary>
Email Address
</summary>
</member>
<member name="M:TfsCmdlets.HttpClient.TeamAdmin.ToString">
<inheritdoc/>
</member>
<member name="T:TfsCmdlets.HttpClient.AddTeamAdminRequestData">
<summary>
The request body to submit to the "Add Admin" service
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.Team">
<summary>
TeamId
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.NewUsers">
<summary>
List of New Users
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.AddTeamAdminRequestData.ExistingUsers">
<summary>
List of Existing Users
</summary>
</member>
<member name="T:TfsCmdlets.HttpClient.RemoveTeamAdminResult">
<summary>
The request body to submit to the "Remove Admin" service
</summary>
</member>
<member name="P:TfsCmdlets.HttpClient.RemoveTeamAdminResult.Success">
<summary>
Indicates the success of the operation
</summary>
</member>
<member name="T:TfsCmdlets.ModuleInitializer">
<summary>
PowerShell module initializer
</summary>
</member>
<member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
<summary>
Method called automatically by PowerShell upon module load/start
</summary>
</member>
<member name="T:TfsCmdlets.Util.LazyProperty">
<summary>
Supports the creation of lazy-loaded ScriptProperty properties
</summary>
</member>
<member name="M:TfsCmdlets.Util.LazyProperty.Get(System.Management.Automation.PSObject,System.String,System.Management.Automation.ScriptBlock)">
<summary>
Gets the value of the specified lazy-loaded property
</summary>
<param name="obj">The source PSObject that owns the property</param>
<param name="property">The property name</param>
<param name="sb">The scriptblock that is evaluated when the property
needs to be loaded. It must return the value to be assigned to the property.</param>
<returns>The value of the property</returns>
</member>
<member name="T:TfsCmdlets.Util.ServerVersion">
<summary>
Represents the version of a Team Foundation / Azure DevOps Server installation, and/or
the currently deployed version of Azure DevOps in an Azure DevOps Services organization
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.Version">
<summary>
Gets the "four-part" version of TFS / Azure DevOps
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.LongVersion">
<summary>
Gets the "long" version of TFS / Azure DevOps
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.FriendlyVersion">
<summary>
Gets the "friendly" version of TFS / Azure DevOps
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.IsHosted">
<summary>
Indicates whether it's a "hosted" (Azure DevOps Services) deployment or not
(TFS/Azure DevOps Server)
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.Update">
<summary>
Gets the version number of the Update installed on a server, or number of the sprint
currently deployed in an Azure DevOps Services organization
</summary>
</member>
<member name="P:TfsCmdlets.Util.ServerVersion.YearVersion">
<summary>
Gets the version of the server as its corresponding year (e.g. 2019 for version 17.*)
</summary>
</member>
</members>
</doc>
md5: 6A8A38EF71310E10CC3B5C6E42D6EB63 | sha1: ECA060CC36679C8751167078D6ECA18130024992 | sha256: ACFA70D93ADD3D250C6813953D3CAF13189CB785F093F7CB7F93E75EFC3D82F0 | sha512: 77534AF570C9994A4D8D6BF09FC6C93264F31CA17B37BC26BF6C88E8A55359E000BFC9D3C01B7D090033E21BCFF3D2D51F2E0B3F2A43B690276103EE03A5DA69
md5: B2B01D21056F3B9331FF865F61D537C9 | sha1: B3DED81E8CE36F43EB75C48B9EE0FC57DD747A6F | sha256: B3AF83B83991C54233FC6AA8E269E00DFB94E3B379B65E2E5937D00474F21781 | sha512: 21D2EEB4BA52CE211E9EFEEF0A7E20C0505361B2533D06484E92DF634E1EB2F54B4B2B936B969DA2F1E87B439AC182597EC375059032C72F5ED32CD4196B88EC
md5: 8A1AB506571A12147E17F5178DE38B00 | sha1: 3416987D4397EE0B5706DBA048C6F315DA64D60C | sha256: 63AC863244286451292E19D15F3FA1C3EC8CA5D7DAE6A46096EC4F4E964710B1 | sha512: BFB7DDF3A2D3BF334F107083BD5E39BBB95969F662E484387A6D0E6B5C2202A61A15D3A308481BE9F7F23887796F661C5D31E3C9135F4F9DA471E076B6D3E6E6
md5: F066720F66F751ABD49144D8153D95EB | sha1: E0011E82BC932285AD30804B60853D0835333B7B | sha256: 67A1BC6E1A48B30C73EEA11169CD70D4FD0A06472B1B8E79359EBAE37A36F232 | sha512: 365D25E6855C0FAFC982C17BC0A581B9D744232DE4DF007170811A6C17A98259F0D2F7EF3BC3EC16A9AA8B468771AC75CC81C200B7EC1B977B70D24D4A8914C5
md5: F42D0AC0B526F937244FD99D230A2731 | sha1: 993564140BCA505E2823A85B19A5C25D29525811 | sha256: 93C645C91EB31EBC6A1D5BC0E4C88E825673DB67EA6A2315A60FA6DA20B7216C | sha512: 79176857316EAE4C11B34CAAA462D0CCA92A1E88DE46983AAAA33E4CC470229274CB0825167AC22A591F341E6D499D79D93D27BD69A77F678921FF905BCA66D5
md5: 6FD5BC61E7336A84DABB2AF011D35674 | sha1: 7726E4E027C762BA05F0A65335FB97D8EC00A128 | sha256: 82AB89F8C9B026E06638C225FF4C84B6E7D7D7A37878243CB9542021ADF6C323 | sha512: B6CC4BF1F405D118D781A2F611DDF1E043DE2ED3E3CD4D36804DB343A1023B39F88B27DB5CEAAB042B4013B06755FEEFCF663B5E850B0969E744F9E785209A6B
md5: 104CFB9A725A4A37D3296745D24FDE1D | sha1: EC2B688D3373D01BB0B7AA3093DC6F7B26F8B3CA | sha256: 2D600FA2A5E01D3B69B78A71BA77077A3D4B01B29E92CD0D1D24DD4C4DDD5BAA | sha512: ADF071EA36D4E9B9677C3C64C90CD9B943BAF01C16C79048D3095A14412E96B7631E520DC1004C0EBFCB1AA35CBFAE2A82E397872EDA079CCCAF1F89069DDB3E
md5: B4DE54586EF005F4385DB10690C6DC9B | sha1: A02E18F04D9FD4B88E1AC751334D8EDA6FF0B893 | sha256: 857CCF5DC0C974A2CBB2617C63564944C2A8D6DF5B3B2C9F8E95DB087A337BAE | sha512: 5742AE5DDF3BBD03FF01E296F273823FC00D8E68989FA35D0BB9CEC21C6589420093316FF64C8127A8D675506B32C0DD4825ACA2BB68BDFA94C712356DF6A721
md5: F848A9DAD04255DA2F1D82CE5AC91E02 | sha1: D61014F9DA583F36E0DB46EB052F09BF38327656 | sha256: 61D085B8705A3CD50F2136AA57428898C07EEE03B7C3FA7DC89316FD2FE0EC47 | sha512: 488F3FBA34429279B49CFE378FAF65703A0BA73D06C309FA31FA0C8EC6CA8D2F38D154F1E2CBCE1C1B7F44C1EEEB8DD96EDD3AADC62709D3DB118A0A3E22821A
md5: 97223DB9C7580B84237998DE88A6F544 | sha1: DD58F9860702D5E05E920BFCAD67782B4D1AF9D7 | sha256: 0AD40681DE8D74C56CECD7D8B3D403382F4A0ABEBC50F57203ECA42EC278BE50 | sha512: 9B86D09C91A47A6FFE8EAA7C859CC69505C6E67B9ABCF822999016E5D473AFC33D456F461F723B35089328A27004D6FBCFCE3FB1B20580178D580AF02C6A9F6E
md5: F43D897F0A32A78E1915629C9610A606 | sha1: EFAC251530610656D4E939345740F996E9714E2A | sha256: 32BAF95EC6C49331D010F4115800085E304E3F3FA6159ED9F5BF8A799A5EE2F2 | sha512: F6D76C0EE58FFE18EA4BEE7CE367D7CBFEED5586F015617B09D8E83AA8E8D6915511C356E30E3CCD191AED6FE151D53BF55ECC2990C0F2166B1E155EA094D34F
md5: 5582F7BCC06D02F595F541DC093C0389 | sha1: 98393AFCBCFAAF1E1BA810AE29EC0CB8C22546B0 | sha256: 4AFD7379126F28893BA542C44335BAD86ED3D8B2C48C7A2831B03E4C9D9597CF | sha512: B4556C01C26BD82021D7122543ABFD00186C16329FFC2FA382E71651DCBEF9ABAC06255677D2A3EC70F12F82B3861B1D60E39A25A719FF7A6026D06CF4E0578E
md5: DE281C5440F1F0BBC20DF20F5C000B88 | sha1: 7AA7DDBFBF7859F3D6E3F46B91FE41A82D071871 | sha256: 4B117884AAF4447388BA1F355571AC4D63B8F7F54BB55F7E2ADFFE1889FEFBFF | sha512: 40C073318BF627CE9A20207107052FB26BAAD96B59D06E338BE6C2EE3CAFA2A5EA0D4465B7E1AE4A0AE01B2BEB25995A1A201E7C7340E78E407C55C1DB9BC6A7
md5: 31F61D525276BDACA1590D57E80C20E0 | sha1: 3DF28D0FE1ED61BE1FC200E3A807CC82BF54D22C | sha256: 458B22DC20E4ED66E9D207B66B3CBF2533B849E622C106C1F357D6BB40BA1C52 | sha512: D56BBFAAE4CF730CBD84F609787A6FF25E2776DA3937E8471BD88CF5042A6744C95BCEE540C437316683BED28722695F5F86E61FA400B1EB6DCFEED562A21F1E
md5: FAA9DF0C9B030585B42F280FC0491B13 | sha1: 1484C8D4764F99213E04B50683DC89BEBA86DF6A | sha256: C4EF858950CD73478C1539D9A7A9FD5A2E1607B1ADD73DC9321F73E5072A2598 | sha512: D886463D50EECD2360016395F85AB723B915A2C16ED7E5E855AD8F745542E93A2922858A9B1EC55FB1688E2EFF25FF7DF4DE2DC8C8B4184968127EEBE90908E8
md5: D4293F0D8AFB9244ADFC9A506DC25944 | sha1: C9B1C6AC60A7CE74BB08780D2A63E3379A487B73 | sha256: 882230EE3A15F34817C93CA8C0794E364D3EAC5FA3CCC0B5E548A8710398C172 | sha512: CD8691DEAC1E6DCDD02C6EBE8BA7ECE37FEA8B1623D670F3DBDC8A87150F83DA79F19E5B9FE544ABC1823A4D0B4D0A09B0D7D09B8DD18B47665C6D084FE02929
md5: C8B2E7F04B67B1CD585193CBCBD204A6 | sha1: C006309F2DBBB1F24B273DA3178FAD904E2068C6 | sha256: 7C68A1F9797BBA09A6169AB81C3E70F9E8443E6E83C306B59CC8B3D02F0830F6 | sha512: 85654F18B377913F7037F26F2E22B2188DCDCDEF5793A6D11CBA6F8B6B8AADE9E1AF75FDA9DDF9C344E3DB72CD1939A2E1CAE0A2755B5871A1D8276F1FA5A58D
md5: 57407E4FBB6536D44750D8C2B9DFB49D | sha1: 81BDE39E6501C65352CB42A4B7A1721AC798B1A2 | sha256: 1C8F21102285CFD5041A7FBCD25C7109101A77541EBAA5976BA826A4A29FBBE2 | sha512: DFA7CBE3A07FF3650E24A823DF61A84377FA8CD73219A00F58782AAF6715FB014848F07D68C090DAAAA502BBB26AE6B746AC066543CB7FC4934A7FD65B2415D4
md5: 5712A846FAE697C3B4DA49DBCE51F87E | sha1: 6823939BD076961F1580B71B5E6939DC92863ACC | sha256: 96F4A7670F2E8D742F62D5A0B65F68A6AACEA827FBDD723B5AF3DBD4C050C437 | sha512: A240EEB4D4E6180C1AA2B0983C3B064565C134C16C4144B76472EB02B0A2812BC5F869C2E0286A09DD62BB9A7516D18A3E0A104511EA3C2521022CA4BE35F6CB
md5: 51CD0FF1800CE6C3AF738A75CF0C69A5 | sha1: CB9D21D159776C2C55038F98B7D554189D4CA67B | sha256: 8E62ABE802FDAD81198D0BB0D9545EFACCCC68C724E57683D4150F4444DA9E6A | sha512: 0D26DC6AC2E5AAEECA270666E0D4A622AEF0D656340E245EC0EAEC41B0D0B8C69BDEE207E48733D803A5A8B3910FC1F5B53DC8C88AE469F6754BBE528EAF8A6E
md5: 94A6B842C1CC82575FA7FFD5BE07833C | sha1: E57CDADDF8F629D90775FF969BBF2F01C8498BD3 | sha256: 54DA4C0BD5903ADA4F3314C502860F5041F5E15AEF8AD7670B7AD690826F0E35 | sha512: 9AFD0080275434354D72FF99A5FF9411C9577BBC7F9EC5E6D3C9D5C1DFE617746B5BD216C3F54E089E979CBD0CCF7A8FDAE253D2B7F182AE11F247C5A5D3B2E9
md5: CBD3CE000EF84166C90A125E6553D005 | sha1: 4BA12D1596BB615E08AD35DA0530D3E023AB9BC2 | sha256: DB5388504D5CD0CFF310D4CD68ADF8AF13999D424BF727A2D32F07FB4FEB7A03 | sha512: EFB41DBC242EA21BC8D13AB6D944F5FFBD07CD2F286E3957AE1ECEFF79B02C8DBE956066AAA34A2B4928A23BF00F295D14800A67FDA4FFD6FB9D995926C0A2B8
md5: 17A74108A1F78E8A911AEF293B95063C | sha1: ED21D3B32F7D4E8FF5E662EED4B535F28BE6C46D | sha256: 260BECAB9BA32A18796A63DE9E5FD3C09B0B652BF6CB5B1FEF6C7C73925A0399 | sha512: F9F9C7BB1B41D049895259A202DE0661362BD5B57575F8421C61D89ACE2D6908F51405090DC813C075CCF512C0BF38138E44ACFD15698869A861C652B51CD325
md5: 3693616941F7A5B899780D9CCF46366A | sha1: A8FA6A623145879315B3481CC7AAD62A970AFFE4 | sha256: C55AF1DCA9E9742108A693590E7CA5266C0AC61771943EDCEE72F5B66810BC55 | sha512: A913511BF64434D7F2DD486CBC72F8039B02B98ABC5E6B82B82DF6A09CF7D5768707B00EAB7855C8983263EE4502E1A3AE96DD82F12BFB51E00CE2DC116A944B
md5: 70A90D5EB7424D7243ECCB0B150C4FB0 | sha1: F71CFD6F55F2C062C2E52ECDA12F2BA4EA142F94 | sha256: E24F17073D869B808600BB8A97F2A8D3498D423A310C20A456E46E262BD05715 | sha512: 2C7DD1099AFA5388C4E245A82FAA0863D82156F7F039D2DEEA567DCAB128CA7C28622D7547A3296162D9E3842CB2B5F8800721840C3BBF846DAED622A95021EF
md5: 4E0AB7F0864BD5F112F5A341301EDD7F | sha1: B1DEA6C8EDC42C9B777A07279CE8E637E1CDE654 | sha256: DE27B0335D2F4E5EB8B5875E0B82F49257B42C20ED2C1E779A42F44BD68774C9 | sha512: A001B0CCE6CC61143305BA58FF80CA36A8C45DA042F4626780C743C2AE3044E05BA7A9D8BF593AAAEFB0FFA5A65793297446C3A29AE0FA8C4CD5E3AE9E329114
md5: 3EB799F9F84816CA3EC7D5F9282D2203 | sha1: D61C1E1B0243FEBE5432891AB6502C8691C1A40E | sha256: 40D9DFFE71AA92850BEF26C3F71B75150421E7E5D531BBBA21F49C0202526F34 | sha512: A33A0926594A0AF5F653C1381364AEDE9371F17063F1C4DBE07B060F5F0BD0DE7B8CD2F2501127CF3A0038631A8ED2A3706FB7D6A4A06A2E359DBF57B48F1807
md5: DFF4693889F355730BC2A555C7DDA580 | sha1: 0C948F5F454D2F53433F568BA0E5450B0EAA1548 | sha256: 002C938919866DCD765C271B6E25F7DAF14BB8EB0AD248EF924CD0D0F1861E53 | sha512: 5D56CC9D421C04C7815F3F934F43945B143AF55443E822A042FCEF88D630E5A32E29A7BDD3CFAB753D858D38E05EB1B36E4138520FBAA47A7CC65346DD088388
md5: BFA33A59329A84C9EBA6D69A8CDD4A4D | sha1: 56C14225D511AAC5B99FF33F2B1FCB00665AA977 | sha256: 80093C1BB44E1E8314F53E322B84F0DDFC9770F269E410A74A80C45CE05FF9D4 | sha512: 3A6819FD05A0C6C9E811EA5B6FE000DD643DE88505BAC4E0BD7D1D5A66198714229C4F269EAB2EB307B1F03D469DA8F600478F82467CD53FF2D261EAE7339E6A
md5: 5442606E6902E680715486FEFA8C955B | sha1: 25BF774A4830FABA3FF775DE2C72F11C53E47A46 | sha256: 58C2D47280E7D6DCAAA2883A18E3833B7488DF3036DE5EDFE4B55609B539A415 | sha512: 170FBB9C9BBBBF513D9F05D47CC94DF2F56A566A808E6603BBB052BDD21EAFC5822CCA026480DE1A0419F3DCFEEC0CB095AD69786441742BEF08099D5835CD6A
md5: 943899BD3E122CE9587CFCD70AAA8021 | sha1: 35C433135A297D0420577F7F8CABC7E1C1ACBB16 | sha256: 80655CD94E3406207793611380ECFF4535F17F29A523E894F9638916BBA8B739 | sha512: 5149EEC7A4BB34B56BCC168D5014C3B42846D04248A8A4B3311FAE7FCD7B6D24A9B3395C6281995FCF8FF393F39D0FBB4FF7E9EF7654D87E8B494BE850189D25
md5: 16036DD3DDE4061FD2BCEBB5BCA5D4CA | sha1: D6ECFEC3683D611425031C821C19BFCA61A25394 | sha256: B22D2F927CA423C2D53B4E086807817D61741A23BA7A709D8AA85E0D4058B56E | sha512: 6A7FBA93EA97E640D9ADE6974D5EB9A1D4A8229D041BD45DFEC747DA454BB7BC368559B10B848F5BC9D58CA7F9833A609B704E79D5F169E6C3C5C98040E54F0E
md5: B21B217A90E16DAB32EB2F5399A43041 | sha1: E014F80AE8B3028384F7928E5E65BC10DEC9483B | sha256: DD0646BE98B306782350ECA776DDA0CFB5DFF43948DDB5EAED8600FD20445D4F | sha512: 82EE40BC2FD2C96EA2B4D220FAC32EF005740B0423EFBA59CAE1FBF82EBBB2CBDDD84A9006C640A0621F7702008EBC124D276FB78590DB86706B2DC368A175DA
md5: D40CFFAE29DDE1CA0B249A6A3EEB3F09 | sha1: D55C6C5E4D6D2E0CA9938D665A753BD47CBA6BE0 | sha256: 7711783FDE9A3BAD895EDC42E44448C3658BA8118E3A2EFBDEF995A25832381F | sha512: 4F98AF736A9A205F744CFAF21365E8A7EE6DBE78834B2B51C4B9CACCF7E1CB594C469543A3432F590FBAB2C8B0B8EA19871AFE927F574918920E9E886443C198
md5: 4BAE06442F12E7C363FC05008DBA4066 | sha1: 6973BBE8924EAF1C2F33DDE0CAEF3CB4DC6B76D5 | sha256: 876C8A70FCBB3E8445121EFE9CE4415316683B5240D63294BF499F8BE2E2A773 | sha512: 23965CE5F3CE32134FF397D870901006C156ED38D7FFEBE7F190B6FBDCAD3EC05B1FB8F03AE5F00D1E6C3599D73D1DB85DBCD3EBB94CB8CE5B6305B9ADF40A76
md5: 6F91FD20C1FF1283906DC7F17A5C8A5D | sha1: B9A97CA3779D9D72315A371197A958A0EECCF0A0 | sha256: 877F2D2EDFC28BEC0B89EC7525A2E1809861DF6C1B44FAA9BE2B1102B3F6A390 | sha512: FF6ED5CCE29930AE1E164D5485636FD7C62E12CCFD84483037D3A9D1A844A4F1EF712F7277E8DB3CFE96C28FF10A66DB561CF0786C2C32301EEBAA4F879CE68F
md5: 4C3503D4AF562C62DCD105CB8A4AAF53 | sha1: 99726228E26A8DDE3C480EDF2D8AC9AEFCFDF4FA | sha256: 81A3DD440DA37AE471A48AA87AC90920367A57166D977E12D181B2B75B1C1D2C | sha512: 0CA24E75E6BFC7D88E9862EFA3AADCACEB4D9CD07F8DBC412601DBC636C1FA786FB49704A4F6F1F6EC754FC2379CBA16F580FC19BE896B822D44DBC85C31D493
md5: 361B7F4464BC0C71B611127920B7A320 | sha1: 893A340434BDBA83CFFB9CCB189ED1E84963DB80 | sha256: 595EC9B8226AE4D3EAC56314B24682DB4893888121D967EDB01BDB6C83330B05 | sha512: 7BC9B5D625EFD2E46CCBCF144083EC14D5375D366214151D6945078742FBCA252637CFF9B0501A537799173901358EC1E63F030AD1E8257D2CD37D72C452C336
md5: 0B27629B9F6C8A0824E028EE62DD223E | sha1: AA87894C310398CBA48E743CE3EEF330D287CF14 | sha256: F0CC877C4ED653FED78C8AD5DA8BE768847C2FF64946773BF62AD05EEC95A81F | sha512: C4C965C3BCF5AA1F89D73FCC95AC7CD1EF5D2E748B6ACAAB8170DC1EBAEC81148577BEED5EFA7BFFBEB84AE6A976DB61532836B42B9D0D298D701F4743C6F77F
md5: 7D30DE361847C045CE3D5EE7A2E3499F | sha1: 5BF7D56B090EC1B619E120E7E53C9AA97703F0CE | sha256: 0CFDF743D568327B3E4581B45A8228110D5CFC29B1BBC956430E49668EB84C8C | sha512: 2AF80D9DF6A040B90B5AAFFC87718F40591397630E0EE4C494C710999A578350AC9E7BA7587B4357EBC6AF5E6CB8E7BA622D8889E7CB831E69F5820EB6EE908A
md5: 0892488E8FD29543E35E8749C33E3AA4 | sha1: 3CB7BC4C4DCEDB2EF32F5FBFA205EC40D0D0CC01 | sha256: BDB9B2E93965B4FF64ED0A825D1898CD110327C0237B9B7A79C82336641CC2BB | sha512: 9170F7982219C624CEB597B3E9E30C0AE5C4738E9639C89454092FC1E9D69B093C13FA0731E1E6E69D274D99F7D6DD35D1FDC87E556364A12532F18E681377CB
md5: DCAFD6F61D07DA65C0F6EB85CC9D8779 | sha1: 68B8E4BA3A1EB8198A8760536F92704A6869EDB0 | sha256: 75026F31EBA16EBE94BB15249AFDA185C94F6FDDC44E03D50F80FBDDE8BED8D0 | sha512: 8512419678AF51B77482DB034CB45EABD071DF64D5CDA3F50ED8F4574A7BC065520CDFFAEA4749DFDD91DF027999BDF7403E2D8CC4A43FA9A87D1D1E82B44E7C
md5: A689CE73523657BA414D0CDE94BDA59A | sha1: 68BA11481A1BD9276CB1674BB33DA9F84A88CAC4 | sha256: 2D20C8312369561E54CC8921900987A87763167F4D2E0C702D221F79C62167CD | sha512: 8A0E03C6C2C6340A43BE144E4EF10ACF751ACEB79AD1C67EBCDD109F6053EEEEE7F54A24CDB4999C4E5381A1FC9E5A8063889F5BB88DEEA2A2A17E6F02782F3E
md5: 98F536C0042E655F9765A95D7EA387F1 | sha1: F7314458D85C77966721126CD407DC486C4D4F34 | sha256: E14A37BED116AFFA633436AB0915C590074497478347979DF62EE1B94D02EB1B | sha512: 8F564B99EB7281266754BEF516AABC0E7AFCC5DEB4CF5DD047E8D677661C9427182092EE95CCD3E7C665FE5436861F270D1A4DABBEF6B48BB0AF659ACD029A34
md5: 001E6350DEE177CABB7058853CFCCB25 | sha1: CA8EC3246DC7C18EC992D0F91FF1835714353927 | sha256: D7569ECC6113B650B808149F5105233810AA99D45C84562EBC3CAD7EED23F9CB | sha512: 345D89DB5149E12039A7B0A6AC8709022482B25D9B16244FBAC7FD5FB3C32EAF4F718478FDE8770C9BF39E120EED287699C54E304082312DB191670DE1C695EF
md5: F6AFE567B6A751220041D5A9B8FB0384 | sha1: F260E357627E94F8C73CB86F0CC632D79B297C45 | sha256: ADDD151354AABE4BDFC50981DD0676FCB039BE9C8894E01094C3661A5009569E | sha512: E9264A28D1D7C46F58B6214E98C0AE7043D91F222A15C708D7AE951CC9584BC4F0CCD3DE9C7D3AE5237F04D70BFAFF13512A214D7DB911CC24F97A744431E8A5
md5: 61503BFAAB2ACF17A80D3E8F3EE0A0BB | sha1: CD38537698AB8178A7717F37977FEB71BB114AAD | sha256: 04D83C4AE3A3D83EE199139CD5D7AC0186C4FD94E943A857D35E073A5E4BD8FE | sha512: F0078CD382AC95D4C1FC91CF1EF65BE63CD3D155743F336F6ED8044643CB4DBD0AAB83DAE972E4AD34C3BB6EDCA5FD331C658F229B951003DDF8535CCBB51D7D
md5: 7D5040FE803DDFF405624042082273A1 | sha1: CC7835AD9018FE15F689299F5B932D1DA2C5D53F | sha256: 8F64F5E4FC29EADF315DB1A9022CFD9883A6ADCB0779413726797DE1BD5B5CDC | sha512: 0E1FD44ECFEA1F8FAB4DB650D929FB0E7139BFAECB20D110BAC7EA29EE3896A487CE6AD9876F68E2504CB7559C5CD1B50B18292A6293CDB93A6FCC07FFE5E528
md5: 4D0B17DE1867F139A7BA6FB1FD06152E | sha1: 5D8B371F3DA2604B6D3BD2E74EEC6D24952B92AB | sha256: 76D2993FA395548C763494C5A50ADCFF0917373610C7D59B21B60D3E22ABBC01 | sha512: 69EB2EAF4E631416A2F28D6600EC803199C578D8856D6F93395142CAC668B137580AF9BCAC61DCB8EBB94CC86073ABB50A2F6388B08A84C21442135A7486F57F
md5: 38E97BAC74050CAD1CB886B864315E6D | sha1: 0839DE8BEDBE779D391122F5E4184252D4D8E8F0 | sha256: 0743A7C3481196D280ECD3D0CC6C1AF5DFDDAC1895E4189F170DE222F4A09F76 | sha512: CE3E31D164C02C8C3DB320FC7D6E2A396B7183259FEB400E227CACCBD7612B2FD7FD8CB7B6B2AE6172AD4CC7BAAAF872115F9F7DD9BD4CCDF3D51835F1D14428
md5: D4EA9E10F04AA6FBC6253233467A0112 | sha1: F08F36C96FC7B6C7D69BDE2FAC920D72A9726C74 | sha256: DD5D8811857C330FF6CC021FABA3CBF757BF9691E8C156F75715826D6F36B461 | sha512: 3F0CA6AD6E7D45EFFD9BC4017906A73232CE0D5498C52D5A3A5D3AAE3D8A01D63D748BE1564FF6A60A18273A543AF75C5B1222EFDE1457A2AC0B821B1F8CB57D
md5: FCC15355076B34851B095857D83C94E4 | sha1: BA1CF2D476940B20BFC75F6FF6C86A28E02CA0F7 | sha256: AF596DE3903D850A9147CE1A21496B76E99AEA8F69161C117571FC871D3DB638 | sha512: 5CA283C1D996F1F5618151DA1B3FFC8CE409734C7223BD8AE8D058BF5DAF9D7D41C0C59B92B555CA9A0AAC113764E2FF612A397E83B1D1C39A7617C46EC84802
md5: 7541B74CA14043A885F44CD74B17C8DC | sha1: E7BD7A2F933A1322DF0B4399545FDE2C6C635E70 | sha256: D7735B785168BB89FC1ED9F1E6C7EF1E2EC073FABEC63F3F0BB81A440B7C8B40 | sha512: 775D9FCC4F6B296AC17DD164F97BB7F5BE4E3FD654A059571701837E2399F1B11C0CE2C786DB9133518F58C32ADF00AD051DDFFA37C5407565E55207DC06C4E2
md5: 6AFE0941BC26E1C9080A96C19AE8EC67 | sha1: EC158AD58452C2384100DDF9D632561D4108F84D | sha256: 6FBF945E8F5C171AC53292A50806BD2F2FF9145CD180F9DCCB75F2B8536B60D7 | sha512: 7DCB699C7E255CFF739F7C7C32433C72B1295A75962DBBF2A5034D2C666454798F32B5C7BE9BCAA4AD6F33EE66FB90B3180927C71CC9CB30E89CD88EA6FE8AB0
md5: 67EB41371CA13BBD3B92EC370ADFDD4D | sha1: D19A1BE3E8CFB4BBCA715F3B27BD91C6FDE21E30 | sha256: 799DF3B1E3062EEF1904D35ED79DC8A0C2B8CCF768CF8120A244E4170B2EFFD9 | sha512: C34D960297B46609F6D18F4A75E158EC47A8200BBEEB364DE287B3D49D6AE480F3959DF2279832F7430316C5D9B5872951DBEE32F6666881684E26BE002333F0
md5: B4D72EDABAC7CB543AC46EADC73099BA | sha1: 0700A02B89A278DECAC41EE15ED3DF0748A37DAB | sha256: C060A0FA9CFFC6CEC5A60747F52E5EFC9128073D32CF0BD30A12447473B5B78D | sha512: 393CC0759211CE7C5514F2683A2C126EB083259A5CD4303A176A4E07CC8792D1F855CD6536C7F48D40096107BD606EC3264E28A873BD1CE31CF4AEB5F1E9694E
md5: 314288A02F1D5D3EA71CE2A6856E336A | sha1: 861264B6AFF5F6F8A911F7C4B322A116D252B181 | sha256: 597981D1817E30B4CA109BD5757C6C59AA5E87B6595B2427228C88A8F0B5CCB4 | sha512: 1CE0E68A51A248F4FBEAC692077314902F23ABF8B92E26D5B16B959953FAB578BBE2C5D59A13617A15AFB122D533371D645F6158EB206BB3E00737648DBBFBF9
md5: 8228898A160F44143785F4655F90AFF0 | sha1: 09B4CF6DB05F95138F4A9E283A420E3D827347C1 | sha256: E6667781E6A86CEB76DE1022CEFD26802282D7B7026E891EFACA2B344958863C | sha512: 869756373097239F5F5E2E96E97A35D17BF17223DFF5AA154CCC3F1C3778E99C0F9C81F82C3876A4A73C705CF0E946A015F4629EDB5D50A09F005649AAACD4C5
md5: D737CFF53283789D0CD4DAF41CAB4343 | sha1: C614604B5C0429770E4EDE73016D72A35329F623 | sha256: B2D9EFF99F33B15B486D4743B92CAC8ACA6D12D63105D24316271EFDF0DE9695 | sha512: 148CD68F231475791334C88FDD5EFF7A1E24270569365E1A31A02D9E63AB4A4D50B3DBE8B55C1AEFE7AA6CC2398039BE36DD727C1A876309B131F5AB3A31B3AD
md5: 72B1D5D65F2741BB307B428625711497 | sha1: 518C8BF706E2C387D94C724EDF4BC68BAA7DAF28 | sha256: A937FDD6D71E28B9AA05C765A10B8E555AD62F95F79DE5E47DBA855776D3FC04 | sha512: 3C5BAD8E7B5BCE49D9BDE5B4FCA3F494C0B264D2FF5B8FFD3C5644BE8B347BF34E246643D51AEDA52972EE1FAEE43F67275B159704FE9EBA957433767CF5CAD1
md5: 21A69110ADA69D9CED56D063B7164246 | sha1: 4E999E00F20C7A1B6BEC4E599D311636A437E7B6 | sha256: EFD824BD0DB98D49E70A4948ADC524C5876E91B281E0B0A1F5481BB1DC1EBB82 | sha512: 78EB148AA643E62E47BE95C12BBACE9B12059F4200607EDBC4557D566C25E5397F39399B170DF3927326510A5C4560AA327FC2459DE842DC07CA4A4309279FC4
md5: 29E436E0376B166B3BD218021E997418 | sha1: 24CE83D8715830A629D9280592BDB7AC1DBB9353 | sha256: A55AB3E829A0D5852CFAF77DC8B70FD3442E50BA98A63AC80932F7BAD80812FC | sha512: AC0EB2BD27991FC043405C8AF39F516A08A69883D9638C358E0EFAEB7478A8284544D1F36EF333F48EBE9B67535C8E3DBEA1EA198F61CD75671A54A81DDC208A
md5: F1CCF86180F777F7686852821836D7D6 | sha1: 095C4B5CC9660DBBC5027B17FD87532EB2AD9548 | sha256: A44F0AF37EF12B59CF647D55D14EECB24B74E597F7DD23AD6845EE89258071A2 | sha512: C2E096078184CA2E236CBCF90AD2A10A6B5BB90E4F342DA785DD5D46D6BAD077775FB62D64676DAA349F8DA1A9D7D0F30A668041766B8817A3B2BEC103FD48F5
md5: 0B0E83EAA18FDDBB20CEC0A5646A1AAF | sha1: DA8C590358D5B33203C3A88B638FE0F2B34F73BB | sha256: 89B5CD25E2EB931FEB1179BEA1395BD24E8BAEEFE77F08A90D6737C283EA0827 | sha512: 7D9FB92E8276D4866EEC893EA4E3C43A663D827DC3FC586A3BFC2716809B2CC78A4A9D5A2B3FE9D0E996897510C74278BBB66A5F2525B791CFE4F1A6B88C8F8A
md5: 16A7D3376FAB6143D8C2A0D851241205 | sha1: 23113D6706AA851B16325F408E74A8D2BF72BC56 | sha256: D49849801D4807824228E50FFE6D5B8F92321961642D6A61FF451225D17D29A8 | sha512: 9B4059617504C5E127604E8BCC7939FEF44FB09C52EEC0362D3838B3BF7585306AB2FC377A7ECAADCBD9420DFE70ABB23EF6312E385C8766B78E725231A663BC
md5: 4997B9C9A27CB8CD5C9A5D536A965AAC | sha1: F130CCB864EE79A14CD520C4264C740E5696E31C | sha256: 806680C870F69B02A37F7D4112891A1E7FF95465126C3A58484223F4C4E00569 | sha512: 47BBF3499209C217D7D894042B16D8335BE42180DD4D774336D9E71869B6D9127E6515DC9E8FE46F07927A3B63B23CF7A0596B7B080B78993E239CB94A4C1F76
md5: 3A467D91173C9A999A45006B639B8A59 | sha1: 419B595AE9C4353D90047AA675957554EB4F0E51 | sha256: 286B11D81B85A5C9D6EB524E14797927AC6B5B0247BB7421C1234FFE89E26ECF | sha512: 3D01FDAAC8F78832D3DA5DA8684E808478B705B6A7B4804BFF4A6B7C0364C0CA5D3610DE9A264DEE3E2B7ECA83C087C853789280C6D2337A7AAEA8EDAF1B0A1C
md5: 34376B91FDF17A7662111A8CE6B66F76 | sha1: 24B2AD6277FB6CB53D9327014759444090DA0EAF | sha256: 9336694284C3CA724A55843FE69428D9090D108861A18E08F3EFA30EBCE33D81 | sha512: 2FB04E16F6E19A9E9FFAEA58B090BD7E146C2494427DC8A4228B386A65368D59718B372C0D28F7F465540A0C772329D6A524AE4738FD8C85447E29C9446FA180
md5: 7F6C303BA0B2926BD4CFA70DFC987FE6 | sha1: 2598E28A24D375340C59515E9055AB6791FD402C | sha256: 5DFB1EE4A9DB000CF6A1C720F8B26FAECDC3BB63E74584EBA0501BD4578B531B | sha512: 8D68F2FBA3F5BA38CBBA08BEEE932A84BE32246B94AF96DD8D5EEA2C8B4FE253C93DEEDBA94FB5BAC193775C4735BE21F7D9328E7B47B8E4F71A4A86CDCB0D01
md5: 66F3B9EB3BE1B1BAC973B9E5135AC739 | sha1: 190BF66ECE8B78DE35A57E7C78F1ADEAA46EBCAE | sha256: 6C79F59D31E2F0E6B04F38E17D3440E148FFA943577E68AD52781BF036316CB2 | sha512: 457EF5EF6B5E2D4136968F0FB1758186E7DF49220CD065AC550081DFA042B68F2DC52D2878ED02DDF231FF0E59F77BF45742140A5D745F76C0F008BCA65EAA37
md5: 31C498C9C0A77C22287DAC6F949D20BB | sha1: A173F971430FACF417B2BDE22622B447C268E01A | sha256: 799F1C8B1664955E07A44B16FBCF6DB079E072B4905B586E224AAC7FE6F50526 | sha512: 38CF4C2F67DCF2068AA17E8C5898D4D4CA258D0B18FE6A6956EFBAA3209ED71C354ED44DD997FFF1C59BAE6514156F12CAFE5A1D682FBC7A4950F65BFEE8CA68
md5: 8022E776D5DAA92C8318A69EC9D61F06 | sha1: 5109DCCA3C0A8F61AD36BD562B80A15FFBD9D88E | sha256: C470A6BF133F1DD784189F99810828EB3F4D3466282CD5E84769F03AB089218E | sha512: 5C21ECE94E9E026A8257393723BC3DF745D9D666509B4F1A5C53B0F29450FEF2C01F369E5EB75A2488F13D3FF7E13AEB0715C12BE8DBC2D4E7D972C8AC6252AF
md5: C232C8341E48A284529B4EB0C9AAB815 | sha1: 74F69472AF598FD4B0FF2F3C0F4F910312642469 | sha256: F033A7BE9B259E2886B7CE76335AD48CC7F51511349D12C129977B731E82B059 | sha512: 2F3EBF85B59D5820315CE73E513A457C33F2BE2CCBB10F0493E6D6AF519C7D9F04BF8ECCB45021E4D75A97DC6F3688F3D6A36308BF39AF4FBE415017DD155723
md5: 80675FB769C351D7E80257E59AD6A901 | sha1: 2E1E2E43ED2A0F02B273E8D6F39DC4086794FD8B | sha256: 9ECDA15BE62E0997B32DC494052FA0A2F2A940F9A3A9411AED15DA704600A9DB | sha512: 6893C924B20E9059FE0B8811981474A232506623ADEA1E6902001CB47B0886CBE76990872B389394BDC3BDFE9857EFF801DEC50FC54C20F7EAAB8801754ECE2A
md5: 5DDEC0A6A73871042CD29C65B28D4A59 | sha1: EB139F30EA52276A95B08F867F42D21FC2B12D9E | sha256: C9FDB2AA1B0B288F1A943E3F03FA288A3D0C2CB1E34B6224D99BB7B7AA20816B | sha512: E1CC10DA9CDFC264B46C1C126BDB3F714945A902E4F86A819EACFEAE261217CF30AE5325329C701E3A37504F5FEC0484A27EF643CD3D54ECD3CD68276BBA7AD8
md5: 5A4DB5E145644DC93E775D0F0B81852F | sha1: 2F9377FD06A40AD7B945A1045948DF78E9981C1D | sha256: C6B51FB274FE15DD94B3D7A53708B3EB6975BA22D81D1825D6321A7489035CE3 | sha512: 4ADE2BB08078A5F3003979F302E675E78F053090D6F008CA349A6604523958B54C5B1E559A362B2691F5699D768A490BDDC1A2C8C1E5AE45D4B981BAB0DA821A
md5: F3382B82591073FAC3091E1278F3D62D | sha1: A5D405B8288BBCADCBFBE734B293597E5285E564 | sha256: 2848CC366FD1D08798E7F82CDD28D9A6AF6286E1E31DFFBBC448DF9F33386AE7 | sha512: 45C0BD52A6879BB2895FAA7A1AFC65C77492F67A089B6EA66A362BDE082DAF01C28D6AF5D2CAF96682769DD143CFFE0DA29E2F47E289D561C316976017148008
md5: F481751F2E4C8D232B621F2F8FA0C20B | sha1: 44B7F32B32B79326AE0F7AFB257894755BB9884F | sha256: 5D2B4A6D74C14703ECC2623AA72778FC5867CCDAC2A82B75A79A51A4D93D6BD7 | sha512: 5FC161BDBEF5743FBB09908DCD1FFB3D53ACF28026E39EDC49B5319399E859A5846AFA1514F57E7B98354D5A4F957A761DB2BC33C22412EA1E7B27F9E145355A
md5: FC2D64CFAFC18E8F69EB171BC6D7B716 | sha1: 13B4FB34425F30D7C7490E5A40E3D234312C4649 | sha256: 56F15D1BB4A8F22D8103F6A2DB82C753E75BEA114583C6C26E18B8B1EC05B750 | sha512: 8AE374D22DF160116023D85A9ADB5E0FB460D07D7CDC63C48AF5DAB8EA063AC7EAB0A865C7B381FB6C2923328F9058D468334F4592A6E967DBAA529A87CA224E
md5: 36DFD4560F1819D04D47D1453E6A7383 | sha1: E14050A765B0789AB973F8561CC9BA1BCF973BDC | sha256: 8ABBF13A3CD6B9A9A87FF4921211BCBDADBCCBA0404C764F1D685E4DB62135D5 | sha512: A58E2D956C0EA49A5737AF9EDE4B7105922E03012A76D89211B72100B66971FF7AE0068BEEE3910EB393FC1D539269D7DC889658696FC5BA937E3C755265B773
md5: EFD90D395DBE1648AA47BB03553BBBFB | sha1: FF7E7CB67E858767E01B8FB17448653D004B1F74 | sha256: E43473E226B4E43A2597E2D1D0460E6CABF7EFC6D0FBE653111575BDB5DE9AC8 | sha512: 30D2CF6BD0A3CBA511F2BB9B38D96A47C717B0C6246630F619D6E7DF42E89706D9D95A09FAF2FF752A11531A5742E7A5F98F09D7B7B366921798D42470A4085B
The MIT License (MIT)
Copyright (c) 2014 Igor Abade de Vasconcellos Leite
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Function _GetInstallationPath($Version, $Component = 'BaseInstallation')
{
if(-not $Version)
{
foreach($v in 20..8)
{
if(Test-Path "HKLM:\Software\Microsoft\TeamFoundationServer\${v}.0")
{
$Version = "${v}.0"
break
}
}
if(-not $Version)
{
throw "No Team Foundation Server installation found in computer $([Environment]::MachineName)"
}
}
$rootKeyPath = "HKLM:\Software\Microsoft\TeamFoundationServer\$Version"
if ($Component -eq 'BaseInstallation')
{
$componentPath = $rootKeyPath
}
else
{
$componentPath = "$rootKeyPath\InstalledComponents\$Component"
}
if (-not (Test-Path $rootKeyPath))
{
throw "Team Foundation Server is not installed in computer $([Environment]::MachineName)"
}
if (-not (Test-Path $componentPath))
{
throw "Team Foundation Server component '$Component' is not installed in computer $([Environment]::MachineName)"
}
return _GetRegistryValue -Path $componentPath -Value 'InstallPath'
}
Function _GetConnectionString($Version)
{
$path = _GetInstallationPath -Version $Version -Component ApplicationTier
$webConfigPath = Join-Path $path 'Web Services/Web.config'
$webConfig = [xml] (Get-Content $webConfigPath)
return (Select-Xml -Xml $webConfig -XPath '/configuration/appSettings/add[@key="applicationDatabase"]/@value').Node.Value
}
Function _GetRegistryValue($Path, $Value)
{
return Get-ItemProperty -Path $Path -ErrorAction Continue | Select-Object -ExpandProperty $Value
}
Function _TestRegistryValue($Path, $Value)
{
try
{
_GetRegistryValue -Path $Path -Value $Value | Out-Null
return $true
}
finally {}
return $false
}
Set-Alias -Name 'ctfs' -Value 'Connect-TfsTeamProjectCollection'
# Project
Register-ArgumentCompleter -ParameterName Project -Verbose -ScriptBlock {
param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)
if ($commandName -notlike '*-Tfs*') {
return
}
if ($fakeBoundParameter['Collection']) {
$tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
}
elseif ((Get-TfsTeamProjectCollection -Current)) {
$tpc = (Get-TfsTeamProjectCollection -Current)
}
else {
return
}
if ($tpc) {
return Get-TfsTeamProject -Project "$wordToComplete*" -Collection $tpc -Deleted:($commandName -eq 'Undo-TfsTeamProjectRemoval') | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
}
}
# Team
Register-ArgumentCompleter -ParameterName Team -Verbose -ScriptBlock {
param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)
if ($commandName -notlike '*-Tfs*') {
return
}
if ($fakeBoundParameter['Collection']) {
$tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
}
elseif ((Get-TfsTeamProjectCollection -Current)) {
$tpc = (Get-TfsTeamProjectCollection -Current)
}
else {
return
}
if ($fakeBoundParameter['Project']) {
$tp = Get-TfsTeamProject -Collection $fakeBoundParameter['Project'] -Collection $tpc
}
elseif ((Get-TfsTeamProject -Current)) {
$tp = (Get-TfsTeamProject -Current)
}
else {
return
}
return Get-TfsTeam -Team "$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
}
# Area / Iteration
Register-ArgumentCompleter -ParameterName Node -Verbose -ScriptBlock {
param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)
if ($commandName -notlike '*-Tfs*') {
return
}
if ($fakeBoundParameter['Collection']) {
$tpc = Get-TfsTeamProjectCollection -Collection $fakeBoundParameter['Collection'] -Server $fakeBoundParameter['Server']
}
elseif ((Get-TfsTeamProjectCollection -Current)) {
$tpc = (Get-TfsTeamProjectCollection -Current)
}
else {
return
}
if ($fakeBoundParameter['Project']) {
$tp = Get-TfsTeamProject -Collection $fakeBoundParameter['Project'] -Collection $tpc
}
elseif ((Get-TfsTeamProject -Current)) {
$tp = (Get-TfsTeamProject -Current)
}
else {
return
}
return Get-TfsArea -Node "\$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty RelativePath | Sort-Object | _EscapeArgumentValue
}
Function _EscapeArgumentValue {
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true)]
[string]
$InputObject
)
Process {
if ($InputObject.Contains(' ') -or $InputObject.Contains("'") -or $InputObject.Contains('"')) {
$InputObject = "'" + $InputObject.Replace("'", "''") + "'"
}
return $InputObject
}
}
Function prompt {
$defaultPsPrompt = "$($ExecutionContext.SessionState.Path.CurrentLocation)$('>' * ($NestedPromptLevel + 1)) "
$escBgBlue = "$([char]0x1b)[44m"
$escBgCyan = "$([char]0x1b)[46m"
$escBgMagenta = "$([char]0x1b)[45m"
$escBgGray = "$([char]0x1b)[40;1m"
$escFgGray = "$([char]0x1b)[30;1m"
$escFgWhite = "$([char]0x1b)[37;1m"
$escReset = "$([char]0x1b)[40m$([char]0x1b)[0m"
try {
$tpc = (Get-TfsTeamProjectCollection -Current)
$tp = (Get-TfsTeamProject -Current)
$t = (Get-TfsTeam -Current)
if (-not $tpc) {
return "${escBgGray}${escFgGray}[Not connected]$escReset" + [System.Environment]::NewLine + $defaultPsPrompt
}
$serverName = $tpc.Uri.Host;
if ($tpc.AuthorizedIdentity.UniqueName) {
$userName = $tpc.AuthorizedIdentity.UniqueName
}
else {
$userName = $tpc.AuthorizedIdentity.Properties['Account']
}
if ($serverName -like '*.visualstudio.com') {
$tpcName = $serverName.SubString(0, $serverName.IndexOf('.'))
$promptPrefix = "${escBgCyan}${escFgWhite}[$tpcName.visualstudio.com"
}
elseif ($serverName -eq 'dev.azure.com') {
$tpcName = $tpc.Uri.Segments[1]
$promptPrefix = "${escBgCyan}${escFgWhite}[dev.azure.com > $tpcName"
}
else {
$promptPrefix = "${escBgMagenta}${escFgWhite}[$($tpc.Uri.Host)"
if ($tpc) {
if ($tpc.Name) {
$promptPrefix += " > $($tpc.Name)"
}
else {
$promptPrefix += " > $($tpc.Uri.Segments[-1])"
}
}
}
if ($tp) {
$promptPrefix += " > $($tp.Name)"
}
if ($t) {
$promptPrefix += " > $($t.Name)"
}
if ($userName) {
$promptPrefix += " ${escFgGray}(${userName})$escFgWhite"
}
$promptPrefix += "]$escReset"
}
catch { }
return $promptPrefix + [System.Environment]::NewLine + $defaultPsPrompt
}
TfsCmdlets
==========
PowerShell Cmdlets for Azure DevOps and Team Foundation Server
## Whats is TfsCmdlets?
TfsCmdlets is a PowerShell module which provides many commands ("cmdlets" in PowerShell parlance) to simplify automated interaction with Azure DevOps (Server 2019+ and Services) and Team Foundation Server (up to 2018).
By using TfsCmdlets, TFS administrators (even power users) can create scripts to automate many different tasks, ranging from retrieving work items to create new team project collections.
TfsCmdlets is available in many formats. The full (MSI-based) installer also includes **Azure DevOps Shell**, a PowerShell window pre-configured to make interacting with TFS via command line a joy!

## Quick start guide
Firstly, download and configure the latest version of the [Visual Studio ALM Virtual Machine](http://aka.ms/almvm) (a.k.a "_Brian Keller VM_") in your computer in order to have a sandbox to play with.
Next, install TfsCmdlets inside the virtual machine (see section "_How to install_", below), open a PowerShell window and try the following commands:
```PowerShell
# Connect to the FabrikamFiber team project collection
# (Will be used as default for the -Collection argument when required by a cmdlet)
Connect-TfsTeamProjectCollection http://vsalm:8080/tfs/FabrikamFiberCollection
# Get a list of team projects in the currently connected TPC
Get-TfsTeamProject
# List the existing iterations in the FabrikamFiber team project
Get-TfsIteration -Project FabrikamFiber
# Connect to the FabrikamFiber team project
# (will be used as default for the -Project argument when required by a cmdlet)
Connect-TfsTeamProject FabrikamFiber
# Create a new iteration
New-TfsIteration 'Release 3'
# Get all bugs in the current team project
Get-TfsWorkItem -Filter '[System.WorkItemType] = "Bug"'
# Create a new PBI in the 'Release 3' iteration
New-TfsWorkItem -Title 'New product backlog item' -Type 'Product Backlog Item' -Fields @{'System.IterationPath'='Release 3'}
```
## How to install
TfsCmdlets can be obtained from many different sources and in many different formats. Choose the one most suitable to you!
### PowerShell Gallery
If you're using Windows 10, Windows Server 2016 (or later) or installed Windows Management Framework 5 (or later) then the simplest way to install TfsCmdlets is via [PowerShell Gallery](https://www.powershellgallery.com/).
Open an elevated PowerShell prompt and type:
```PowerShell
Install-Module TfsCmdlets
```
Optionally, you can install it locally in your user profile. That is particularly useful when you can't run as an administrator or don't want to make the module available to all users in the computer:
```PowerShell
Install-Module TfsCmdlets -Scope CurrentUser
```
[Additional information](https://www.powershellgallery.com/packages/TfsCmdlets/)
### Chocolatey
Using Chocolatey? Then open an elevated PowerShell prompt and type:
```PowerShell
# To install the latest pre-release (alpha, beta) version of TfsCmdlets, type:
choco install TfsCmdlets -pre
# To install the latest final release version of TfsCmdlets, type:
choco install TfsCmdlets
```
### Nuget
Nuget is a great option if you need to integrate TfsCmdlets with your continuous integration process (e.g. you need to create a TFS work item during the execution of an automated build).
To add TfsCmdlets to your solution, search for **TfsCmdlets** in the Visual Studio "_Manage Nuget packages for solution..._" dialog.
- Note: To add the latest pre-release version of TfsCmdlets, don't forget check the "Include prerelease" checkbox
[Additional information](http://www.nuget.org/packages/tfscmdlets)
### Offline installation
When the target machine is not connected to the internet, none of the options above are available. In that case, your best bet is one of the offline installation alternatives below.
You can get one of the offline installers listed below from the [GitHub Releases](https://github.com/igoravl/tfscmdlets/releases) page.
#### Full installer (MSI-based)
The full installer will install the module files to the Program Files folder in your computer, make the module available to PowerShell and create the **Azure DevOps Shell** icon in the Start Menu.
**To install the full installer**:
- Download the MSI file from the [Releases](https://github.com/igoravl/tfscmdlets/releases) page;
- Open the downloaded MSI file
- **NOTE**: If Windows SmartScreen flags the file as insecure and refuses to run it, you can click the "More info" button/link in the dialog and select the "Run anyway" option.
**To uninstall the full installer**:
- Use the _Programs and Features_ (formerly "Add and remove programs") function in the Windows Control Panel.
#### Portable installer
The portable installer is a zip file containing all the required the module files.
**To install the portable installer**:
- Download the zip file from the [Releases](https://github.com/igoravl/tfscmdlets/releases) page;
- Open your Documents folder in Windows, then open the ```WindowsPowerShell``` folder in it;
- Inside the WindowsPowerShell folder, create a new folder called ```Modules``` in it (if missing) and then create a new folder called ```TfsCmdlets``` in ```Modules```;
- Extract the contents of the zip file to the ```TfsCmdlets``` folder.
You must end up with a folder structure similar to ```[Documents]\WindowsPowerShell\Modules\TfsCmdlets```. Files such as ```TfsCmdlets.psd1``` must be located in the TfsCmdlets folder.
To test the installation, open a new PowerShell window and type:
```PowerShell
Import-Module TfsCmdlets
```
**To uninstall the portable installer**
- Close all PowerShell windows where you were using TfsCmdlets (to free files in use);
- Delete the ```TfsCmdlets``` folder from the ```[Documents]\WindowsPowerShell\Modules``` folder.
## Contribution Guidelines
- [Contributor Guide](CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)
## Additional Information
- [Release Notes](https://github.com/igoravl/tfscmdlets/wiki/RELEASENOTES)
- [Online Documentation](https://github.com/igoravl/tfscmdlets/wiki/docindex)
[](https://dev.azure.com/TfsCmdlets/TfsCmdlets/_build/latest?definitionId=2&branchName=master) [](https://github.com/igoravl/tfscmdlets/issues) [](https://github.com/igoravl/tfscmdlets/forks) [](https://github.com/igoravl/tfscmdlets/stargazers) [](https://raw.githubusercontent.com/igoravl/tfscmdlets/master/LICENSE.md) [](http://nuget.org/packages/tfscmdlets) [](http://chocolatey.org/packages/tfscmdlets) [](https://github.com/igoravl/tfscmdlets/releases) [](https://twitter.com/intent/tweet?text=TfsCmdlets%3A%20PowerShell%20Cmdlets%20for%20TFS%20and%20VSO&url=https%3A%2F%2Fgithub.com%2Figoravl%2Ftfscmdlets)
# TfsCmdlets Release Notes
### Version 2.0.0-rc.1 (_30/Nov/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-rc.2.md).
------------------------
## Previous Versions
### Version 2.0.0-rc.1 (_21/Nov/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-rc.1.md).
### Version 2.0.0-beta.16 (_26/Oct/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-beta.16.md).
### Version 2.0.0-beta.15 (_21/Jul/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-beta.15.md).
### Version 2.0.0-beta.14 (_19/Jul/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-beta.14.md).
### Version 2.0.0-beta.13 (_18/Jul/2020_)
See release notes [here](Docs/ReleaseNotes/2.0.0-beta.13.md).
### Version 2.0.0-beta.11 (_14/Jul/2020_)
#### Improvements
#### PowerShell 7 (Core) support
- Most cmdlets are now run in both Windows PowerShell and PowerShell 7;
- Exception made to those cmdlets still relying on the old Client Object Model library (e.g. most cmdlets that operate on a configuration server level);
- TfsCmdlets is expected to work on Linux and Mac, although it's been only lightly tested on Linux and have not been tested on a Mac **at all**.
#### New cmdlets
- Connect-TfsTeam
- Disconnect-TfsTeam
- Enter-TfsShell
- Exit-TfsShell
- Get-TfsReleaseDefinition
- Get-TfsVersion
- New-TfsProcessTemplate
- New-TfsTestPlan
- Remove-TfsWorkItemTag
- Rename-TfsGlobalList
- Rename-TfsTeamProject
- Rename-TfsTestPlan
- Search-TfsWorkItem
- Undo-TfsTeamProjectRemoval
#### Other improvements
- **Documentation site**: Published new [documentation site](https://tfscmdlets.dev) (**WORK IN PROGRESS**)
- **Get-Help**: All cmdlets are now (most) properly documented. Examples are still missing in many of them, but all are guaranteed to have, at least, synopsis and parameter documentation.
#### Breaking Changes
- TfsCmdlets won't run on earlier versions of PowerShell. Please use either **Windows PowerShell 5.1** or **PowerShell 7 (Core)**.
- `Get-TfsCredential` renamed to `New-TfsCredential`
- `Get-TfsPolicyType` renamed to `Get-GitTfsPolicyType`
- `Get-TfsTeamBacklog` renamed to `Get-TfsTeamBacklogLevel`
- `Get-TfsTeamBoardCardRuleSettings` renamed to `Get-TfsTeamBoardCardRule`
- `Set-TfsTeamBoardCardRuleSettings` renamed to `Set-TfsTeamBoardCardRule`
- Removed `Set-TfsArea`, since same result can be obtained by using either `Rename-TfsArea` or `Move-TfsArea`
- Removed `Set-TfsWorkItemBoardStatus`, since same result can be obtained by using either `Set-TfsWorkItem`
#### Known issues
- PowerShell Core **only supports PAT (Personal Access Token)** logins. All other authentication methods (username/password, credential object, interactive) will only work in Windows PowerShell;
- Some cmdlets haven't been ported to .NET yet and thus will throw a `NotImplementedException` exception when first run.
### Version 2.0.0-beta.11 (_21/Jan/2020_)
#### Improvements
##### New cmdlets: `Enter-TfsShell`, `Exit-TfsShell`, `Get-TfsVersion`, `Invoke-TfsRestApi`
The new `Enter-TfsShell` and `Exit-TfsShell` cmdlets streamline the invocation of the "Azure DevOps Shell" mode. When invoked, shows a banner with the module version and activates the custom console prompt. The custom prompt displays the currently connected Azure DevOps org/server.
`Invoke-TfsRestApi` can be used to streamline calls to the Azure DevOps REST API for scenarios/APIs not yet covered by TfsCmdlets.
Lastly, `Get-TfsVersion` returns version information on a given team project collection / organization. Currently, only Azure DevOps Services organizations are supported. Support for TFS and Azure DevOps Server will be added in a future release.
##### Convert work item query-related cmdlets (`*-TfsWorkItemQuery`, `*-TfsWorkItemQueryFolder`) to REST API
In the process, they've been generalized and converted to aliases to their new "generic" counterparts (`*-TfsWorkItemQueryItem`), much like the Area/Iteration cmdlets.
##### Convert PowerShell Format/Types XML files (*.Format.ps1xml, *.Types.ps1xml) to YAML
Now both **TfsCmdlets.Types.ps1xml** and **TfsCmdlets.Format.ps1xml** files are generated during build time from YAML files with [ps1xmlgen](https://github.com/igoravl/ps1xmlgen). That offers a much better experience to edit/mantain PowerShell's type/format XML files.
##### Argument completers
This improvement is way overdue, but now we have the first set of argument completers. Any cmdlets with the arguments `-Server`, `-Collection` and `-Project` can be "Tab-completed".
##### New aliases for Connect-* cmdlets
Now, to connect to a Azure DevOps (or TFS) collection/organization/project/team you can use optionally use one of the aliases below:
* Connect-TfsConfigurationServer
* ctfssvr
* Connect-TfsTeamProjectCollection
* Connect-AzdoOrganization
* Connect-TfsOrganization
* ctfs
* Connect-TfsTeamProject
* ctfstp
* Connect-TfsTeam
* ctfsteam
##### Bug fixes
- Fix iteration processing in Set-TfsTeam ([72f0fc0](https://github.com/igoravl/TfsCmdlets/pull/98/commits/72f0fc0cdcba7d41c8341efd0b0304303058907e)), ([e15d1ee](https://github.com/igoravl/TfsCmdlets/pull/98/commits/e15d1ee0bff2e8a5bd20b26e11d1b41413eb79b9))
- Fix build when in Release configuration ([6a795ce](https://github.com/igoravl/TfsCmdlets/pull/98/commits/6a795ce49331e37fbd7319f26c1e452d0135a7f6))
- Fix classification node (area/iteration) retrieval for old APIs ([0df3616](https://github.com/igoravl/TfsCmdlets/pull/98/commits/0df3616868a15054125261555ecefed1d830d599))
- Fix TFS Client Library version retrieval ([a9ac849](https://github.com/igoravl/TfsCmdlets/pull/98/commits/a9ac849643f5738e9616ae5c01a12c93c4d1345c))
- Fix Azure DevOps Shell command prompt
- Fix Disconnect-* issues
#### Known issues
- Incremental build is currently disabled in the default Visual Studio Code Build task, as it's a bit inconsistent.
### Version 2.0.0-beta.10 (_12/Sep/2019_)
#### Improvements
- Not an improvement per se, but the *MoveBy* argument in the Set-TfsClassificationNode cmdlet (and related area/iteration ones) now displays a 'deprecated' warning when MoveBy is specified. The argument is then ignored.
#### Bug fixes
- Fix an issue with Area/Iteration cmdlets not processing pipelines correctly
#### Known issues
- N/A
### Version 2.0.0-beta.9 (_10/Sep/2019_)
#### Improvements
- Add folder management cmdlets for Build and Release Definitions:
- Build
- Get-TfsBuildDefinitionFolder
- New-TfsBuildDefinitionFolder
- Remove-TfsBuildDefinitionFolder
- Release
- Get-TfsReleaseDefinitionFolder
- New-TfsReleaseDefinitionFolder
- Remove-TfsReleaseDefinitionFolder
#### Bug fixes
N/A
#### Known issues
- Set-TfsArea and Set-TfsIteration no longer support reordering of node (`-MoveBy` argument). Still trying to figure out how to do it with the REST API
### Version 2.0.0-beta.8 (_06/Sep/2019_)
#### Improvements
- Area/iteration cmdlets have been ported to the new REST API
- New "generic" versions of the area/iteration cmdlets are now available. `*-TfsClassificationNode` cmdlets have a `-StructureGroup` argument that accepts either 'Areas' or 'Iterations'. Actually, area and iteration cmdlets (`*-TfsArea` and `*-TfsIteration`) are now merely aliases to their respective `*-TfsClassificationNode` counterparts.
#### Bug fixes
- Fix a bug in Connect-TfsTeamProjectCollection when passing a credential ([27dd30](https://github.com/igoravl/TfsCmdlets/commit/27dd302e1b243436229c3f44fa138c22952718b3))
#### Known issues
- Set-TfsArea and Set-TfsIteration no longer support reordering of node (`-MoveBy` argument). Still trying to figure out how to do it with the REST API
### Version 2.0.0-beta.6 (_02/Sep/2019_)
#### Improvements
- Add new group membership management cmdlets:
- Add-TfsGroupMember
- Get-TfsGroupMember
- Remove-TfsGroupMember
#### Bug fixes
N/A
#### Known issues
N/A
### 1.0.0-alpha7 (_22/Oct/2015_)
#### Improvements
- Added essential help comments to all cmdlets. Future versions will improve the documentation quality and depth.
#### Bug Fixes
- Fix Nuget and Chocolatey package icons
- Fix bug in Get-TfsWorkItemType that would not return any WITDs
#### Known Issues
- N/A
### 1.0.0-alpha6 (_22/Oct/2015_)
#### Improvements
- Enable build from cmdline with VS 2015 ([ab2325b](https://github.com/igoravl/tfscmdlets/commit/ab2325bae7cce788292d8532742a230756d1fd06))
- Change PoShTools detection from error to warning ([09e62f3](https://github.com/igoravl/tfscmdlets/commit/09e62f3b034e1706fb5845b3f8588658f99a21f8))
- Skip PoShTools detection in AppVeyor ([47cafa4](https://github.com/igoravl/tfscmdlets/commit/47cafa40f16c3e9c7d6f18594154f994d74cfb9c))
- Add custom type detection logic ([b10f32c](https://github.com/igoravl/tfscmdlets/commit/b10f32c5538576ea3cec7bf9f8b8d4c96eddba56))
#### Bug Fixes
- Fix commit message with apostrophe breaking build ([8066ab8](https://github.com/igoravl/tfscmdlets/commit/8066ab8310fa21111e09c5ecba306914edb6e4ab))
- Add proper parameter initialization for credentials ([d0c4d6c](https://github.com/igoravl/tfscmdlets/commit/d0c4d6c7d28682f43ae730904d802ebf4a2d4584))
- Fix handling of current config server ([d7b53f](https://github.com/igoravl/tfscmdlets/commit/d7b53fca74a66f22f793bed39f1ef3bdf642ae83))
#### Known Issues
- N/A
### 1.0.0-alpha5 (_10/Sep/2015_)
#### Improvements
- Add cascade disconnection: When calling a "higher" Disconnect cmdlet (e.g. Disconnect-TfsConfigurationServer), the "lower" ones (e.g. TeamProjectCollection, TeamProject) are cascade-invoked, in other to prevent inconsistent connection information.
#### Bug fixes
- Fix conditional use of -Title in New-TfsWorkItem ([96a8a60](https://github.com/igoravl/tfscmdlets/commit/818af6e9d6ba3f30e976f3ef20d6070ac50fa3e7))
- Fix argument naming and pipelined return in Get-TfsWorkItem ([0a118125](https://github.com/igoravl/tfscmdlets/commit/0a11812554b447f4418e11454911ca5f53f34924))
- Fix return when passing -Current in Get-TfsConfigurationServer ([58647d2f](https://github.com/igoravl/tfscmdlets/commit/58647d2f29d84d6f5db4e0022062c2dd30cfaba1))
#### Known Issues
- N/A
### 1.0.0-alpha4 (_03/Sep/2015_)
#### Improvements
- Remove dependency on .NET 3.5
#### Bug fixes
- N/A
#### Known Issues
- N/A
### 1.0.0-alpha3 (_03/Sep/2015_)
#### Improvements
- Add help comments to the Areas & Iterations functions
#### Bug fixes
- Fix an issue in the AssemblyResolver implementation. Previously it was implemented as a scriptblock and was running into some race conditions that would crash PowerShell. Switched to a pure .NET implementation in order to avoid the race condition.
#### Known Issues
- TfsCmdlets has currently a dependency on .NET 3.5 and won't load in computers with only .NET 4.x installed. Workaround is to install .NET 3.5. Next version will no longer depend on .NET 3.5.
Function _Log($Message)
{
if(-not $TfsCmdletsDebugStartup)
{
return
}
Write-Host "VERBOSE: $Message" -ForegroundColor Yellow
}
foreach($s in (Get-PSCallStack))
{
if($s.Position -match 'Import-Module.*(TfsCmdlets)+.*(-Verbose)+')
{
$TfsCmdletsDebugStartup = $true
break
}
}
if ($TfsCmdletsDebugStartup)
{
_Log "Entering TfsCmdlets startup debug mode" -ForegroundColor DarkYellow
}
_Log "Loading module TfsCmdlets v$($PrivateData.Version) from $PSScriptRoot"
# Initialize variables
$global:TfsCmdletsLoadSw = [System.Diagnostics.Stopwatch]::StartNew()
$PrivateData = (Test-ModuleManifest (Join-Path $PSScriptRoot 'TfsCmdlets.psd1')).PrivateData
# Configure assembly resolver
$targetFramework = $PrivateData."${PSEdition}TargetFramework"
$libPath = (Join-Path $PSScriptRoot "Lib/${targetFramework}" -Resolve)
Add-Type -Path (Join-Path $libPath "TfsCmdletsLib.dll")
_Log "Registering assemblies in $libPath"
foreach($f in (Get-ChildItem (Join-Path $libPath '*.dll') -Exclude '*WITDataStore*'))
{
try
{
_Log "- Found $($f.Name)"
[TfsCmdlets.AssemblyResolver]::AddAssembly($f.BaseName, $f.FullName)
}
catch
{
_Log " - Error loading $($f.Name): $($_.Exception.Message)"
}
}
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
<!-- Cmdlet: Get-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Get-TfsArea</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsArea</dev:code>
<dev:remarks>
<maml:para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsArea '\**\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Move-TfsArea</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
<maml:para>This is an alias of the Destination parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>New-TfsArea</command:name>
<command:verb>New</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Creates a new Work Item Area in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Remove-TfsArea</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Deletes one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>NewPath</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
<maml:para>This is an alias of the MoveTo parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Rename-TfsArea</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Renames a Work Area. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Test-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Test-TfsArea</command:name>
<command:verb>Test</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Determines whether the specified Work Area exist. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Test-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>Get-TfsBuildDefinitionFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Gets one or more build/pipeline definition folders in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Get-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>New-TfsBuildDefinitionFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Creates a new build/pipeline definition folder </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any child folders. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/New-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>Remove-TfsBuildDefinitionFolder</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Deletes one or more build/pipeline definition folders. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Remove-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsConfigurationServer</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Connects to a configuration server. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, it is represented by the Tfs_Configuration database. Operations that should be performed on a server level (such as setting server-level permissions) require a connection to a TFS configuration server. Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. NOTE: Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TfsConfigurationServer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Client.TfsConfigurationServer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</dev:code>
<dev:remarks>
<maml:para>Connects to the TFS server specified by the URL in the Server argument</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Connect-TfsConfigurationServer -Server vsalm</dev:code>
<dev:remarks>
<maml:para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsConfigurationServer</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected configuration server. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsConfigurationServer</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
<command:details>
<command:name>Get-TfsConfigurationServer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Gets information about a configuration server. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by server -->
<command:syntaxItem tfscmdlets:parameterSet="Get by server">
<maml:name>Get-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsConfigurationServer</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsConfigurationServerConnectionString -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsConfigurationServerConnectionString</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsConfigurationServerConnectionString</command:noun>
<maml:description>
<maml:para>Gets the configuration server database connection string. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Use computer name -->
<command:syntaxItem tfscmdlets:parameterSet="Use computer name">
<maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use session -->
<command:syntaxItem tfscmdlets:parameterSet="Use session">
<maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsConfigurationServerConnectionString</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>Online version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>Get-TfsInstallationPath</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsCredential -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>New-TfsCredential</command:name>
<command:verb>New</command:verb>
<command:noun>TfsCredential</command:noun>
<maml:description>
<maml:para>Provides credentials to use when you connect to a Team Foundation Server or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: VssCredentials -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Common.VssCredentials</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/New-TfsCredential</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitBranch -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
<command:details>
<command:name>Get-TfsGitBranch</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitBranch</command:noun>
<maml:description>
<maml:para>Gets information from one or more branches in a remote Git repository. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by name -->
<command:syntaxItem tfscmdlets:parameterSet="Get by name">
<maml:name>Get-TfsGitBranch</maml:name>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get default -->
<command:syntaxItem tfscmdlets:parameterSet="Get default">
<maml:name>Get-TfsGitBranch</maml:name>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default branch in the given repository. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>RefName</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
<maml:para>This is an alias of the Branch parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default branch in the given repository. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitBranchStats -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Get-TfsGitBranch</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitBranchPolicy -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
<command:details>
<command:name>Get-TfsGitBranchPolicy</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitBranchPolicy</command:noun>
<maml:description>
<maml:para>Gets the Git branch policy configuration of the given Git branches. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitBranchPolicy</maml:name>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>RefName</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
<maml:para>This is an alias of the Branch parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PolicyConfiguration -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitBranchPolicy</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitPolicyType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
<command:details>
<command:name>Get-TfsGitPolicyType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitPolicyType</command:noun>
<maml:description>
<maml:para>Gets one or more Git branch policies supported by the given team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitPolicyType</maml:name>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
<maml:para>This is an alias of the PolicyType parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PolicyType -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyType</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitPolicyType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Get-TfsGitRepository</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Get-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>New-TfsGitRepository</command:name>
<command:verb>New</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Creates a new Git repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/New-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Remove-TfsGitRepository</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Deletes one or more Git repositories from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Remove-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Rename-TfsGitRepository</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Renames a Git repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Rename-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Export-TfsGlobalList</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Exports the contents of one or more Global Lists to XML. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdlets generates an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist" </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Export-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>To export or list global lists, you must be a member of the Project Collection Valid Users group or have your View collection-level information permission set to Allow. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Export-TfsGlobalList | Out-File "gl.xml"</dev:code>
<dev:remarks>
<maml:para>Exports all global lists in the current project collection to a file called gl.xml.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Export-TfsGlobalList -Name "Builds - *"</dev:code>
<dev:remarks>
<maml:para>Exports all build-related global lists (with names starting with "Build - ") and return the resulting XML document.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Export-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Get-TfsGlobalList</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more Global Lists. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GlobalList -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Models.GlobalList</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Get-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Import-TfsGlobalList</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Imports one or more Global Lists from an XML document </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdletsimports an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist" </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsGlobalList</maml:name>
<!-- Parameter: InputObject -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to import a global list that already exists. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: InputObject -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>Xml</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
<maml:para>This is an alias of the InputObject parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to import a global list that already exists. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:alertSet>
<maml:para>To import global lists, you must be a member of the Project Collection Administrators security group. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-Content gl.xml | Import-GlobalList</dev:code>
<dev:remarks>
<maml:para>Imports the contents of an XML document called gl.xml to the current project collection</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Import-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>New-TfsGlobalList</command:name>
<command:verb>New</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Creates a new Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Items -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
<maml:name>Items</maml:name>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Items -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
<maml:name>Items</maml:name>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PSCustomObject -->
<command:returnValue>
<dev:type>
<maml:name>System.Management.Automation.PSCustomObject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/New-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Remove-TfsGlobalList</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Deletes one or more Global Lists. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Remove-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Rename-TfsGlobalList</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Changes either the name or the contents of a Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Rename-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Set-TfsGlobalList</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Changes the contents of a Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Edit list items -->
<command:syntaxItem tfscmdlets:parameterSet="Edit list items">
<maml:name>Set-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Add -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Add</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be added to the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Creates a new list if the specified one does not exist. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Remove -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Remove</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be removed from the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Add -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Add</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be added to the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Remove -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Remove</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be removed from the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Creates a new list if the specified one does not exist. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Set-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Add-TfsGroupMember</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Adds group members to an Azure DevOps group. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsGroupMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Add-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Get-TfsGroupMember</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Gets the members of a Azure DevOps group </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGroupMember</maml:name>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Remove-TfsGroupMember</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Removes a member from an Azure DevOps group. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGroupMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsIdentity -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity">
<command:details>
<command:name>Get-TfsIdentity</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsIdentity</command:noun>
<maml:description>
<maml:para>Gets one or more identities that represents either users or groups in Azure DevOps. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get Identity -->
<command:syntaxItem tfscmdlets:parameterSet="Get Identity">
<maml:name>Get-TfsIdentity</maml:name>
<!-- Parameter: Identity -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Identity</maml:name>
<maml:description>
<maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
<maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
</maml:description>
<command:parameterValue required="true">QueryMembership</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Direct</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current user -->
<command:syntaxItem tfscmdlets:parameterSet="Get current user">
<maml:name>Get-TfsIdentity</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Identity -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Identity</maml:name>
<maml:description>
<maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
<maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
</maml:description>
<command:parameterValue required="true">QueryMembership</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Direct</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Get-TfsIdentity</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsIdentitySync -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Start-TfsIdentitySync</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsIdentitySync</command:noun>
<maml:description>
<maml:para>Triggers an Identity Sync server job. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsIdentitySync</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wait -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Wait</maml:name>
<maml:description>
<maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wait -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Wait</maml:name>
<maml:description>
<maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Start-TfsIdentitySync</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsInstallationPath -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsInstallationPath</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsInstallationPath</command:noun>
<maml:description>
<maml:para>Gets the installation path of a given Team Foundation Server component. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Many times a Team Foundation Server admin needs to retrieve the location where TFS is actually installed. That can be useful, for instance, to locate tools like TfsSecurity or TfsServiceControl. That information is recorded at setup time, in a well-known location in the Windows Registry of the server where TFS is installed. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Use computer name -->
<command:syntaxItem tfscmdlets:parameterSet="Use computer name">
<maml:name>Get-TfsInstallationPath</maml:name>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use session -->
<command:syntaxItem tfscmdlets:parameterSet="Use session">
<maml:name>Get-TfsInstallationPath</maml:name>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsInstallationPath -Version 2017</dev:code>
<dev:remarks>
<maml:para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</dev:code>
<dev:remarks>
<maml:para>Gets the location where the SharePoint Extensions have been installed in the remote server SPTFSSRV, prompting for admin credentials to be used for establishing a PS Remoting session to the server</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsInstallationPath</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Get-TfsIteration</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsIteration</dev:code>
<dev:remarks>
<maml:para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsIteration '\**\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Move-TfsIteration</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
<maml:para>This is an alias of the Destination parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsIteration</dev:code>
<dev:remarks>
<maml:para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsIteration '\\**\\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>New-TfsIteration</command:name>
<command:verb>New</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Creates a new Iteration in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Remove-TfsIteration</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Deletes one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>NewPath</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
<maml:para>This is an alias of the MoveTo parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Rename-TfsIteration</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Renames a Iteration. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Set-TfsIteration</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Modifies the dates of an iteration. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: FinishDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>FinishDate</maml:name>
<maml:description>
<maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: FinishDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>FinishDate</maml:name>
<maml:description>
<maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Set-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Test-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Test-TfsIteration</command:name>
<command:verb>Test</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Determines whether the specified Iteration exist. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Test-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Export-TfsProcessTemplate</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Exports a XML-based process template definition to disk. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdlet offers a functional replacement to the "Export Process Template" feature found in Team Explorer. All files pertaining to the specified process template (work item defininitons, reports, saved queries, process configuration and so on) are downloaded from the given Team Project Collection and saved in a local directory, preserving the directory structure required to later re-import it. This is specially handy to do small changes to a process template or to create a new process template based on an existing one. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Export-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationPath</maml:name>
<maml:description>
<maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewDescription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewDescription</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original description is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationPath</maml:name>
<maml:description>
<maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewDescription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewDescription</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original description is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</dev:code>
<dev:remarks>
<maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Export-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Get-TfsProcessTemplate</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Gets information from one or more process templates. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
<maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Process -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Get-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Import-TfsProcessTemplate</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Imports a process template definition from disk. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsProcessTemplate</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Visible</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Visible</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Import-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>New-TfsProcessTemplate</command:name>
<command:verb>New</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Creates a new inherited process. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new process. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Parent -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Parent</maml:name>
<maml:description>
<maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ReferenceName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ReferenceName</maml:name>
<maml:description>
<maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
<maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new process. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ReferenceName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ReferenceName</maml:name>
<maml:description>
<maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Parent -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Parent</maml:name>
<maml:description>
<maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Process -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/New-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegisteredConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
<command:details>
<command:name>Get-TfsRegisteredConfigurationServer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegisteredConfigurationServer</command:noun>
<maml:description>
<maml:para>Gets one or more Team Foundation Server addresses registered in the current computer. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegisteredConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
<maml:para>This is an alias of the Server parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: RegisteredConfigurationServer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Client.RegisteredConfigurationServer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsRegisteredConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegisteredTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Get-TfsRegisteredTeamProjectCollection</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegisteredTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Gets one or more Team Project Collection addresses registered in the current computer. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegisteredTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsRegisteredTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegistryValue -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
<command:details>
<command:name>Get-TfsRegistryValue</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegistryValue</command:noun>
<maml:description>
<maml:para>Gets the value of a given Team Foundation Server registry entry. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. </maml:para>
<maml:para>Registry entries can be scoped to the server, to a collection or to a specific user. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegistryValue</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Object -->
<command:returnValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
<maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
<dev:remarks>
<maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Get-TfsRegistryValue</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsRegistryValue -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
<command:details>
<command:name>Set-TfsRegistryValue</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsRegistryValue</command:noun>
<maml:description>
<maml:para>Sets the value of a given Team Foundation Server registry entry. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the value specified in the command. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsRegistryValue</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Value -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Value</maml:name>
<maml:description>
<maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Value -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Value</maml:name>
<maml:description>
<maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Object -->
<command:returnValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
<maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
<dev:remarks>
<maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Set-TfsRegistryValue</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsReleaseDefinition -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Get-TfsReleaseDefinition</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsReleaseDefinition</command:noun>
<maml:description>
<maml:para>Gets information from one or more release definitions in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsReleaseDefinition</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: ReleaseDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.ReleaseDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinition</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Get-TfsReleaseDefinitionFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Gets one or more Release/pipeline definition folders in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, Ascending, Descending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, Ascending, Descending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>New-TfsReleaseDefinitionFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Creates a new release definition folder. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/New-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Remove-TfsReleaseDefinitionFolder</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Deletes one or more release definition folders. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Remove-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Invoke-TfsRestApi -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
<command:details>
<command:name>Invoke-TfsRestApi</command:name>
<command:verb>Invoke</command:verb>
<command:noun>TfsRestApi</command:noun>
<maml:description>
<maml:para>Invoke an Azure DevOps REST API. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Invoke-TfsRestApi can automatically parse an example URL from https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens (such as {organization}, {project} and {team}) as long as collection / project / team information are available via either the their respective arguments in this command or the corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted from the supplied example, when available. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Invoke-TfsRestApi</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AdditionalHeaders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AdditionalHeaders</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ApiVersion -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ApiVersion</maml:name>
<maml:description>
<maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>4.1</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsTask -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsTask</maml:name>
<maml:description>
<maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Body -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Body</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Method -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Method</maml:name>
<maml:description>
<maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>GET</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryParameters -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryParameters</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Raw -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Raw</maml:name>
<maml:description>
<maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: RequestContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RequestContentType</maml:name>
<maml:description>
<maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: ResponseContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ResponseContentType</maml:name>
<maml:description>
<maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UseHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UseHost</maml:name>
<maml:description>
<maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Method -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Method</maml:name>
<maml:description>
<maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>GET</dev:defaultValue>
</command:parameter>
<!-- Parameter: Body -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Body</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Content</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
<maml:para>This is an alias of the Body parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RequestContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RequestContentType</maml:name>
<maml:description>
<maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: ResponseContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ResponseContentType</maml:name>
<maml:description>
<maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: AdditionalHeaders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AdditionalHeaders</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryParameters -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryParameters</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ApiVersion -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ApiVersion</maml:name>
<maml:description>
<maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>4.1</dev:defaultValue>
</command:parameter>
<!-- Parameter: UseHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UseHost</maml:name>
<maml:description>
<maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Raw -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Raw</maml:name>
<maml:description>
<maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsTask -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsTask</maml:name>
<maml:description>
<maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues />
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</dev:code>
<dev:remarks>
<maml:para>Calls the API described by an example extracted from the docs.microsoft.com web site. HTTP method, host name and API version are all set based on the supplied values; Tokens {organization}, {project} and {team} are properly replaced with the corresponding values provided by the current connection context (via previous calls to Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 3 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Invoke-TfsRestApi</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRestClient -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
<command:details>
<command:name>Get-TfsRestClient</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRestClient</command:noun>
<maml:description>
<maml:para>Gets an Azure DevOps HTTP Client object instance. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication information supplied by their parent connection object and can be used as a more convenient mechanism to issue API calls. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Get by collection -->
<command:syntaxItem tfscmdlets:parameterSet="Get by collection">
<maml:name>Get-TfsRestClient</maml:name>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get by server -->
<command:syntaxItem tfscmdlets:parameterSet="Get by server">
<maml:name>Get-TfsRestClient</maml:name>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
<maml:para>This is an alias of the TypeName parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: VssHttpClientBase -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssHttpClientBase</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Get-TfsRestClient</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookConsumer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookConsumer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookConsumer</command:noun>
<maml:description>
<maml:para>Gets one or more service hook consumers. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Service hook consumers are the services that can consume (receive) notifications triggered by Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookConsumer</maml:name>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
<maml:para>This is an alias of the Consumer parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
<maml:para>This is an alias of the Consumer parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Consumer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Consumer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookConsumer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookNotificationHistory -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookNotificationHistory</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookNotificationHistory</command:noun>
<maml:description>
<maml:para>Gets the notification history for a given service hook subscription </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookNotificationHistory</maml:name>
<!-- Parameter: Subscription -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: From -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>From</maml:name>
<maml:description>
<maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Status -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Status</maml:name>
<maml:description>
<maml:para>Specifies the notification status to filter on. </maml:para>
<maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
</maml:description>
<command:parameterValue required="true">NotificationStatus</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
<command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: To -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>To</maml:name>
<maml:description>
<maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Subscription -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: From -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>From</maml:name>
<maml:description>
<maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: To -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>To</maml:name>
<maml:description>
<maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Status -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Status</maml:name>
<maml:description>
<maml:para>Specifies the notification status to filter on. </maml:para>
<maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
</maml:description>
<command:parameterValue required="true">NotificationStatus</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
<command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Notification -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Notification</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookNotificationHistory</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookPublisher -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookPublisher</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookPublisher</command:noun>
<maml:description>
<maml:para>Gets one or more service hook publishers. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookPublisher</maml:name>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
<maml:para>This is an alias of the Publisher parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
<maml:para>This is an alias of the Publisher parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Publisher -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Publisher</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookPublisher</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookSubscription -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookSubscription</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookSubscription</command:noun>
<maml:description>
<maml:para>Gets one or more service hook subscriptions </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookSubscription</maml:name>
<!-- Parameter: Subscription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EventType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EventType</maml:name>
<maml:description>
<maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Subscription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
<maml:para>This is an alias of the Subscription parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EventType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EventType</maml:name>
<maml:description>
<maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Subscription -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Subscription</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookSubscription</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Enter-TfsShell -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
<command:details>
<command:name>Enter-TfsShell</command:name>
<command:verb>Enter</command:verb>
<command:noun>TfsShell</command:noun>
<maml:description>
<maml:para>Activates the Azure DevOps Shell </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Enter-TfsShell</maml:name>
<!-- Parameter: DoNotClearHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DoNotClearHost</maml:name>
<maml:description>
<maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoLogo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoLogo</maml:name>
<maml:description>
<maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: WindowTitle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WindowTitle</maml:name>
<maml:description>
<maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WindowTitle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WindowTitle</maml:name>
<maml:description>
<maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
</command:parameter>
<!-- Parameter: DoNotClearHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DoNotClearHost</maml:name>
<maml:description>
<maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoLogo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoLogo</maml:name>
<maml:description>
<maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Enter-TfsShell</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Exit-TfsShell -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
<command:details>
<command:name>Exit-TfsShell</command:name>
<command:verb>Exit</command:verb>
<command:noun>TfsShell</command:noun>
<maml:description>
<maml:para>Deactivates the Azure DevOps Shell </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Exit-TfsShell</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Exit-TfsShell</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeam</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Connects to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeam</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected team. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeam cmdlet removes the connection previously set by its counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" as provided by "Get-TfsTeam -Current" will no longer work after a call to this cmdlet, unless their -Team argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeam</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Get-TfsTeam</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Gets information about one or more teams. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by team -->
<command:syntaxItem tfscmdlets:parameterSet="Get by team">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get default team -->
<command:syntaxItem tfscmdlets:parameterSet="Get default team">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default team in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default team in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Get-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>New-TfsTeam</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Creates a new team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoBacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoBacklogIteration</maml:name>
<maml:description>
<maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoDefaultArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoDefaultArea</maml:name>
<maml:description>
<maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>TeamFieldValue</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
<maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoDefaultArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoDefaultArea</maml:name>
<maml:description>
<maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoBacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoBacklogIteration</maml:name>
<maml:description>
<maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/New-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Remove-TfsTeam</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Deletes a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Remove-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Rename-TfsTeam</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Renames a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Rename-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Set-TfsTeam</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Changes the details of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: BacklogVisibilities -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogVisibilities</maml:name>
<maml:description>
<maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BugsBehavior -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BugsBehavior</maml:name>
<maml:description>
<maml:para>Specifies how bugs should behave when added to a board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Sets the supplied team as the default team project team. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkingDays -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkingDays</maml:name>
<maml:description>
<maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>TeamFieldValue</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
<maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: BugsBehavior -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BugsBehavior</maml:name>
<maml:description>
<maml:para>Specifies how bugs should behave when added to a board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogVisibilities -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogVisibilities</maml:name>
<maml:description>
<maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Sets the supplied team as the default team project team. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: WorkingDays -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkingDays</maml:name>
<maml:description>
<maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Set-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Add-TfsTeamAdmin</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Adds a new administrator to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsTeamAdmin</maml:name>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Add-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Get-TfsTeamAdmin</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Gets the administrators of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamAdmin</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Get-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Remove-TfsTeamAdmin</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Removes an administrator from a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamAdmin</maml:name>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Remove-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBacklogLevel -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Backlog">
<command:details>
<command:name>Get-TfsTeamBacklogLevel</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBacklogLevel</command:noun>
<maml:description>
<maml:para>Gets information about one or more backlog levels of a given team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBacklogLevel</maml:name>
<!-- Parameter: Backlog -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Backlog</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Backlog -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Backlog</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
<maml:para>This is an alias of the Backlog parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: BacklogLevelConfiguration -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.BacklogLevelConfiguration</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Backlog/Get-TfsTeamBacklogLevel</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBoard -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Get-TfsTeamBoard</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBoard</command:noun>
<maml:description>
<maml:para>Gets one or more team boards. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBoard</maml:name>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
<maml:para>This is an alias of the Board parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Board -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.Board</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoard</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBoardCardRule -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Get-TfsTeamBoardCardRule</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBoardCardRule</command:noun>
<maml:description>
<maml:para>Gets one or more team board card rules. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBoardCardRule</maml:name>
<!-- Parameter: Rule -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Rule</maml:name>
<maml:description>
<maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RuleType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RuleType</maml:name>
<maml:description>
<maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
<maml:para>Possible values: CardColor, TagColor, All</maml:para>
</maml:description>
<command:parameterValue required="true">CardRuleType</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.CardRuleType</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>All</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">All</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Rule -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Rule</maml:name>
<maml:description>
<maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: RuleType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RuleType</maml:name>
<maml:description>
<maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
<maml:para>Possible values: CardColor, TagColor, All</maml:para>
</maml:description>
<command:parameterValue required="true">CardRuleType</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.CardRuleType</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>All</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">All</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Rule -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.Rule</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoardCardRule</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsTeamBoardCardRuleSetting -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Set-TfsTeamBoardCardRuleSetting</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsTeamBoardCardRuleSetting</command:noun>
<maml:description>
<maml:para>Set the card rule settings of the specified backlog board. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsTeamBoardCardRuleSetting</maml:name>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: BoardCardRuleSettings -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Set-TfsTeamBoardCardRuleSetting</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Add-TfsTeamMember</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Adds new members to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsTeamMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Add-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Get-TfsTeamMember</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Gets the members of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamMember</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Get-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Remove-TfsTeamMember</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Removes a member from a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Remove-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeamProject</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Connects to a Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeamProject</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected team project. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" as provided by "Get-TfsTeamProject -Current" will no longer work after a call to this cmdlet, unless their -Project argument is provided or a new call to Connect-TfsTeamProject is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeamProject</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Get-TfsTeamProject</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Gets information about one or more team projects. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Get-TfsTeamProject cmdlets gets one or more Team Project objects (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied Team Project Collection. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Get by project -->
<command:syntaxItem tfscmdlets:parameterSet="Get by project">
<maml:name>Get-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeamProject</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Get-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>New-TfsTeamProject</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Creates a new team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description for the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SourceControl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SourceControl</maml:name>
<maml:description>
<maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description for the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SourceControl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SourceControl</maml:name>
<maml:description>
<maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/New-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Remove-TfsTeamProject</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Deletes one or more team projects. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Hard -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Hard</maml:name>
<maml:description>
<maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Hard -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Hard</maml:name>
<maml:description>
<maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Remove-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Rename-TfsTeamProject</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Renames a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Rename-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeamProjectCollection</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Connects to a TFS team project collection or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or Azure DevOps organization. </maml:para>
<maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsTeamProjectCollection. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: VssConnection -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsTeamProjectCollection as their "default connection". </maml:para>
<maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsTeamProjectCollection by default. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
<dev:remarks>
<maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeamProjectCollection</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected TFS team project collection or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Dismount-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Dismount-TfsTeamProjectCollection</command:name>
<command:verb>Dismount</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Detaches a team project collection database from a Team Foundation Server installation. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Before you move a collection, you must first detach it from the deployment of TFS on which it is running. It's very important that you do not skip this step. When you detach a collection, all jobs and services are stopped, and then the collection database is stopped. In addition, the detach process copies over the collection-specific data from the configuration database and saves it as part of the team project collection database. This configuration data is what allows the collection database to be attached to a different deployment of TFS. If that data is not present, you cannot attach the collection to any deployment of TFS except the one from which it originated. If detachment succeeds, this cmdlets returns the original database connection string. It is required to re-attach the collection to TFS. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Dismount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>Detaching a collection prevents users from accessing any projects in that collection. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</dev:code>
<dev:remarks>
<maml:para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Dismount-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Get-TfsTeamProjectCollection</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by collection -->
<command:syntaxItem tfscmdlets:parameterSet="Get by collection">
<maml:name>Get-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: VssConnection -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Mount-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Mount-TfsTeamProjectCollection</command:name>
<command:verb>Mount</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Attaches a team project collection database to a Team Foundation Server installation. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Use database server -->
<command:syntaxItem tfscmdlets:parameterSet="Use database server">
<maml:name>Mount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseName</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseServer -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseServer</maml:name>
<maml:description>
<maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use connection string -->
<command:syntaxItem tfscmdlets:parameterSet="Use connection string">
<maml:name>Mount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ConnectionString -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ConnectionString</maml:name>
<maml:description>
<maml:para>Specifies the connection string of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
<maml:para>This is an alias of the Collection parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseServer -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseServer</maml:name>
<maml:description>
<maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseName</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ConnectionString -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ConnectionString</maml:name>
<maml:description>
<maml:para>Specifies the connection string of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Mount-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>New-TfsTeamProjectCollection</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Creates a new team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Connection -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Models.Connection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/New-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Remove-TfsTeamProjectCollection</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Deletes a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Remove-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Start-TfsTeamProjectCollection</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Starts an offline team project collection and make it online. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Start-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Stop-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Stop-TfsTeamProjectCollection</command:name>
<command:verb>Stop</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Stops a team project collection and make it offline. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Stop-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Stop-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Undo-TfsTeamProjectRemoval -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Undo-TfsTeamProjectRemoval</command:name>
<command:verb>Undo</command:verb>
<command:noun>TfsTeamProjectRemoval</command:noun>
<maml:description>
<maml:para>Undeletes one or more team projects. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Undo-TfsTeamProjectRemoval</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Undo-TfsTeamProjectRemoval</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Copy-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Copy-TfsTestPlan</command:name>
<command:verb>Copy</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Clone a test plan and, optionally, its test suites and test cases. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other. When you clone a test suite, the following objects are copied from the source test plan to the destination test plan: * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information); * Shared steps referenced by cloned test cases; * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations); * Action Recordings linked from a cloned test case; * Links and Attachments; * Test configuration. The items below are only copied when using -CloneRequirements: * Requirements-based suites; * Requirements work items (product backlog items or user stories); * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Copy-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the name of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CloneRequirements -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CloneRequirements</maml:name>
<maml:description>
<maml:para>Clones requirements referenced by the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CopyAncestorHierarchy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CopyAncestorHierarchy</maml:name>
<maml:description>
<maml:para>Copies ancestor hierarchy. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DeepClone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DeepClone</maml:name>
<maml:description>
<maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationWorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationWorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the name of the workitem type of the clone. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Test Case</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Clone all test suites recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: RelatedLinkComment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RelatedLinkComment</maml:name>
<maml:description>
<maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SuiteIds -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SuiteIds</maml:name>
<maml:description>
<maml:para>Clones only the specified suites. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the name of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DeepClone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DeepClone</maml:name>
<maml:description>
<maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Clone all test suites recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CopyAncestorHierarchy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CopyAncestorHierarchy</maml:name>
<maml:description>
<maml:para>Copies ancestor hierarchy. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CloneRequirements -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CloneRequirements</maml:name>
<maml:description>
<maml:para>Clones requirements referenced by the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationWorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationWorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the name of the workitem type of the clone. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Test Case</dev:defaultValue>
</command:parameter>
<!-- Parameter: SuiteIds -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SuiteIds</maml:name>
<maml:description>
<maml:para>Clones only the specified suites. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RelatedLinkComment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RelatedLinkComment</maml:name>
<maml:description>
<maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</dev:code>
<dev:remarks>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Copy-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Get-TfsTestPlan</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Active -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Active</maml:name>
<maml:description>
<maml:para>Get only the active plans. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoPlanDetails -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoPlanDetails</maml:name>
<maml:description>
<maml:para>Get only basic properties of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Gets only the plans owned by the specified user. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Gets only the plans owned by the specified user. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoPlanDetails -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoPlanDetails</maml:name>
<maml:description>
<maml:para>Get only basic properties of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Active -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Active</maml:name>
<maml:description>
<maml:para>Get only the active plans. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Get-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>New-TfsTestPlan</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Creates a new test plan. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EndDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EndDate</maml:name>
<maml:description>
<maml:para>Specifies the end date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: EndDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EndDate</maml:name>
<maml:description>
<maml:para>Specifies the end date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/New-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Remove-TfsTestPlan</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Deletes one or more test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Remove-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Rename-TfsTestPlan</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Renames a test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Rename-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsVersion -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsVersion</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsVersion</command:noun>
<maml:description>
<maml:para>Gets the version information about Team Foundation / Azure DevOps servers and Azure DevOps Services organizations. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsVersion</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: ServerVersion -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Util.ServerVersion</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsVersion</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>Get-TfsWiki</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Gets information from one or more Wiki repositories in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get all wikis -->
<command:syntaxItem tfscmdlets:parameterSet="Get all wikis">
<maml:name>Get-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Get Project Wiki">
<maml:name>Get-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WikiV2 -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Get-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>New-TfsWiki</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Creates a new Wiki repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Create Code Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Create Code Wiki">
<maml:name>New-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Provision Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Provision Project Wiki">
<maml:name>New-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: WikiV2 -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/New-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>Remove-TfsWiki</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Deletes one or more Git repositories from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Remove code wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Remove code wiki">
<maml:name>Remove-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Remove Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Remove Project Wiki">
<maml:name>Remove-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Remove-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Copy-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Copy-TfsWorkItem</command:name>
<command:verb>Copy</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Creates a copy of a work item, optionally changing its type. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) that is of the specified work item type. </maml:para>
<maml:para>By default, the copy retains the same type of the original work item, unless the Type argument is specified </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Copy-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationProject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationProject</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeAttachments -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeAttachments</maml:name>
<maml:description>
<maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeLinks -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeLinks</maml:name>
<maml:description>
<maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewType</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Copy</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewType</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeAttachments -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeAttachments</maml:name>
<maml:description>
<maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeLinks -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeLinks</maml:name>
<maml:description>
<maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationProject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationProject</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Copy</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Copy-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Get-TfsWorkItem</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Query by revision -->
<command:syntaxItem tfscmdlets:parameterSet="Query by revision">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Revision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>Revision</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: ShowWindow -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ShowWindow</maml:name>
<maml:description>
<maml:para>Opens the specified work item in the default web browser. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by date -->
<command:syntaxItem tfscmdlets:parameterSet="Query by date">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get deleted -->
<command:syntaxItem tfscmdlets:parameterSet="Get deleted">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Gets deleted work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Simple query -->
<command:syntaxItem tfscmdlets:parameterSet="Simple query">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ChangedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that created the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object[]</command:parameterValue>
<dev:type>
<maml:name>System.Object[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedDate</maml:name>
<maml:description>
<maml:para>Specifies the date when the work item was created. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Ever -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Ever</maml:name>
<maml:description>
<maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StateChangeDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StateChangeDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns work items that contain ANY ofthe supplied tags. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>WorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by WIQL -->
<command:syntaxItem tfscmdlets:parameterSet="Query by WIQL">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by filter -->
<command:syntaxItem tfscmdlets:parameterSet="Query by filter">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: Where -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Where</maml:name>
<maml:description>
<maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>WorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the WorkItemType parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CreatedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that created the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object[]</command:parameterValue>
<dev:type>
<maml:name>System.Object[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedDate</maml:name>
<maml:description>
<maml:para>Specifies the date when the work item was created. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StateChangeDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StateChangeDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns work items that contain ANY ofthe supplied tags. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Ever -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Ever</maml:name>
<maml:description>
<maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Revision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>Revision</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>rev</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
<maml:para>This is an alias of the Revision parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>WIQL</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>QueryText</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>SavedQuery</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>QueryPath</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Where -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Where</maml:name>
<maml:description>
<maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ShowWindow -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ShowWindow</maml:name>
<maml:description>
<maml:para>Opens the specified work item in the default web browser. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Gets deleted work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Get-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Move-TfsWorkItem</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Moves a work item to a different team project in the same collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Comment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Comment</maml:name>
<maml:description>
<maml:para>Specifies a comment to be added to the history </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
<maml:para>This is an alias of the Project parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Comment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Comment</maml:name>
<maml:description>
<maml:para>Specifies a comment to be added to the history </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Move-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>New-TfsWorkItem</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Creates a new work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItem</maml:name>
<!-- Parameter: Type -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/New-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Remove-TfsWorkItem</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Deletes a work item from a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destroy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destroy</maml:name>
<maml:description>
<maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destroy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destroy</maml:name>
<maml:description>
<maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Remove-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Search-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Search-TfsWorkItem</command:name>
<command:verb>Search</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Search-TfsWorkItem</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Results -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Results</maml:name>
<maml:description>
<maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>100</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Results -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Results</maml:name>
<maml:description>
<maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>100</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Search-TfsWorkItem</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Set-TfsWorkItem</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Sets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Set-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemHistory -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.History">
<command:details>
<command:name>Get-TfsWorkItemHistory</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemHistory</command:noun>
<maml:description>
<maml:para>Gets the history of changes of a work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemHistory</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: PSCustomObject -->
<command:returnValue>
<dev:type>
<maml:name>System.Management.Automation.PSCustomObject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/History/Get-TfsWorkItemHistory</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsWorkItemLink -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Add-TfsWorkItemLink</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsWorkItemLink</command:noun>
<maml:description>
<maml:para>Adds a link between two work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsWorkItemLink</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Add-TfsWorkItemLink</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemLink -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Get-TfsWorkItemLink</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemLink</command:noun>
<maml:description>
<maml:para>Gets the links in a work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemLink</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLink</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemLinkEndType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Get-TfsWorkItemLinkEndType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemLinkEndType</command:noun>
<maml:description>
<maml:para>Gets the work item link end types of a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemLinkEndType</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkEndType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Export-TfsWorkItemQuery</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Exports a saved work item query to XML. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Work item queries can be exported to XML files (.WIQ extension) in order to be shared and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use this cmdlet to generate WIQ files compatible with the format supported by Team Explorer. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Export to file -->
<command:syntaxItem tfscmdlets:parameterSet="Export to file">
<maml:name>Export-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Encoding -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>UTF-8</dev:defaultValue>
</command:parameter>
<!-- Parameter: FlattenFolders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>FlattenFolders</maml:name>
<maml:description>
<maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Export to output stream -->
<command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
<maml:name>Export-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Encoding -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>UTF-8</dev:defaultValue>
</command:parameter>
<!-- Parameter: FlattenFolders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>FlattenFolders</maml:name>
<maml:description>
<maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Export-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Get-TfsWorkItemQuery</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Gets the definition of one or more work item saved queries. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>New-TfsWorkItemQuery</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Create a new work items query in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Wiql -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Wiql</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wiql -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Wiql</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Definition</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
<maml:para>This is an alias of the Wiql parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemQueryFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Get-TfsWorkItemQueryFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemQueryFolder</command:noun>
<maml:description>
<maml:para>Gets the definition of one or more work item saved queries. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemQueryFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQueryFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemQueryFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>New-TfsWorkItemQueryFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemQueryFolder</command:noun>
<maml:description>
<maml:para>Create a new work items query in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemQueryFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQueryFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Get-TfsWorkItemTag</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Gets one or more work item tags. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeInactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeInactive</maml:name>
<maml:description>
<maml:para>Includes tags not associated to any work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeInactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeInactive</maml:name>
<maml:description>
<maml:para>Includes tags not associated to any work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Get-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>New-TfsWorkItemTag</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Creates a new work item tag. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/New-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Remove-TfsWorkItemTag</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Deletes one or more work item tags. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Remove-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Rename-TfsWorkItemTag</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Renames a work item tag. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Rename-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Export-TfsWorkItemType</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Exports an XML work item type definition from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Export to output stream -->
<command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
<maml:name>Export-TfsWorkItemType</maml:name>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Export to file -->
<command:syntaxItem tfscmdlets:parameterSet="Export to file">
<maml:name>Export-TfsWorkItemType</maml:name>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
<maml:para>This is an alias of the Type parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Export-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Get-TfsWorkItemType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Type definitions from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by type -->
<command:syntaxItem tfscmdlets:parameterSet="Get by type">
<maml:name>Get-TfsWorkItemType</maml:name>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get by work item -->
<command:syntaxItem tfscmdlets:parameterSet="Get by work item">
<maml:name>Get-TfsWorkItemType</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
<maml:para>This is an alias of the Type parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemType -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Get-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Import-TfsWorkItemType</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Imports a work item type definition into a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsWorkItemType</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Import-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsXamlBuild -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.XamlBuild">
<command:details>
<command:name>Start-TfsXamlBuild</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsXamlBuild</command:noun>
<maml:description>
<maml:para>Queues a XAML Build. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsXamlBuild</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/XamlBuild/Start-TfsXamlBuild</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
</helpItems>
#
# Module manifest for module 'TfsCmdlets'
#
# Generated by: Igor Abade V. Leite
#
# Generated on: 12/1/2020
#
@{
# Script module or binary module file associated with this manifest.
RootModule = if($PSEdition -eq "Core") { "Lib/Core/TfsCmdlets.PSCore.dll" } else { "Lib/Desktop/TfsCmdlets.PSDesktop.dll" }
# Version number of this module.
ModuleVersion = '2.0.0'
# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'
# ID used to uniquely identify this module
GUID = 'bd4390dc-a8ad-4bce-8d69-f53ccf8e4163'
# Author of this module
Author = 'Igor Abade V. Leite'
# Company or vendor of this module
CompanyName = 'Igor Abade V. Leite'
# Copyright statement for this module
Copyright = '(c) 2014 Igor Abade V. Leite. All rights reserved.'
# Description of the functionality provided by this module
Description = 'PowerShell Cmdlets for Azure DevOps and Team Foundation Server'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.6.2'
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = 'TfsCmdlets.Types.ps1xml'
# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = 'TfsCmdlets.Format.ps1xml'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('Private/Functions.psm1',
'Private/Aliases.psm1',
'Private/ArgumentCompleters.psm1',
'Private/Admin.psm1')
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = 'Get-TfsWiki', 'New-TfsWiki', 'Remove-TfsWiki', 'Copy-TfsTestPlan',
'Get-TfsTestPlan', 'New-TfsTestPlan', 'Remove-TfsTestPlan',
'Rename-TfsTestPlan', 'Get-TfsTeam', 'New-TfsTeam', 'Remove-TfsTeam',
'Rename-TfsTeam', 'Set-TfsTeam', 'Add-TfsTeamMember',
'Get-TfsTeamMember', 'Remove-TfsTeamMember', 'Add-TfsTeamAdmin',
'Get-TfsTeamAdmin', 'Remove-TfsTeamAdmin', 'Get-TfsTeamBoard',
'Get-TfsTeamBoardCardRule', 'Set-TfsTeamBoardCardRuleSetting',
'Get-TfsTeamBacklogLevel', 'Get-TfsTeamProject', 'New-TfsTeamProject',
'Remove-TfsTeamProject', 'Rename-TfsTeamProject',
'Undo-TfsTeamProjectRemoval', 'Enter-TfsShell', 'Exit-TfsShell',
'Get-TfsServiceHookConsumer',
'Get-TfsServiceHookNotificationHistory',
'Get-TfsServiceHookPublisher', 'Get-TfsServiceHookSubscription',
'Get-TfsRestClient', 'Invoke-TfsRestApi', 'Start-TfsXamlBuild',
'Get-TfsReleaseDefinition', 'Get-TfsReleaseDefinitionFolder',
'New-TfsReleaseDefinitionFolder',
'Remove-TfsReleaseDefinitionFolder', 'Get-TfsBuildDefinitionFolder',
'New-TfsBuildDefinitionFolder', 'Remove-TfsBuildDefinitionFolder',
'Get-TfsIdentity', 'Add-TfsGroupMember', 'Get-TfsGroupMember',
'Remove-TfsGroupMember', 'Export-TfsGlobalList', 'Get-TfsGlobalList',
'Import-TfsGlobalList', 'New-TfsGlobalList', 'Remove-TfsGlobalList',
'Rename-TfsGlobalList', 'Set-TfsGlobalList', 'Get-TfsGitRepository',
'New-TfsGitRepository', 'Remove-TfsGitRepository',
'Rename-TfsGitRepository', 'Get-TfsGitBranchPolicy',
'Get-TfsGitPolicyType', 'Get-TfsGitBranch', 'Copy-TfsWorkItem',
'Get-TfsWorkItem', 'Move-TfsWorkItem', 'New-TfsWorkItem',
'Remove-TfsWorkItem', 'Search-TfsWorkItem', 'Set-TfsWorkItem',
'Get-TfsWorkItemTag', 'New-TfsWorkItemTag', 'Remove-TfsWorkItemTag',
'Rename-TfsWorkItemTag', 'Export-TfsWorkItemQuery',
'Get-TfsWorkItemQuery', 'Get-TfsWorkItemQueryFolder',
'New-TfsWorkItemQuery', 'New-TfsWorkItemQueryFolder',
'Add-TfsWorkItemLink', 'Get-TfsWorkItemLink',
'Get-TfsWorkItemLinkEndType', 'Get-TfsWorkItemHistory', 'Get-TfsArea',
'Get-TfsIteration', 'Move-TfsArea', 'Move-TfsIteration', 'New-TfsArea',
'New-TfsIteration', 'Remove-TfsArea', 'Remove-TfsIteration',
'Rename-TfsArea', 'Rename-TfsIteration', 'Set-TfsIteration',
'Test-TfsArea', 'Test-TfsIteration', 'Export-TfsWorkItemType',
'Get-TfsWorkItemType', 'Import-TfsWorkItemType',
'Export-TfsProcessTemplate', 'Import-TfsProcessTemplate',
'Get-TfsProcessTemplate', 'New-TfsProcessTemplate',
'Connect-TfsConfigurationServer', 'Connect-TfsTeam',
'Connect-TfsTeamProject', 'Connect-TfsTeamProjectCollection',
'Disconnect-TfsConfigurationServer', 'Disconnect-TfsTeam',
'Disconnect-TfsTeamProject', 'Disconnect-TfsTeamProjectCollection',
'New-TfsCredential', 'Get-TfsRegisteredConfigurationServer',
'Get-TfsConfigurationServer', 'Start-TfsIdentitySync',
'Get-TfsConfigurationServerConnectionString',
'Get-TfsInstallationPath', 'Get-TfsVersion', 'Get-TfsRegistryValue',
'Set-TfsRegistryValue', 'Dismount-TfsTeamProjectCollection',
'Mount-TfsTeamProjectCollection', 'Start-TfsTeamProjectCollection',
'Stop-TfsTeamProjectCollection',
'Get-TfsRegisteredTeamProjectCollection',
'Get-TfsTeamProjectCollection', 'New-TfsTeamProjectCollection',
'Remove-TfsTeamProjectCollection'
# Variables to export from this module
# VariablesToExport = @()
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
# DSC resources to export from this module
# DscResourcesToExport = @()
# List of all modules packaged with this module
# ModuleList = @()
# List of all files packaged with this module
# FileList = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
#Branch of this module
Branch = 'master'
#Version of this module
Version = '2.0.0-rc.2+5'
#Commit of this module
Commit = 'e5683232eaed426f6b44acb77901431c8ed61321'
#DesktopTargetFramework of this module
DesktopTargetFramework = 'net462'
#Build of this module
Build = '2.0.0-rc.2+2230.5'
#TfsClientVersion of this module
TfsClientVersion = '16.178.0-preview'
#CoreTargetFramework of this module
CoreTargetFramework = 'netcoreapp3.1'
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'TfsCmdlets','TFS','VSTS','PowerShell','Azure','AzureDevOps','DevOps','ALM','TeamFoundationServer'
# A URL to the license for this module.
LicenseUri = 'https://github.com/igoravl/TfsCmdlets/blob/master/LICENSE.md'
# A URL to the main website for this project.
ProjectUri = 'https://github.com/igoravl/tfscmdlets/'
# A URL to an icon representing this module.
IconUri = 'https://raw.githubusercontent.com/igoravl/TfsCmdlets/master/Assets/TfsCmdlets_Icon_32.png'
# ReleaseNotes of this module
ReleaseNotes = 'For release notes, see https://github.com/igoravl/TfsCmdlets/blob/master/RELEASENOTES.md'
# Prerelease string of this module
Prerelease = 'rc0002'
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
# External dependent modules of this module
# ExternalModuleDependencies = @()
} # End of PSData hashtable
} # End of PrivateData hashtable
# HelpInfo URI of this module
# HelpInfoURI = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
<!-- Cmdlet: Get-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Get-TfsArea</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsArea</dev:code>
<dev:remarks>
<maml:para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsArea '\**\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Move-TfsArea</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
<maml:para>This is an alias of the Destination parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>New-TfsArea</command:name>
<command:verb>New</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Creates a new Work Item Area in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Remove-TfsArea</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Deletes one or more Work Item Areas from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>NewPath</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
<maml:para>This is an alias of the MoveTo parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Rename-TfsArea</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Renames a Work Area. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Test-TfsArea -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Test-TfsArea</command:name>
<command:verb>Test</command:verb>
<command:noun>TfsArea</command:noun>
<maml:description>
<maml:para>Determines whether the specified Work Area exist. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Test-TfsArea</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsArea</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>Get-TfsBuildDefinitionFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Gets one or more build/pipeline definition folders in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Get-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>New-TfsBuildDefinitionFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Creates a new build/pipeline definition folder </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any child folders. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/New-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsBuildDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build">
<command:details>
<command:name>Remove-TfsBuildDefinitionFolder</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsBuildDefinitionFolder</command:noun>
<maml:description>
<maml:para>Deletes one or more build/pipeline definition folders. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsBuildDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Remove-TfsBuildDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsConfigurationServer</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Connects to a configuration server. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>A TFS Configuration Server represents the server that is running Team Foundation Server. On a database level, it is represented by the Tfs_Configuration database. Operations that should be performed on a server level (such as setting server-level permissions) require a connection to a TFS configuration server. Internally, this connection is represented by an instance of the Microsoft.TeamFoundation.Client.TfsConfigurationServer. NOTE: Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies either a URL/name of the Team Foundation Server to connect to, or a previously initialized TfsConfigurationServer object. When using a URL, it must be fully qualified. To connect to a Team Foundation Server instance by using its name, it must have been previously registered. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TfsConfigurationServer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Client.TfsConfigurationServer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Connect-TfsConfigurationServer -Server http://vsalm:8080/tfs</dev:code>
<dev:remarks>
<maml:para>Connects to the TFS server specified by the URL in the Server argument</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Connect-TfsConfigurationServer -Server vsalm</dev:code>
<dev:remarks>
<maml:para>Connects to a previously registered TFS server by its user-defined name "vsalm". For more information, see Get-TfsRegisteredConfigurationServer</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsConfigurationServer</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected configuration server. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsConfigurationServer cmdlet removes the connection previously set by its counterpart Connect-TfsConfigurationServer. Therefore, cmdlets relying on a "default server" as provided by "Get-TfsConfigurationServer -Current" will no longer work after a call to this cmdlet, unless their -Server argument is provided or a new call to Connect-TfsConfigurationServer is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsConfigurationServer</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
<command:details>
<command:name>Get-TfsConfigurationServer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsConfigurationServer</command:noun>
<maml:description>
<maml:para>Gets information about a configuration server. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by server -->
<command:syntaxItem tfscmdlets:parameterSet="Get by server">
<maml:name>Get-TfsConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsConfigurationServer</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the configuration server specified in the last call to Connect-TfsConfigurationServer (i.e. the "current" configuration server) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsConfigurationServerConnectionString -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsConfigurationServerConnectionString</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsConfigurationServerConnectionString</command:noun>
<maml:description>
<maml:para>Gets the configuration server database connection string. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Use computer name -->
<command:syntaxItem tfscmdlets:parameterSet="Use computer name">
<maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use session -->
<command:syntaxItem tfscmdlets:parameterSet="Use session">
<maml:name>Get-TfsConfigurationServerConnectionString</maml:name>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsConfigurationServerConnectionString</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>Online version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationserverconnectionstring/</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>Get-TfsInstallationPath</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsCredential -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>New-TfsCredential</command:name>
<command:verb>New</command:verb>
<command:noun>TfsCredential</command:noun>
<maml:description>
<maml:para>Provides credentials to use when you connect to a Team Foundation Server or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>New-TfsCredential</maml:name>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Url -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Url</maml:name>
<maml:description>
<maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">Uri</command:parameterValue>
<dev:type>
<maml:name>System.Uri</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: VssCredentials -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Common.VssCredentials</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/New-TfsCredential</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitBranch -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
<command:details>
<command:name>Get-TfsGitBranch</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitBranch</command:noun>
<maml:description>
<maml:para>Gets information from one or more branches in a remote Git repository. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by name -->
<command:syntaxItem tfscmdlets:parameterSet="Get by name">
<maml:name>Get-TfsGitBranch</maml:name>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get default -->
<command:syntaxItem tfscmdlets:parameterSet="Get default">
<maml:name>Get-TfsGitBranch</maml:name>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default branch in the given repository. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
<maml:name>RefName</maml:name>
<maml:description>
<maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
<maml:para>This is an alias of the Branch parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default branch in the given repository. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitBranchStats -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Get-TfsGitBranch</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitBranchPolicy -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
<command:details>
<command:name>Get-TfsGitBranchPolicy</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitBranchPolicy</command:noun>
<maml:description>
<maml:para>Gets the Git branch policy configuration of the given Git branches. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitBranchPolicy</maml:name>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Branch -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>Branch</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
<maml:name>RefName</maml:name>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
<maml:para>This is an alias of the Branch parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, it default to the team project name (i.e. the default repository). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PolicyConfiguration -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitBranchPolicy</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitPolicyType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
<command:details>
<command:name>Get-TfsGitPolicyType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitPolicyType</command:noun>
<maml:description>
<maml:para>Gets one or more Git branch policies supported by the given team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitPolicyType</maml:name>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: PolicyType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>PolicyType</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
<maml:para>This is an alias of the PolicyType parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PolicyType -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyType</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitPolicyType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Get-TfsGitRepository</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Get-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>New-TfsGitRepository</command:name>
<command:verb>New</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Creates a new Git repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new repository </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/New-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Remove-TfsGitRepository</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Deletes one or more Git repositories from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
<maml:para>This is an alias of the Repository parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Remove-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsGitRepository -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
<command:details>
<command:name>Rename-TfsGitRepository</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsGitRepository</command:noun>
<maml:description>
<maml:para>Renames a Git repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsGitRepository</maml:name>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GitRepository -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Rename-TfsGitRepository</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Export-TfsGlobalList</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Exports the contents of one or more Global Lists to XML. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdlets generates an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin exportgloballist" </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Export-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be exported. Wildcards are supported. When omitted, it defaults to all global lists in the supplied team project collection. When using wilcards, a single XML document will be producer containing all matching global lists. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>To export or list global lists, you must be a member of the Project Collection Valid Users group or have your View collection-level information permission set to Allow. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Export-TfsGlobalList | Out-File "gl.xml"</dev:code>
<dev:remarks>
<maml:para>Exports all global lists in the current project collection to a file called gl.xml.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Export-TfsGlobalList -Name "Builds - *"</dev:code>
<dev:remarks>
<maml:para>Exports all build-related global lists (with names starting with "Build - ") and return the resulting XML document.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Export-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Get-TfsGlobalList</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more Global Lists. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list. Wildcards are supported. When omitted, defaults to all global lists in the supplied team project collection. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: GlobalList -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Models.GlobalList</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Get-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Import-TfsGlobalList</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Imports one or more Global Lists from an XML document </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdletsimports an XML containing one or more global lists and their respective items, in the same format used by witadmin. It is functionally equivalent to "witadmin importgloballist" </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsGlobalList</maml:name>
<!-- Parameter: InputObject -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to import a global list that already exists. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: InputObject -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Xml">
<maml:name>Xml</maml:name>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
<maml:para>This is an alias of the InputObject parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to import a global list that already exists. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>XML document object containing one or more global list definitions. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:alertSet>
<maml:para>To import global lists, you must be a member of the Project Collection Administrators security group. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-Content gl.xml | Import-GlobalList</dev:code>
<dev:remarks>
<maml:para>Imports the contents of an XML document called gl.xml to the current project collection</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Import-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>New-TfsGlobalList</command:name>
<command:verb>New</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Creates a new Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Items -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
<maml:name>Items</maml:name>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Items -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
<maml:name>Items</maml:name>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing global list. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new global list. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the contents (items) of the new global list. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: PSCustomObject -->
<command:returnValue>
<dev:type>
<maml:name>System.Management.Automation.PSCustomObject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/New-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Remove-TfsGlobalList</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Deletes one or more Global Lists. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of global list to be deleted. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Remove-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Rename-TfsGlobalList</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Changes either the name or the contents of a Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the global lsit to be renamed. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Rename-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsGlobalList -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="GlobalList">
<command:details>
<command:name>Set-TfsGlobalList</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsGlobalList</command:noun>
<maml:description>
<maml:para>Changes the contents of a Global List. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Edit list items -->
<command:syntaxItem tfscmdlets:parameterSet="Edit list items">
<maml:name>Set-TfsGlobalList</maml:name>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Add -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Add</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be added to the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Creates a new list if the specified one does not exist. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Remove -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Remove</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be removed from the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: GlobalList -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>GlobalList</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
<maml:para>This is an alias of the GlobalList parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Add -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Add</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be added to the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Remove -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Remove</maml:name>
<maml:description>
<maml:para>Specifies a list of items to be removed from the global list. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Creates a new list if the specified one does not exist. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the global list to be changed. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/GlobalList/Set-TfsGlobalList</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Add-TfsGroupMember</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Adds group members to an Azure DevOps group. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsGroupMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Add-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Get-TfsGroupMember</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Gets the members of a Azure DevOps group </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsGroupMember</maml:name>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the group fom which to get its members. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsGroupMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
<command:details>
<command:name>Remove-TfsGroupMember</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsGroupMember</command:noun>
<maml:description>
<maml:para>Removes a member from an Azure DevOps group. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsGroupMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Group -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Group</maml:name>
<maml:description>
<maml:para>Specifies the group from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroupMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsIdentity -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity">
<command:details>
<command:name>Get-TfsIdentity</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsIdentity</command:noun>
<maml:description>
<maml:para>Gets one or more identities that represents either users or groups in Azure DevOps. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get Identity -->
<command:syntaxItem tfscmdlets:parameterSet="Get Identity">
<maml:name>Get-TfsIdentity</maml:name>
<!-- Parameter: Identity -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Identity</maml:name>
<maml:description>
<maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
<maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
</maml:description>
<command:parameterValue required="true">QueryMembership</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Direct</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current user -->
<command:syntaxItem tfscmdlets:parameterSet="Get current user">
<maml:name>Get-TfsIdentity</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Identity -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Identity</maml:name>
<maml:description>
<maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
<maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
</maml:description>
<command:parameterValue required="true">QueryMembership</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Direct</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Get-TfsIdentity</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsIdentitySync -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Start-TfsIdentitySync</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsIdentitySync</command:noun>
<maml:description>
<maml:para>Triggers an Identity Sync server job. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsIdentitySync</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wait -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Wait</maml:name>
<maml:description>
<maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wait -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Wait</maml:name>
<maml:description>
<maml:para>Waits until the job finishes running. If omitted, the identity sync job will run asynchronously. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Start-TfsIdentitySync</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsInstallationPath -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsInstallationPath</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsInstallationPath</command:noun>
<maml:description>
<maml:para>Gets the installation path of a given Team Foundation Server component. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Many times a Team Foundation Server admin needs to retrieve the location where TFS is actually installed. That can be useful, for instance, to locate tools like TfsSecurity or TfsServiceControl. That information is recorded at setup time, in a well-known location in the Windows Registry of the server where TFS is installed. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Use computer name -->
<command:syntaxItem tfscmdlets:parameterSet="Use computer name">
<maml:name>Get-TfsInstallationPath</maml:name>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use session -->
<command:syntaxItem tfscmdlets:parameterSet="Use session">
<maml:name>Get-TfsInstallationPath</maml:name>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>localhost</dev:defaultValue>
</command:parameter>
<!-- Parameter: Session -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Session</maml:name>
<maml:description>
<maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
</maml:description>
<command:parameterValue required="true">PSSession</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Component -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Component</maml:name>
<maml:description>
<maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
<maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
</maml:description>
<command:parameterValue required="true">TfsComponent</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.TfsComponent</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>BaseInstallation</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
<command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
<command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
<command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Version -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Version</maml:name>
<maml:description>
<maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsInstallationPath -Version 2017</dev:code>
<dev:remarks>
<maml:para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</dev:code>
<dev:remarks>
<maml:para>Gets the location where the SharePoint Extensions have been installed in the remote server SPTFSSRV, prompting for admin credentials to be used for establishing a PS Remoting session to the server</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsInstallationPath</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Get-TfsIteration</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsIteration</dev:code>
<dev:remarks>
<maml:para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsIteration '\**\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Move-TfsIteration</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
<maml:para>This is an alias of the Destination parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsIteration</dev:code>
<dev:remarks>
<maml:para>Returns all aiterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Get-TfsIteration '\\**\\Support' -Project Tailspin</dev:code>
<dev:remarks>
<maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>New-TfsIteration</command:name>
<command:verb>New</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Creates a new Iteration in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Remove-TfsIteration</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Deletes one or more Iterations from a given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MoveTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>MoveTo</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
<maml:name>NewPath</maml:name>
<maml:description>
<maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
<maml:para>This is an alias of the MoveTo parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes node(s) recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Rename-TfsIteration</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Renames a Iteration. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Set-TfsIteration</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Modifies the dates of an iteration. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: FinishDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>FinishDate</maml:name>
<maml:description>
<maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: FinishDate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>FinishDate</maml:name>
<maml:description>
<maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemClassificationNode -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Set-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Test-TfsIteration -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
<command:details>
<command:name>Test-TfsIteration</command:name>
<command:verb>Test</command:verb>
<command:noun>TfsIteration</command:noun>
<maml:description>
<maml:para>Determines whether the specified Iteration exist. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Test-TfsIteration</maml:name>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Node -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Node</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
<maml:para>This is an alias of the Node parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsIteration</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Export-TfsProcessTemplate</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Exports a XML-based process template definition to disk. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>This cmdlet offers a functional replacement to the "Export Process Template" feature found in Team Explorer. All files pertaining to the specified process template (work item defininitons, reports, saved queries, process configuration and so on) are downloaded from the given Team Project Collection and saved in a local directory, preserving the directory structure required to later re-import it. This is specially handy to do small changes to a process template or to create a new process template based on an existing one. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Export-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationPath</maml:name>
<maml:description>
<maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewDescription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewDescription</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original description is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationPath</maml:name>
<maml:description>
<maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewDescription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewDescription</maml:name>
<maml:description>
<maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original description is used. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</dev:code>
<dev:remarks>
<maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Export-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Get-TfsProcessTemplate</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Gets information from one or more process templates. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
<maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Process -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Get-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>Import-TfsProcessTemplate</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Imports a process template definition from disk. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsProcessTemplate</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Visible</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Visible</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Import-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsProcessTemplate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
<command:details>
<command:name>New-TfsProcessTemplate</command:name>
<command:verb>New</command:verb>
<command:noun>TfsProcessTemplate</command:noun>
<maml:description>
<maml:para>Creates a new inherited process. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsProcessTemplate</maml:name>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new process. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Parent -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Parent</maml:name>
<maml:description>
<maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ReferenceName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ReferenceName</maml:name>
<maml:description>
<maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the process to create. </maml:para>
<maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new process. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ReferenceName -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ReferenceName</maml:name>
<maml:description>
<maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Parent -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Parent</maml:name>
<maml:description>
<maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Process -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/New-TfsProcessTemplate</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegisteredConfigurationServer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ConfigServer">
<command:details>
<command:name>Get-TfsRegisteredConfigurationServer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegisteredConfigurationServer</command:noun>
<maml:description>
<maml:para>Gets one or more Team Foundation Server addresses registered in the current computer. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegisteredConfigurationServer</maml:name>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
<maml:para>This is an alias of the Server parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a registered server. Wildcards are supported. When omitted, all registered servers are returned. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: RegisteredConfigurationServer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Client.RegisteredConfigurationServer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ConfigServer/Get-TfsRegisteredConfigurationServer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegisteredTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Get-TfsRegisteredTeamProjectCollection</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegisteredTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Gets one or more Team Project Collection addresses registered in the current computer. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegisteredTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsRegisteredTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRegistryValue -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
<command:details>
<command:name>Get-TfsRegistryValue</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRegistryValue</command:noun>
<maml:description>
<maml:para>Gets the value of a given Team Foundation Server registry entry. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. </maml:para>
<maml:para>Registry entries can be scoped to the server, to a collection or to a specific user. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsRegistryValue</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Object -->
<command:returnValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
<maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
<dev:remarks>
<maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Get-TfsRegistryValue</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsRegistryValue -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
<command:details>
<command:name>Set-TfsRegistryValue</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsRegistryValue</command:noun>
<maml:description>
<maml:para>Sets the value of a given Team Foundation Server registry entry. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the value specified in the command. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsRegistryValue</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Value -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Value</maml:name>
<maml:description>
<maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the full path of the TFS Registry key </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Value -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Value</maml:name>
<maml:description>
<maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
<maml:para>Possible values: User, Collection, Server</maml:para>
</maml:description>
<command:parameterValue required="true">RegistryScope</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.RegistryScope</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Server</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">User</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Object -->
<command:returnValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
<maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
<dev:remarks>
<maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Set-TfsRegistryValue</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsReleaseDefinition -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Get-TfsReleaseDefinition</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsReleaseDefinition</command:noun>
<maml:description>
<maml:para>Gets information from one or more release definitions in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsReleaseDefinition</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: ReleaseDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.ReleaseDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinition</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Get-TfsReleaseDefinitionFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Gets one or more Release/pipeline definition folders in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, Ascending, Descending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryOrder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryOrder</maml:name>
<maml:description>
<maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
<maml:para>Possible values: None, Ascending, Descending</maml:para>
</maml:description>
<command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">None</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>New-TfsReleaseDefinitionFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Creates a new release definition folder. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/New-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsReleaseDefinitionFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
<command:details>
<command:name>Remove-TfsReleaseDefinitionFolder</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsReleaseDefinitionFolder</command:noun>
<maml:description>
<maml:para>Deletes one or more release definition folders. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsReleaseDefinitionFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Folder -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Remove-TfsReleaseDefinitionFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Invoke-TfsRestApi -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
<command:details>
<command:name>Invoke-TfsRestApi</command:name>
<command:verb>Invoke</command:verb>
<command:noun>TfsRestApi</command:noun>
<maml:description>
<maml:para>Invoke an Azure DevOps REST API. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Invoke-TfsRestApi can automatically parse an example URL from https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens (such as {organization}, {project} and {team}) as long as collection / project / team information are available via either the their respective arguments in this command or the corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted from the supplied example, when available. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Invoke-TfsRestApi</maml:name>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AdditionalHeaders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AdditionalHeaders</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ApiVersion -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ApiVersion</maml:name>
<maml:description>
<maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>4.1</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsTask -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsTask</maml:name>
<maml:description>
<maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Body -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Body</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Method -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Method</maml:name>
<maml:description>
<maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>GET</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryParameters -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryParameters</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Raw -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Raw</maml:name>
<maml:description>
<maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: RequestContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RequestContentType</maml:name>
<maml:description>
<maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: ResponseContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ResponseContentType</maml:name>
<maml:description>
<maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UseHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UseHost</maml:name>
<maml:description>
<maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Path -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Method -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Method</maml:name>
<maml:description>
<maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>GET</dev:defaultValue>
</command:parameter>
<!-- Parameter: Body -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Body</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
<maml:name>Content</maml:name>
<maml:description>
<maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
<maml:para>This is an alias of the Body parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RequestContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RequestContentType</maml:name>
<maml:description>
<maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: ResponseContentType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ResponseContentType</maml:name>
<maml:description>
<maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>application/json</dev:defaultValue>
</command:parameter>
<!-- Parameter: AdditionalHeaders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AdditionalHeaders</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryParameters -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryParameters</maml:name>
<maml:description>
<maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ApiVersion -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ApiVersion</maml:name>
<maml:description>
<maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>4.1</dev:defaultValue>
</command:parameter>
<!-- Parameter: UseHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UseHost</maml:name>
<maml:description>
<maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Raw -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Raw</maml:name>
<maml:description>
<maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsTask -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsTask</maml:name>
<maml:description>
<maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues />
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</dev:code>
<dev:remarks>
<maml:para>Calls the API described by an example extracted from the docs.microsoft.com web site. HTTP method, host name and API version are all set based on the supplied values; Tokens {organization}, {project} and {team} are properly replaced with the corresponding values provided by the current connection context (via previous calls to Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 3 ----------</maml:title>
<dev:code>PS> Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Invoke-TfsRestApi</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsRestClient -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
<command:details>
<command:name>Get-TfsRestClient</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsRestClient</command:noun>
<maml:description>
<maml:para>Gets an Azure DevOps HTTP Client object instance. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication information supplied by their parent connection object and can be used as a more convenient mechanism to issue API calls. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Get by collection -->
<command:syntaxItem tfscmdlets:parameterSet="Get by collection">
<maml:name>Get-TfsRestClient</maml:name>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get by server -->
<command:syntaxItem tfscmdlets:parameterSet="Get by server">
<maml:name>Get-TfsRestClient</maml:name>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TypeName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>TypeName</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
<maml:para>This is an alias of the TypeName parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: VssHttpClientBase -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssHttpClientBase</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Get-TfsRestClient</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookConsumer -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookConsumer</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookConsumer</command:noun>
<maml:description>
<maml:para>Gets one or more service hook consumers. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Service hook consumers are the services that can consume (receive) notifications triggered by Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookConsumer</maml:name>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
<maml:para>This is an alias of the Consumer parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
<maml:para>This is an alias of the Consumer parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Consumer -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Consumer</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookConsumer</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookNotificationHistory -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookNotificationHistory</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookNotificationHistory</command:noun>
<maml:description>
<maml:para>Gets the notification history for a given service hook subscription </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookNotificationHistory</maml:name>
<!-- Parameter: Subscription -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: From -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>From</maml:name>
<maml:description>
<maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Status -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Status</maml:name>
<maml:description>
<maml:para>Specifies the notification status to filter on. </maml:para>
<maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
</maml:description>
<command:parameterValue required="true">NotificationStatus</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
<command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: To -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>To</maml:name>
<maml:description>
<maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Subscription -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: From -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>From</maml:name>
<maml:description>
<maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: To -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>To</maml:name>
<maml:description>
<maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Status -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Status</maml:name>
<maml:description>
<maml:para>Specifies the notification status to filter on. </maml:para>
<maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
</maml:description>
<command:parameterValue required="true">NotificationStatus</command:parameterValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
<command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
<command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the subscription to get the notification history from. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Notification -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Notification</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookNotificationHistory</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookPublisher -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookPublisher</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookPublisher</command:noun>
<maml:description>
<maml:para>Gets one or more service hook publishers. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookPublisher</maml:name>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
<maml:para>This is an alias of the Publisher parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
<maml:para>This is an alias of the Publisher parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Publisher -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Publisher</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookPublisher</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsServiceHookSubscription -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
<command:details>
<command:name>Get-TfsServiceHookSubscription</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsServiceHookSubscription</command:noun>
<maml:description>
<maml:para>Gets one or more service hook subscriptions </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsServiceHookSubscription</maml:name>
<!-- Parameter: Subscription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EventType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EventType</maml:name>
<maml:description>
<maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Subscription -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Subscription</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
<maml:para>This is an alias of the Subscription parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Publisher -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Publisher</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Consumer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Consumer</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EventType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EventType</maml:name>
<maml:description>
<maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Subscription -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Subscription</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookSubscription</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Enter-TfsShell -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
<command:details>
<command:name>Enter-TfsShell</command:name>
<command:verb>Enter</command:verb>
<command:noun>TfsShell</command:noun>
<maml:description>
<maml:para>Activates the Azure DevOps Shell </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Enter-TfsShell</maml:name>
<!-- Parameter: DoNotClearHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DoNotClearHost</maml:name>
<maml:description>
<maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoLogo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoLogo</maml:name>
<maml:description>
<maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: WindowTitle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WindowTitle</maml:name>
<maml:description>
<maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WindowTitle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WindowTitle</maml:name>
<maml:description>
<maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
</command:parameter>
<!-- Parameter: DoNotClearHost -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DoNotClearHost</maml:name>
<maml:description>
<maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoLogo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoLogo</maml:name>
<maml:description>
<maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Enter-TfsShell</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Exit-TfsShell -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
<command:details>
<command:name>Exit-TfsShell</command:name>
<command:verb>Exit</command:verb>
<command:noun>TfsShell</command:noun>
<maml:description>
<maml:para>Deactivates the Azure DevOps Shell </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Exit-TfsShell</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Exit-TfsShell</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeam</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Connects to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeam</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected team. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeam cmdlet removes the connection previously set by its counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" as provided by "Get-TfsTeam -Current" will no longer work after a call to this cmdlet, unless their -Team argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeam</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Get-TfsTeam</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Gets information about one or more teams. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by team -->
<command:syntaxItem tfscmdlets:parameterSet="Get by team">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get default team -->
<command:syntaxItem tfscmdlets:parameterSet="Get default team">
<maml:name>Get-TfsTeam</maml:name>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default team in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: QueryMembership -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>QueryMembership</maml:name>
<maml:description>
<maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeSettings</maml:name>
<maml:description>
<maml:para>Gets the team's backlog settings (fills the Settings property with a Microsoft.TeamFoundation.Work.WebApi.TeamSetting object) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Returns the default team in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Get-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>New-TfsTeam</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Creates a new team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoBacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoBacklogIteration</maml:name>
<maml:description>
<maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoDefaultArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoDefaultArea</maml:name>
<maml:description>
<maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>TeamFieldValue</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
<maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoDefaultArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoDefaultArea</maml:name>
<maml:description>
<maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: NoBacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoBacklogIteration</maml:name>
<maml:description>
<maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description of the new team. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/New-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Remove-TfsTeam</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Deletes a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Remove-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Rename-TfsTeam</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Renames a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Rename-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsTeam -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
<command:details>
<command:name>Set-TfsTeam</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsTeam</command:noun>
<maml:description>
<maml:para>Changes the details of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsTeam</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: BacklogVisibilities -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogVisibilities</maml:name>
<maml:description>
<maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BugsBehavior -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BugsBehavior</maml:name>
<maml:description>
<maml:para>Specifies how bugs should behave when added to a board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Sets the supplied team as the default team project team. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkingDays -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkingDays</maml:name>
<maml:description>
<maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
<maml:para>This is an alias of the Team parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultAreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>DefaultAreaPath</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
<maml:name>TeamFieldValue</maml:name>
<maml:description>
<maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
<maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog area paths that are associated with this team. Provide a list of area paths in the form '/path1/path2/[*]'. When the path ends with an asterisk, all child area path will be included recursively. Otherwise, only the area itself (without its children) will be included. </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogIteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogIteration</maml:name>
<maml:description>
<maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>\</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPaths -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPaths</maml:name>
<maml:description>
<maml:para>Specifies the backlog iteration paths that are associated with this team. Provide a list of iteration paths in the form '/path1/path2'. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DefaultIterationMacro -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DefaultIterationMacro</maml:name>
<maml:description>
<maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>@CurrentIteration</dev:defaultValue>
</command:parameter>
<!-- Parameter: BugsBehavior -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BugsBehavior</maml:name>
<maml:description>
<maml:para>Specifies how bugs should behave when added to a board. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BacklogVisibilities -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BacklogVisibilities</maml:name>
<maml:description>
<maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Default -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Default</maml:name>
<maml:description>
<maml:para>Sets the supplied team as the default team project team. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: WorkingDays -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkingDays</maml:name>
<maml:description>
<maml:para>Specifies the team's Working Days. When omitted, defaults to Monday thru Friday </maml:para>
</maml:description>
<command:parameterValue required="true">IEnumerable`1</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Generic.IEnumerable`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>monday, tuesday, wednesday, thursday, friday</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTeam -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Set-TfsTeam</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Add-TfsTeamAdmin</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Adds a new administrator to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsTeamAdmin</maml:name>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the administrator to add to the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Add-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Get-TfsTeamAdmin</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Gets the administrators of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamAdmin</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Get-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamAdmin -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
<command:details>
<command:name>Remove-TfsTeamAdmin</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamAdmin</command:noun>
<maml:description>
<maml:para>Removes an administrator from a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamAdmin</maml:name>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Admin -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Admin</maml:name>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the administrator to remove from the team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Remove-TfsTeamAdmin</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBacklogLevel -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Backlog">
<command:details>
<command:name>Get-TfsTeamBacklogLevel</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBacklogLevel</command:noun>
<maml:description>
<maml:para>Gets information about one or more backlog levels of a given team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBacklogLevel</maml:name>
<!-- Parameter: Backlog -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Backlog</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Backlog -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Backlog</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
<maml:para>This is an alias of the Backlog parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: BacklogLevelConfiguration -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.BacklogLevelConfiguration</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Backlog/Get-TfsTeamBacklogLevel</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBoard -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Get-TfsTeamBoard</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBoard</command:noun>
<maml:description>
<maml:para>Gets one or more team boards. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBoard</maml:name>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
<maml:para>This is an alias of the Board parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Board -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.Board</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoard</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamBoardCardRule -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Get-TfsTeamBoardCardRule</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamBoardCardRule</command:noun>
<maml:description>
<maml:para>Gets one or more team board card rules. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamBoardCardRule</maml:name>
<!-- Parameter: Rule -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Rule</maml:name>
<maml:description>
<maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RuleType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RuleType</maml:name>
<maml:description>
<maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
<maml:para>Possible values: CardColor, TagColor, All</maml:para>
</maml:description>
<command:parameterValue required="true">CardRuleType</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.CardRuleType</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>All</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">All</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Rule -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Rule</maml:name>
<maml:description>
<maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: RuleType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RuleType</maml:name>
<maml:description>
<maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
<maml:para>Possible values: CardColor, TagColor, All</maml:para>
</maml:description>
<command:parameterValue required="true">CardRuleType</command:parameterValue>
<dev:type>
<maml:name>TfsCmdlets.CardRuleType</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>All</dev:defaultValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
<command:parameterValue required="false" variableLength="false">All</command:parameterValue>
</command:parameterValueGroup>
</command:parameter>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the board name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Rule -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.Rule</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoardCardRule</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsTeamBoardCardRuleSetting -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
<command:details>
<command:name>Set-TfsTeamBoardCardRuleSetting</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsTeamBoardCardRuleSetting</command:noun>
<maml:description>
<maml:para>Set the card rule settings of the specified backlog board. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsTeamBoardCardRuleSetting</maml:name>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Board -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Board</maml:name>
<maml:description>
<maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: BoardCardRuleSettings -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Set-TfsTeamBoardCardRuleSetting</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Add-TfsTeamMember</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Adds new members to a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsTeamMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team to which the member is added. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamAdmins -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.HttpClient.TeamAdmins</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Add-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Get-TfsTeamMember</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Gets the members of a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTeamMember</maml:name>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Member -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the team from which to get its members. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: Identity -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Get-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamMember -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
<command:details>
<command:name>Remove-TfsTeamMember</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamMember</command:noun>
<maml:description>
<maml:para>Removes a member from a team. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamMember</maml:name>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Member -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Member</maml:name>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="1">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the team from which the member is removed. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Remove-TfsTeamMember</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeamProject</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Connects to a Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeamProject</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected team project. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" as provided by "Get-TfsTeamProject -Current" will no longer work after a call to this cmdlet, unless their -Project argument is provided or a new call to Connect-TfsTeamProject is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeamProject</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Get-TfsTeamProject</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Gets information about one or more team projects. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Get-TfsTeamProject cmdlets gets one or more Team Project objects (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied Team Project Collection. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Get by project -->
<command:syntaxItem tfscmdlets:parameterSet="Get by project">
<maml:name>Get-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeamProject</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="1">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Get-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>New-TfsTeamProject</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Creates a new team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description for the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SourceControl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SourceControl</maml:name>
<maml:description>
<maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a description for the new team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SourceControl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SourceControl</maml:name>
<maml:description>
<maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProcessTemplate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ProcessTemplate</maml:name>
<maml:description>
<maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: TeamProject -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/New-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Remove-TfsTeamProject</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Deletes one or more team projects. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Hard -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Hard</maml:name>
<maml:description>
<maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Hard -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Hard</maml:name>
<maml:description>
<maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Remove-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTeamProject -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Rename-TfsTeamProject</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTeamProject</command:noun>
<maml:description>
<maml:para>Renames a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTeamProject</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of a Team Project to rename. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Rename-TfsTeamProject</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Connect-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Connect-TfsTeamProjectCollection</command:name>
<command:verb>Connect</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Connects to a TFS team project collection or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or Azure DevOps organization. </maml:para>
<maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsTeamProjectCollection. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Cached credentials -->
<command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: User name and password -->
<command:syntaxItem tfscmdlets:parameterSet="User name and password">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Credential object -->
<command:syntaxItem tfscmdlets:parameterSet="Credential object">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Personal Access Token -->
<command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Prompt for credential -->
<command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
<maml:name>Connect-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Cached -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Cached</maml:name>
<maml:description>
<maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: UserName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>UserName</maml:name>
<maml:description>
<maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Password -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="2">
<maml:name>Password</maml:name>
<maml:description>
<maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
</maml:description>
<command:parameterValue required="true">SecureString</command:parameterValue>
<dev:type>
<maml:name>System.Security.SecureString</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PersonalAccessToken -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>PersonalAccessToken</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
<maml:name>Pat</maml:name>
<maml:description>
<maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
<maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Interactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Interactive</maml:name>
<maml:description>
<maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: VssConnection -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsTeamProjectCollection as their "default connection". </maml:para>
<maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsTeamProjectCollection by default. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
<dev:remarks>
<maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
<command:example>
<maml:title>---------- EXAMPLE 2 ----------</maml:title>
<dev:code>PS> Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
<dev:remarks>
<maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Connect-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Disconnect-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Connection">
<command:details>
<command:name>Disconnect-TfsTeamProjectCollection</command:name>
<command:verb>Disconnect</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Disconnects from the currently connected TFS team project collection or Azure DevOps organization. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Disconnect-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Connection/Disconnect-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Dismount-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Dismount-TfsTeamProjectCollection</command:name>
<command:verb>Dismount</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Detaches a team project collection database from a Team Foundation Server installation. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Before you move a collection, you must first detach it from the deployment of TFS on which it is running. It's very important that you do not skip this step. When you detach a collection, all jobs and services are stopped, and then the collection database is stopped. In addition, the detach process copies over the collection-specific data from the configuration database and saves it as part of the team project collection database. This configuration data is what allows the collection database to be attached to a different deployment of TFS. If that data is not present, you cannot attach the collection to any deployment of TFS except the one from which it originated. If detachment succeeds, this cmdlets returns the original database connection string. It is required to re-attach the collection to TFS. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Dismount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Speficies a Servicing Message (optional), to provide a message for users who might try to connect to projects in this collection while it is offline. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the detach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the collection to detach. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:alertSet>
<maml:para>Detaching a collection prevents users from accessing any projects in that collection. </maml:para>
</maml:alertSet>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Dismount-TfsTeamProjectCollection -Collection http://vsalm:8080/tfs/DefaultCollection -Reason "Collection DefaultCollecton is down for maintenance"</dev:code>
<dev:remarks>
<maml:para>Detaches the project collection specified by the URL provided in the Collection argument, defining a Maintenance Message to be shown to users when they try to connect to that collection while it is detached</maml:para>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Dismount-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>https://www.visualstudio.com/en-us/docs/setup-admin/tfs/admin/move-project-collection#1-detach-the-collection</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Get-TfsTeamProjectCollection</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by collection -->
<command:syntaxItem tfscmdlets:parameterSet="Get by collection">
<maml:name>Get-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get current -->
<command:syntaxItem tfscmdlets:parameterSet="Get current">
<maml:name>Get-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Current -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Current</maml:name>
<maml:description>
<maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: VssConnection -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Mount-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Mount-TfsTeamProjectCollection</command:name>
<command:verb>Mount</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Attaches a team project collection database to a Team Foundation Server installation. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Use database server -->
<command:syntaxItem tfscmdlets:parameterSet="Use database server">
<maml:name>Mount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseName</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseServer -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseServer</maml:name>
<maml:description>
<maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Use connection string -->
<command:syntaxItem tfscmdlets:parameterSet="Use connection string">
<maml:name>Mount-TfsTeamProjectCollection</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ConnectionString -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ConnectionString</maml:name>
<maml:description>
<maml:para>Specifies the connection string of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection to attach. It can be different from the original name - in that case, it is attached under a new name. </maml:para>
<maml:para>This is an alias of the Collection parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies a new description for the collection. When omitted, it retains the original description. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseServer -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseServer</maml:name>
<maml:description>
<maml:para>Specifies the name of the SQL Server instance where the database is stored. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DatabaseName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>DatabaseName</maml:name>
<maml:description>
<maml:para>Specifies the name of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ConnectionString -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ConnectionString</maml:name>
<maml:description>
<maml:para>Specifies the connection string of the collection database. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: InitialState -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>InitialState</maml:name>
<maml:description>
<maml:para>Specifies whether the collection will be started ou stopped after being attached. When omitted, the collection is automatically started and goes online after being attached. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Started</dev:defaultValue>
</command:parameter>
<!-- Parameter: Clone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Clone</maml:name>
<maml:description>
<maml:para>Changes the internal collection IDs upon attaching to that a "clone" of the original collection can be attached to the same server. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: PollingInterval -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PollingInterval</maml:name>
<maml:description>
<maml:para>Specifies the polling interval (in seconds) to get an updated status from the server. When omitted, defaults to 5 seconds. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>5</dev:defaultValue>
</command:parameter>
<!-- Parameter: Timeout -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Timeout</maml:name>
<maml:description>
<maml:para>Specifies the maximum period of time this cmdlet should wait for the attach procedure to complete. By default, it waits indefinitely until the collection servicing completes. </maml:para>
</maml:description>
<command:parameterValue required="true">TimeSpan</command:parameterValue>
<dev:type>
<maml:name>System.TimeSpan</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
</command:parameter>
<!-- Parameter: Server -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Server</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Mount-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>New-TfsTeamProjectCollection</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Creates a new team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: Connection -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Models.Connection</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/New-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Remove-TfsTeamProjectCollection</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Deletes a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Remove-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Start-TfsTeamProjectCollection</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Starts an offline team project collection and make it online. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Start-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Stop-TfsTeamProjectCollection -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
<command:details>
<command:name>Stop-TfsTeamProjectCollection</command:name>
<command:verb>Stop</command:verb>
<command:noun>TfsTeamProjectCollection</command:noun>
<maml:description>
<maml:para>Stops a team project collection and make it offline. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Stop-TfsTeamProjectCollection</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Stop-TfsTeamProjectCollection</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Undo-TfsTeamProjectRemoval -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
<command:details>
<command:name>Undo-TfsTeamProjectRemoval</command:name>
<command:verb>Undo</command:verb>
<command:noun>TfsTeamProjectRemoval</command:noun>
<maml:description>
<maml:para>Undeletes one or more team projects. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Undo-TfsTeamProjectRemoval</maml:name>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project to undelete. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Undo-TfsTeamProjectRemoval</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Copy-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Copy-TfsTestPlan</command:name>
<command:verb>Copy</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Clone a test plan and, optionally, its test suites and test cases. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other. When you clone a test suite, the following objects are copied from the source test plan to the destination test plan: * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information); * Shared steps referenced by cloned test cases; * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations); * Action Recordings linked from a cloned test case; * Links and Attachments; * Test configuration. The items below are only copied when using -CloneRequirements: * Requirements-based suites; * Requirements work items (product backlog items or user stories); * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Copy-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the name of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CloneRequirements -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CloneRequirements</maml:name>
<maml:description>
<maml:para>Clones requirements referenced by the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CopyAncestorHierarchy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CopyAncestorHierarchy</maml:name>
<maml:description>
<maml:para>Copies ancestor hierarchy. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DeepClone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DeepClone</maml:name>
<maml:description>
<maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationWorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationWorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the name of the workitem type of the clone. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Test Case</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Clone all test suites recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: RelatedLinkComment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RelatedLinkComment</maml:name>
<maml:description>
<maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SuiteIds -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SuiteIds</maml:name>
<maml:description>
<maml:para>Clones only the specified suites. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the name of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DeepClone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DeepClone</maml:name>
<maml:description>
<maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Recurse -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Recurse</maml:name>
<maml:description>
<maml:para>Clone all test suites recursively. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CopyAncestorHierarchy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CopyAncestorHierarchy</maml:name>
<maml:description>
<maml:para>Copies ancestor hierarchy. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CloneRequirements -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CloneRequirements</maml:name>
<maml:description>
<maml:para>Clones requirements referenced by the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationWorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationWorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the name of the workitem type of the clone. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Test Case</dev:defaultValue>
</command:parameter>
<!-- Parameter: SuiteIds -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SuiteIds</maml:name>
<maml:description>
<maml:para>Clones only the specified suites. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RelatedLinkComment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RelatedLinkComment</maml:name>
<maml:description>
<maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>None</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the test plan to clone. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>PS> Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</dev:code>
<dev:remarks>
<maml:para></maml:para>
</dev:remarks>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Copy-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Get-TfsTestPlan</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Active -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Active</maml:name>
<maml:description>
<maml:para>Get only the active plans. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoPlanDetails -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoPlanDetails</maml:name>
<maml:description>
<maml:para>Get only basic properties of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Gets only the plans owned by the specified user. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Gets only the plans owned by the specified user. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NoPlanDetails -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NoPlanDetails</maml:name>
<maml:description>
<maml:para>Get only basic properties of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Active -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Active</maml:name>
<maml:description>
<maml:para>Get only the active plans. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Get-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>New-TfsTestPlan</command:name>
<command:verb>New</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Creates a new test plan. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: EndDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EndDate</maml:name>
<maml:description>
<maml:para>Specifies the end date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StartDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StartDate</maml:name>
<maml:description>
<maml:para>Specifies the start date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: EndDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>EndDate</maml:name>
<maml:description>
<maml:para>Specifies the end date of the test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Owner -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Owner</maml:name>
<maml:description>
<maml:para>Specifies the owner of the new test plan. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/New-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Remove-TfsTestPlan</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Deletes one or more test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Remove-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsTestPlan -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
<command:details>
<command:name>Rename-TfsTestPlan</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsTestPlan</command:noun>
<maml:description>
<maml:para>Renames a test plans. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsTestPlan</maml:name>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: TestPlan -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>TestPlan</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
<maml:para>This is an alias of the TestPlan parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the test plan name. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: TestPlan -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Rename-TfsTestPlan</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsVersion -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
<command:details>
<command:name>Get-TfsVersion</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsVersion</command:noun>
<maml:description>
<maml:para>Gets the version information about Team Foundation / Azure DevOps servers and Azure DevOps Services organizations. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsVersion</maml:name>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: ServerVersion -->
<command:returnValue>
<dev:type>
<maml:name>TfsCmdlets.Util.ServerVersion</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsVersion</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>Get-TfsWiki</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Gets information from one or more Wiki repositories in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get all wikis -->
<command:syntaxItem tfscmdlets:parameterSet="Get all wikis">
<maml:name>Get-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Get Project Wiki">
<maml:name>Get-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WikiV2 -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Get-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>New-TfsWiki</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Creates a new Wiki repository in a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Create Code Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Create Code Wiki">
<maml:name>New-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Provision Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Provision Project Wiki">
<maml:name>New-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
<maml:name>Id</maml:name>
<maml:description>
<maml:para>Specifies the name of the new Wiki </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Repository -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>Repository</maml:name>
<maml:description>
<maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: WikiV2 -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/New-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWiki -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
<command:details>
<command:name>Remove-TfsWiki</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWiki</command:noun>
<maml:description>
<maml:para>Deletes one or more Git repositories from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Remove code wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Remove code wiki">
<maml:name>Remove-TfsWiki</maml:name>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Remove Project Wiki -->
<command:syntaxItem tfscmdlets:parameterSet="Remove Project Wiki">
<maml:name>Remove-TfsWiki</maml:name>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Wiki -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Wiki</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
<maml:para>This is an alias of the Wiki parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ProjectWiki -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>ProjectWiki</maml:name>
<maml:description>
<maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the Wiki to be deleted. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Remove-TfsWiki</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Copy-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Copy-TfsWorkItem</command:name>
<command:verb>Copy</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Creates a copy of a work item, optionally changing its type. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Use this cmdlet to create a copy of a work item (using its latest saved state/revision data) that is of the specified work item type. </maml:para>
<maml:para>By default, the copy retains the same type of the original work item, unless the Type argument is specified </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Copy-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: DestinationProject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationProject</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeAttachments -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeAttachments</maml:name>
<maml:description>
<maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeLinks -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeLinks</maml:name>
<maml:description>
<maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: NewType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewType</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Copy</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NewType</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. When omitted, the type of the original work item is preserved. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeAttachments -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeAttachments</maml:name>
<maml:description>
<maml:para>Creates a duplicate of all attachments present in the source work item and adds them to the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeLinks -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeLinks</maml:name>
<maml:description>
<maml:para>Creates a copy of all links present in the source work item and adds them to the new work item. Only the links are copied; linked artifacts themselves are not copied. In other words, both the original and the copy work items point to the same linked artifacts. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DestinationProject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DestinationProject</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be copied into. When omitted, the copy will be created in the same team project of the source work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the source team project from where the work item will be copied. When omitted, it defaults to the team project of the piped work item (if any), or to the connection set by Connect-TfsTeamProject. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. It takes one of the following values: Original (returns the original work item), Copy (returns the newly created work item copy) or None. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Copy</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Copy-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Get-TfsWorkItem</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Query by revision -->
<command:syntaxItem tfscmdlets:parameterSet="Query by revision">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Revision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>Revision</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: ShowWindow -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ShowWindow</maml:name>
<maml:description>
<maml:para>Opens the specified work item in the default web browser. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by date -->
<command:syntaxItem tfscmdlets:parameterSet="Query by date">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get deleted -->
<command:syntaxItem tfscmdlets:parameterSet="Get deleted">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Gets deleted work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Simple query -->
<command:syntaxItem tfscmdlets:parameterSet="Simple query">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ChangedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that created the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object[]</command:parameterValue>
<dev:type>
<maml:name>System.Object[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedDate</maml:name>
<maml:description>
<maml:para>Specifies the date when the work item was created. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Ever -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Ever</maml:name>
<maml:description>
<maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StateChangeDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StateChangeDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns work items that contain ANY ofthe supplied tags. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>WorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by WIQL -->
<command:syntaxItem tfscmdlets:parameterSet="Query by WIQL">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Query by filter -->
<command:syntaxItem tfscmdlets:parameterSet="Query by filter">
<maml:name>Get-TfsWorkItem</maml:name>
<!-- Parameter: Where -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Where</maml:name>
<maml:description>
<maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AreaPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AreaPath</maml:name>
<maml:description>
<maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IterationPath -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IterationPath</maml:name>
<maml:description>
<maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WorkItemType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>WorkItemType</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the WorkItemType parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: CreatedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that created the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object[]</command:parameterValue>
<dev:type>
<maml:name>System.Object[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CreatedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CreatedDate</maml:name>
<maml:description>
<maml:para>Specifies the date when the work item was created. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedBy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedBy</maml:name>
<maml:description>
<maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ChangedDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ChangedDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the latest change to the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: StateChangeDate -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>StateChangeDate</maml:name>
<maml:description>
<maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime[]</command:parameterValue>
<dev:type>
<maml:name>System.DateTime[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int[]</command:parameterValue>
<dev:type>
<maml:name>System.Int32[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns work items that contain ANY ofthe supplied tags. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Ever -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Ever</maml:name>
<maml:description>
<maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Revision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>Revision</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
<maml:name>rev</maml:name>
<maml:description>
<maml:para>Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
<maml:para>This is an alias of the Revision parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsOf -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsOf</maml:name>
<maml:description>
<maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
</command:parameter>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>WIQL</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>QueryText</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>SavedQuery</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="WIQL,QueryText,SavedQuery,QueryPath">
<maml:name>QueryPath</maml:name>
<maml:description>
<maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
</command:parameter>
<!-- Parameter: Where -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Where</maml:name>
<maml:description>
<maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: TimePrecision -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>TimePrecision</maml:name>
<maml:description>
<maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ShowWindow -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ShowWindow</maml:name>
<maml:description>
<maml:para>Opens the specified work item in the default web browser. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Gets deleted work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Get-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Move-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Move-TfsWorkItem</command:name>
<command:verb>Move</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Moves a work item to a different team project in the same collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Move-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Comment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Comment</maml:name>
<maml:description>
<maml:para>Specifies a comment to be added to the history </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the team project where the work item will be moved to. </maml:para>
<maml:para>This is an alias of the Project parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Comment -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Comment</maml:name>
<maml:description>
<maml:para>Specifies a comment to be added to the history </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Move-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>New-TfsWorkItem</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Creates a new work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItem</maml:name>
<!-- Parameter: Type -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the type of the new work item. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/New-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Remove-TfsWorkItem</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Deletes a work item from a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destroy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destroy</maml:name>
<maml:description>
<maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destroy -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Destroy</maml:name>
<maml:description>
<maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the work item to remove. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Remove-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Search-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Search-TfsWorkItem</command:name>
<command:verb>Search</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Gets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Search-TfsWorkItem</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Results -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Results</maml:name>
<maml:description>
<maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>100</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Results -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Results</maml:name>
<maml:description>
<maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>100</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Search-TfsWorkItem</maml:uri>
</maml:navigationLink>
<maml:navigationLink>
<maml:linkText>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Set-TfsWorkItem -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
<command:details>
<command:name>Set-TfsWorkItem</command:name>
<command:verb>Set</command:verb>
<command:noun>TfsWorkItem</command:noun>
<maml:description>
<maml:para>Sets the contents of one or more work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Set-TfsWorkItem</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: WorkItem -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
<maml:name>id</maml:name>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
<maml:para>This is an alias of the WorkItem parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Specifies the title of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Description -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Description</maml:name>
<maml:description>
<maml:para>Specifies the description of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Area -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Area</maml:name>
<maml:description>
<maml:para>Specifies the area path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Iteration -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Iteration</maml:name>
<maml:description>
<maml:para>Specifies the iteration path of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AssignedTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AssignedTo</maml:name>
<maml:description>
<maml:para>Specifies the user this work item is assigned to. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: State -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>State</maml:name>
<maml:description>
<maml:para>Specifies the state of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Reason -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Reason</maml:name>
<maml:description>
<maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ValueArea -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ValueArea</maml:name>
<maml:description>
<maml:para>Specifies the Value Area of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumn -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumn</maml:name>
<maml:description>
<maml:para>Specifies the board column of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BoardColumnDone -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardColumnDone</maml:name>
<maml:description>
<maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BoardLane -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BoardLane</maml:name>
<maml:description>
<maml:para>Specifies the board lane of the work item </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Priority -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Priority</maml:name>
<maml:description>
<maml:para>Specifies the priority of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: Tags -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Tags</maml:name>
<maml:description>
<maml:para>Specifies the tags of the work item. </maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Fields -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Fields</maml:name>
<maml:description>
<maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: BypassRules -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BypassRules</maml:name>
<maml:description>
<maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Team -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Team</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Set-TfsWorkItem</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemHistory -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.History">
<command:details>
<command:name>Get-TfsWorkItemHistory</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemHistory</command:noun>
<maml:description>
<maml:para>Gets the history of changes of a work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemHistory</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues>
<!-- OutputType: PSCustomObject -->
<command:returnValue>
<dev:type>
<maml:name>System.Management.Automation.PSCustomObject</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/History/Get-TfsWorkItemHistory</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Add-TfsWorkItemLink -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Add-TfsWorkItemLink</command:name>
<command:verb>Add</command:verb>
<command:noun>TfsWorkItemLink</command:noun>
<maml:description>
<maml:para>Adds a link between two work items. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Add-TfsWorkItemLink</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Add-TfsWorkItemLink</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemLink -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Get-TfsWorkItemLink</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemLink</command:noun>
<maml:description>
<maml:para>Gets the links in a work item. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemLink</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLink</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemLinkEndType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
<command:details>
<command:name>Get-TfsWorkItemLinkEndType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemLinkEndType</command:noun>
<maml:description>
<maml:para>Gets the work item link end types of a team project collection. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemLinkEndType</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkEndType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Export-TfsWorkItemQuery</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Exports a saved work item query to XML. </maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Work item queries can be exported to XML files (.WIQ extension) in order to be shared and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use this cmdlet to generate WIQ files compatible with the format supported by Team Explorer. </maml:para>
</maml:description>
<command:syntax>
<!-- Parameter Set: Export to file -->
<command:syntaxItem tfscmdlets:parameterSet="Export to file">
<maml:name>Export-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Encoding -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>UTF-8</dev:defaultValue>
</command:parameter>
<!-- Parameter: FlattenFolders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>FlattenFolders</maml:name>
<maml:description>
<maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Export to output stream -->
<command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
<maml:name>Export-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Encoding -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>UTF-8</dev:defaultValue>
</command:parameter>
<!-- Parameter: FlattenFolders -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>FlattenFolders</maml:name>
<maml:description>
<maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Export-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Get-TfsWorkItemQuery</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Gets the definition of one or more work item saved queries. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemQuery -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>New-TfsWorkItemQuery</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemQuery</command:noun>
<maml:description>
<maml:para>Create a new work items query in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemQuery</maml:name>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Wiql -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Wiql</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Query -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Query</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Query parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Wiql -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Wiql</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
<maml:name>Definition</maml:name>
<maml:description>
<maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
<maml:para>This is an alias of the Wiql parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQuery</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemQueryFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>Get-TfsWorkItemQueryFolder</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemQueryFolder</command:noun>
<maml:description>
<maml:para>Gets the definition of one or more work item saved queries. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemQueryFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>**</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Both</dev:defaultValue>
</command:parameter>
<!-- Parameter: Deleted -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Deleted</maml:name>
<maml:description>
<maml:para>Returns deleted items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQueryFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemQueryFolder -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
<command:details>
<command:name>New-TfsWorkItemQueryFolder</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemQueryFolder</command:noun>
<maml:description>
<maml:para>Create a new work items query in the given Team Project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemQueryFolder</maml:name>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Folder -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Folder</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
<maml:para>This is an alias of the Folder parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Scope -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Scope</maml:name>
<maml:description>
<maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>Personal</dev:defaultValue>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allow the cmdlet to overwrite an existing item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues>
<!-- OutputType: QueryHierarchyItem -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQueryFolder</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Get-TfsWorkItemTag</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Gets one or more work item tags. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Get-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeInactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeInactive</maml:name>
<maml:description>
<maml:para>Includes tags not associated to any work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeInactive -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeInactive</maml:name>
<maml:description>
<maml:para>Includes tags not associated to any work items. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Get-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: New-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>New-TfsWorkItemTag</command:name>
<command:verb>New</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Creates a new work item tag. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>New-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the new tag. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/New-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Remove-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Remove-TfsWorkItemTag</command:name>
<command:verb>Remove</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Deletes one or more work item tags. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Remove-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Remove-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Rename-TfsWorkItemTag -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
<command:details>
<command:name>Rename-TfsWorkItemTag</command:name>
<command:verb>Rename</command:verb>
<command:noun>TfsWorkItemTag</command:noun>
<maml:description>
<maml:para>Renames a work item tag. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Rename-TfsWorkItemTag</maml:name>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Tag -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Tag</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
<maml:para>This is an alias of the Tag parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NewName -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="1">
<maml:name>NewName</maml:name>
<maml:description>
<maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Passthru -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Passthru</maml:name>
<maml:description>
<maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the work item tag to rename. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WebApiTagDefinition -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Rename-TfsWorkItemTag</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Export-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Export-TfsWorkItemType</command:name>
<command:verb>Export</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Exports an XML work item type definition from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Export to output stream -->
<command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
<maml:name>Export-TfsWorkItemType</maml:name>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Export to file -->
<command:syntaxItem tfscmdlets:parameterSet="Export to file">
<maml:name>Export-TfsWorkItemType</maml:name>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
<maml:para>This is an alias of the Type parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: IncludeGlobalLists -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IncludeGlobalLists</maml:name>
<maml:description>
<maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Destination -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>Destination</maml:name>
<maml:description>
<maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Force -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Force</maml:name>
<maml:description>
<maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AsXml -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>AsXml</maml:name>
<maml:description>
<maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: String -->
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Export-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Get-TfsWorkItemType</command:name>
<command:verb>Get</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Gets one or more Work Item Type definitions from a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: Get by type -->
<command:syntaxItem tfscmdlets:parameterSet="Get by type">
<maml:name>Get-TfsWorkItemType</maml:name>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
<!-- Parameter Set: Get by work item -->
<command:syntaxItem tfscmdlets:parameterSet="Get by work item">
<maml:name>Get-TfsWorkItemType</maml:name>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Type -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Type</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
<maml:para>This is an alias of the Type parameter.</maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>*</dev:defaultValue>
</command:parameter>
<!-- Parameter: WorkItem -->
<command:parameter required="true" globbing="false" pipelineInput="false" position="named">
<maml:name>WorkItem</maml:name>
<maml:description>
<maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Project -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
<maml:name>Project</maml:name>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Collection -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Collection</maml:name>
<maml:description>
<maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
</maml:description>
<command:parameterValue required="true">object</command:parameterValue>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
<maml:name>System.Object</maml:name>
<maml:uri />
</dev:type>
<maml:description>
<maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<!-- OutputType: WorkItemType -->
<command:returnValue>
<dev:type>
<maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType</maml:name>
<maml:uri />
</dev:type>
</command:returnValue>
</command:returnValues>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Get-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Import-TfsWorkItemType -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
<command:details>
<command:name>Import-TfsWorkItemType</command:name>
<command:verb>Import</command:verb>
<command:noun>TfsWorkItemType</command:noun>
<maml:description>
<maml:para>Imports a work item type definition into a team project. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Import-TfsWorkItemType</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Import-TfsWorkItemType</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Start-TfsXamlBuild -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.XamlBuild">
<command:details>
<command:name>Start-TfsXamlBuild</command:name>
<command:verb>Start</command:verb>
<command:noun>TfsXamlBuild</command:noun>
<maml:description>
<maml:para>Queues a XAML Build. </maml:para>
</maml:description>
</command:details>
<command:syntax>
<!-- Parameter Set: __AllParameterSets -->
<command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
<maml:name>Start-TfsXamlBuild</maml:name>
</command:syntaxItem>
</command:syntax>
<command:parameters />
<command:inputTypes />
<command:returnValues />
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Online Version:</maml:linkText>
<maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/XamlBuild/Start-TfsXamlBuild</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
</helpItems>
$global:TfsCmdletsLoadSw.Stop()
VERIFICATION
============
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Binary files contained in this package can be compared against their respective NuGet source packages, listed below:
Log in or click on link to see number of positives.
- System.Xml.XPath.XmlDocument.dll (d81f08289aaa) - ## / 73
- System.Collections.Immutable.dll (a411a3e3aac7) - ## / 68
- System.Security.Cryptography.ProtectedData.dll (1c73a1b016cf) - ## / 71
- System.Reflection.Metadata.dll (4952eb4ad75b) - ## / 68
- Microsoft.Win32.Primitives.dll (5eaa2e82a26b) - ## / 71
- System.AppContext.dll (9dc115ac4aad) - ## / 71
- System.Collections.Concurrent.dll (cc62f3b867d5) - ## / 71
- System.Collections.dll (c2250e9e51b4) - ## / 71
- System.Collections.NonGeneric.dll (529943c0cdf2) - ## / 71
- System.Collections.Specialized.dll (938da38561da) - ## / 70
- System.ComponentModel.dll (5e61d755616c) - ## / 71
- System.ComponentModel.EventBasedAsync.dll (22108e32e0b6) - ## / 70
- System.ComponentModel.Primitives.dll (bfcd867f71c8) - ## / 71
- System.ComponentModel.TypeConverter.dll (0dbb92ecd5df) - ## / 71
- System.Console.dll (b537313413f8) - ## / 71
- System.Diagnostics.Contracts.dll (9c4ae61e0e83) - ## / 71
- System.Diagnostics.Debug.dll (55a30d92d163) - ## / 71
- System.Diagnostics.FileVersionInfo.dll (7c25a74772e1) - ## / 71
- System.Diagnostics.Process.dll (28b165cddb82) - ## / 71
- System.Diagnostics.TextWriterTraceListener.dll (63eab38ee9f4) - ## / 71
- System.Diagnostics.Tools.dll (260c6250ef9b) - ## / 70
- System.Diagnostics.TraceSource.dll (c81a57d0634c) - ## / 70
- System.Drawing.Primitives.dll (2805a18724a2) - ## / 71
- System.Dynamic.Runtime.dll (f600acc81172) - ## / 71
- System.Globalization.Calendars.dll (b56ffb65b842) - ## / 71
- System.Globalization.dll (56bd0c02c734) - ## / 71
- System.IO.Compression.ZipFile.dll (7720ee13405e) - ## / 71
- System.IO.dll (c191a43029ed) - ## / 71
- System.IO.FileSystem.dll (9a4595dbb128) - ## / 71
- System.IO.FileSystem.DriveInfo.dll (984575c44cab) - ## / 71
- System.IO.FileSystem.Primitives.dll (5c84dd40d67c) - ## / 71
- System.IO.FileSystem.Watcher.dll (c9e2562f1a1b) - ## / 71
- System.IO.IsolatedStorage.dll (0e80a2e256d1) - ## / 70
- System.IO.MemoryMappedFiles.dll (81b6527ac2d1) - ## / 70
- System.IO.Pipes.dll (80a229b2917f) - ## / 71
- System.IO.UnmanagedMemoryStream.dll (86f1f12e47f2) - ## / 71
- System.Linq.dll (349c7fbe9ae2) - ## / 71
- System.Linq.Expressions.dll (bf97f6716523) - ## / 71
- System.Linq.Parallel.dll (30a49d16436e) - ## / 72
- System.Linq.Queryable.dll (719ac73bb261) - ## / 71
- System.Net.NameResolution.dll (222bd77c5692) - ## / 71
- System.Net.NetworkInformation.dll (2e2d28a0802d) - ## / 71
- System.Net.Ping.dll (4d97e8481b9a) - ## / 71
- System.Net.Primitives.dll (9a8ba725f8e9) - ## / 71
- System.Net.Requests.dll (f2e74a3ec2dc) - ## / 71
- System.Net.Security.dll (d0d90152136a) - ## / 69
- System.Net.WebHeaderCollection.dll (69b48ff8e6f4) - ## / 71
- System.Net.WebSockets.Client.dll (19766a20b62b) - ## / 71
- System.Net.WebSockets.dll (99920ce34a01) - ## / 71
- System.ObjectModel.dll (870ee1141cb6) - ## / 71
- System.Reflection.dll (63aaf632ee7f) - ## / 71
- System.Reflection.Extensions.dll (3d2551d6458b) - ## / 70
- System.Reflection.Primitives.dll (0383dc02fdf0) - ## / 70
- System.Resources.Reader.dll (e3036362506d) - ## / 70
- System.Resources.ResourceManager.dll (62dce4679e33) - ## / 70
- System.Resources.Writer.dll (daaabd07f1b9) - ## / 70
- System.Runtime.CompilerServices.VisualC.dll (18a610b8bad4) - ## / 70
- System.Runtime.dll (50ad612d4cf6) - ## / 71
- System.Runtime.Extensions.dll (f9feb277f862) - ## / 71
- System.Runtime.Handles.dll (7a81d2a001b5) - ## / 70
- System.Runtime.InteropServices.dll (383a1f9dac65) - ## / 71
- System.Runtime.Numerics.dll (16e7efd6c19b) - ## / 71
- System.Runtime.Serialization.Formatters.dll (c343f7bf08a4) - ## / 70
- System.Runtime.Serialization.Json.dll (e8d531f0aaa6) - ## / 71
- System.Security.Claims.dll (8270d1248950) - ## / 71
- System.Security.Cryptography.Csp.dll (566775f5502c) - ## / 71
- System.Security.Cryptography.Encoding.dll (1f5c1abe1b27) - ## / 71
- System.Security.Cryptography.Primitives.dll (b755d0b55a46) - ## / 71
- System.Security.Cryptography.X509Certificates.dll (3c8630acb43c) - ## / 67
- System.Security.Principal.dll (02416bc542be) - ## / 68
- System.Text.Encoding.dll (0ab1f7f87b7c) - ## / 71
- System.Text.Encoding.Extensions.dll (cbe29672cd2b) - ## / 71
- System.Text.RegularExpressions.dll (c98a52bd017d) - ## / 71
- System.Threading.dll (4dc8d588ec63) - ## / 71
- System.Threading.Tasks.dll (0110616dfe87) - ## / 69
- System.Threading.Tasks.Parallel.dll (3468e0c875db) - ## / 71
- System.Threading.Thread.dll (9d4faea9892d) - ## / 71
- System.Threading.ThreadPool.dll (3d9ebc81b1bd) - ## / 71
- System.Threading.Timer.dll (04b9235f64c9) - ## / 71
- System.Xml.ReaderWriter.dll (5f560e1dd529) - ## / 71
- System.Xml.XDocument.dll (4f6a14e4ba2a) - ## / 71
- System.Xml.XmlDocument.dll (8957f0bcea6a) - ## / 71
- System.Xml.XmlSerializer.dll (21493f7f615a) - ## / 71
- System.Xml.XPath.dll (24daa1faee04) - ## / 71
- netstandard.dll (8be4a2270f8b) - ## / 71
- System.Data.Common.dll (1c7bff6f16bb) - ## / 69
- System.Diagnostics.StackTrace.dll (cae99f910874) - ## / 70
- System.Diagnostics.Tracing.dll (b84b93be455c) - ## / 70
- System.Globalization.Extensions.dll (c7e91bd148ed) - ## / 71
- System.IO.Compression.dll (da18d61bb6b7) - ## / 71
- System.Net.Http.dll (b5d20736f84f) - ## / 71
- System.Net.Sockets.dll (694f4c61b6ba) - ## / 71
- System.Runtime.Serialization.Primitives.dll (575e26a45589) - ## / 71
- System.Runtime.Serialization.Xml.dll (557858e44a51) - ## / 71
- System.Security.Cryptography.Algorithms.dll (967dddbfe7f1) - ## / 75
- System.Security.SecureString.dll (18032d190d0d) - ## / 71
- System.Threading.Overlapped.dll (f17ff442b77a) - ## / 71
- System.ValueTuple.dll (efd8155cec6f) - ## / 72
- System.Xml.XPath.XDocument.dll (b33d08149a75) - ## / 71
- System.Configuration.ConfigurationManager.dll (bac1ace21a5d) - ## / 71
- System.Runtime.InteropServices.RuntimeInformation.dll (8bb9d52ba5c6) - ## / 74
- sni.dll (68705c4ef9ab) - ## / 72
- System.Data.SqlClient.dll (0cbf6d2f6bf5) - ## / 74
- sni.dll (1446d6b26da4) - ## / 72
- System.Security.Cryptography.ProtectedData.dll (81a0385cf1fe) - ## / 71
- sni.dll (ef18458c4dcb) - ## / 68
- Newtonsoft.Json.Bson.dll (b606e5dd77a6) - ## / 72
- System.Net.Http.Formatting.dll (ef32858203f7) - ## / 72
- Ben.Demystifier.dll (e34379f2a560) - ## / 62
- Newtonsoft.Json.dll (99177a4cbe03) - ## / 72
- Newtonsoft.Json.dll (7f912b28a07c) - ## / 71
- Ben.Demystifier.dll (b8f5f79ba34d) - ## / 67
- Microsoft.IdentityModel.Clients.ActiveDirectory.dll (ba88c8fdc173) - ## / 68
- HtmlAgilityPack.dll (32f024cdd195) - ## / 73
- Microsoft.IdentityModel.Clients.ActiveDirectory.dll (b9cb7c841e53) - ## / 67
- Microsoft.IdentityModel.JsonWebTokens.dll (4b9e70be0440) - ## / 72
- Microsoft.IdentityModel.Logging.dll (5805dbef5dc4) - ## / 73
- Microsoft.IdentityModel.Tokens.dll (cb0da06c03f5) - ## / 73
- System.Data.SqlClient.dll (1a14bfb3d4cd) - ## / 74
- System.IdentityModel.Tokens.Jwt.dll (64ecbb6c584d) - ## / 73
- System.Management.Automation.dll (c04971e8158f) - ## / 72
- HtmlAgilityPack.dll (03c2f5dc7c17) - ## / 73
- Microsoft.IdentityModel.JsonWebTokens.dll (da32dffe387b) - ## / 72
- Microsoft.IdentityModel.Logging.dll (6dc537f3020b) - ## / 71
- Microsoft.IdentityModel.Tokens.dll (e0f3cf1ffe99) - ## / 72
- System.IdentityModel.Tokens.Jwt.dll (919b933e1672) - ## / 72
- System.Management.Automation.dll (197c7ec45938) - ## / 62
- System.Net.Http.Formatting.dll (7b58adc6e23b) - ## / 72
- System.Web.Http.dll (fd09c793bdeb) - ## / 71
- System.Web.Http.WebHost.dll (4ca246031c9c) - ## / 72
- System.Data.SqlClient.dll (eec579a86537) - ## / 73
- TfsCmdlets.2.0.0-rc0002.nupkg (942f52684cb0) - ## / 58
- Microsoft.Azure.DevOps.Comments.WebApi.dll (ade00fad282f) - ## / 69
- Microsoft.TeamFoundation.Build2.WebApi.dll (2448253838ea) - ## / 68
- Microsoft.TeamFoundation.Common.dll (5ff9340b21cc) - ## / 67
- Microsoft.TeamFoundation.Core.WebApi.dll (4846ee075197) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.dll (bce2267dbace) - ## / 70
- Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll (f89ae5d0c124) - ## / 70
- Microsoft.TeamFoundation.Policy.WebApi.dll (141ad6aa70a9) - ## / 70
- Microsoft.TeamFoundation.SourceControl.WebApi.dll (5333435126b5) - ## / 66
- Microsoft.TeamFoundation.Test.WebApi.dll (295776174dff) - ## / 67
- Microsoft.TeamFoundation.TestManagement.WebApi.dll (06d113d80208) - ## / 70
- Microsoft.TeamFoundation.Wiki.WebApi.dll (18439106e458) - ## / 69
- Microsoft.TeamFoundation.Work.WebApi.dll (70b105b7a27e) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll (e7c89cf2dfa2) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll (0d6417fd7fc6) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.dll (b66dee5d9ccb) - ## / 69
- Microsoft.VisualStudio.Services.Common.dll (0d95f06ac247) - ## / 70
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll (43435603546e) - ## / 70
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll (0f7463b64d0d) - ## / 70
- Microsoft.VisualStudio.Services.Search.WebApi.dll (58342d2f093b) - ## / 70
- Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll (c3524715a4fe) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll (847d5e3cad43) - ## / 70
- Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll (3cf6eb2ad3c7) - ## / 70
- Microsoft.VisualStudio.Services.TestResults.WebApi.dll (4b96a6f2152d) - ## / 70
- Microsoft.VisualStudio.Services.WebApi.dll (6131822a6879) - ## / 69
- TfsCmdlets.PSCore.dll (6b88932bbf7a) - ## / 70
- Microsoft.Azure.DevOps.Comments.WebApi.dll (9a2d77c52228) - ## / 70
- Microsoft.TeamFoundation.Build.Client.dll (12a26ddb4224) - ## / 69
- Microsoft.TeamFoundation.Build.Common.dll (7b15ccdc3396) - ## / 70
- Microsoft.TeamFoundation.Build2.WebApi.dll (9326c4acb389) - ## / 70
- Microsoft.TeamFoundation.Client.dll (2d3e0204555c) - ## / 70
- Microsoft.TeamFoundation.Common.dll (e8254e1c1191) - ## / 70
- Microsoft.TeamFoundation.Core.WebApi.dll (973dcdcca4a0) - ## / 70
- Microsoft.TeamFoundation.Dashboards.WebApi.dll (3f6f9deaff0c) - ## / 70
- Microsoft.TeamFoundation.DeleteTeamProject.dll (6ffdcd4e6d64) - ## / 69
- Microsoft.TeamFoundation.Diff.dll (a191768387f6) - ## / 70
- Microsoft.TeamFoundation.Discussion.Client.dll (7f97f7d660ed) - ## / 70
- Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll (96e23f8a6ce0) - ## / 70
- Microsoft.TeamFoundation.Git.Client.dll (bf09ce746bba) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.dll (e301fefef469) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.dll (2a0e2440c2b8) - ## / 70
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.dll (3495f971de02) - ## / 69
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.dll (026c133a60eb) - ## / 69
- Microsoft.TeamFoundation.Policy.WebApi.dll (a621047c6868) - ## / 67
- Microsoft.TeamFoundation.ProjectManagement.dll (c8bea5dedf86) - ## / 68
- Microsoft.TeamFoundation.SharePointReporting.Integration.dll (6cacd22a3ef2) - ## / 69
- Microsoft.TeamFoundation.SourceControl.WebApi.dll (971b10c1b4d0) - ## / 68
- Microsoft.TeamFoundation.Test.WebApi.dll (fcf48437328e) - ## / 70
- Microsoft.TeamFoundation.TestImpact.Client.dll (83d558da32ff) - ## / 70
- Microsoft.TeamFoundation.TestManagement.Client.dll (c952b4e928ee) - ## / 67
- Microsoft.TeamFoundation.TestManagement.Common.dll (0165ad72a8ca) - ## / 64
- Microsoft.TeamFoundation.TestManagement.WebApi.dll (fd0e76a90ef1) - ## / 67
- Microsoft.TeamFoundation.VersionControl.Client.dll (62067ce6773a) - ## / 70
- Microsoft.TeamFoundation.VersionControl.Common.dll (fee5f3e25f54) - ## / 70
- Microsoft.TeamFoundation.VersionControl.Common.Integration.dll (67ae2335f127) - ## / 70
- Microsoft.TeamFoundation.Wiki.WebApi.dll (f7f892415373) - ## / 67
- Microsoft.TeamFoundation.Work.WebApi.dll (055304fbec73) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll (d7c5626022a5) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.dll (5f1ee667f199) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll (005c29537170) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.dll (d0bc351c7391) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll (7daa829f992d) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll (fd2af341697a) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll (1567a89d37cb) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.dll (3e428d50a8bf) - ## / 68
- Microsoft.VisualStudio.Services.Common.dll (a256c564793f) - ## / 70
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll (ce8aa7e16f62) - ## / 70
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll (b33a054d8d5e) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.dll (572f1ee0150a) - ## / 69
- Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll (6f8b24483f19) - ## / 68
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll (e9a7366dc952) - ## / 69
- Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll (74012c799c1e) - ## / 65
- Microsoft.VisualStudio.Services.TestResults.WebApi.dll (a8dc768dec29) - ## / 70
- Microsoft.VisualStudio.Services.WebApi.dll (e2de71862216) - ## / 70
- Microsoft.WITDataStore32.dll (f7b30674b417) - ## / 68
- Microsoft.WITDataStore64.dll (f19ad5d5a5ec) - ## / 70
- TfsCmdlets.PSDesktop.dll (e2ba29b53888) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (235fd2cd6264) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (6f6189b354e4) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (b111723e3cf3) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (74795466898e) - ## / 67
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (313e5dc7ccde) - ## / 70
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (968df2ab8a1f) - ## / 70
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (41456ff804c5) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (b101f2b24887) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (8d1220c85189) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (c956923d08c7) - ## / 68
- Microsoft.TeamFoundation.Build.Client.resources.dll (25a617c5736d) - ## / 68
- Microsoft.TeamFoundation.Build.Common.resources.dll (1b1a42bea450) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (11b504941df3) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (40a048893e3f) - ## / 69
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (30890d1a4f2e) - ## / 69
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (591087e753fb) - ## / 68
- Microsoft.TeamFoundation.Lab.Client.resources.dll (a45ba6c9f7e8) - ## / 68
- Microsoft.TeamFoundation.Lab.Common.resources.dll (7d6ebfdfeaab) - ## / 68
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (922e67e3aaf1) - ## / 66
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (6538b15ee8e9) - ## / 69
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (a4eefb495c27) - ## / 66
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (4acdd8a3c196) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (a7a1cc238b55) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (73bbcc6fdf15) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (23f20e52411b) - ## / 67
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (8f7c4e20a6ad) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (54d6e6b3acb5) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (c895538255a8) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (13cc6d44626c) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (6adb818a190d) - ## / 68
- Microsoft.VisualStudio.Services.Common.resources.dll (1ccfc8dc9e75) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (5e64e1ccfaf0) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (831749cfa503) - ## / 68
- Microsoft.TeamFoundation.Build.Common.resources.dll (da00ec8bf812) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (84c546296b91) - ## / 67
- Microsoft.TeamFoundation.Common.resources.dll (b6c1cd231993) - ## / 68
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (23c13793c4c6) - ## / 68
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (e323bbab711d) - ## / 68
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (64c28ae44197) - ## / 68
- Microsoft.TeamFoundation.Lab.Client.resources.dll (1e168a1e2784) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (ecde6d687d8f) - ## / 68
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (760cbe337dd8) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (ddd45b1c03c1) - ## / 66
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (0478f0a8eedb) - ## / 68
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (cad33cd2188e) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (9fac546ddc86) - ## / 70
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (e9d79f7de56c) - ## / 70
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (6c3d1a3dd6e1) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (ef6209f14c17) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (6ef03cacf241) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (b478486c6f5e) - ## / 67
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (a3b85791a2b3) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (535278971c7f) - ## / 68
- Microsoft.VisualStudio.Services.Common.resources.dll (b88378401c77) - ## / 70
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (5182261463c0) - ## / 68
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (cbfef1d0fc5a) - ## / 67
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (f4bb9d140406) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (df2d713c1a80) - ## / 70
- Microsoft.VisualStudio.Services.WebApi.resources.dll (88d131b83762) - ## / 68
- Microsoft.TeamFoundation.Build.Client.resources.dll (1fc68c90a393) - ## / 68
- Microsoft.TeamFoundation.Build.Common.resources.dll (202c676f02a2) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (8db8fe36dec4) - ## / 67
- Microsoft.TeamFoundation.Common.resources.dll (9cea64558882) - ## / 68
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (0a072580c279) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (842d53d4fe7e) - ## / 68
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (8e11dd7f6524) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (1b21718a679a) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (2945f48e3856) - ## / 70
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (f902ece9aba1) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (79b3251575b7) - ## / 68
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (f8eb081da14a) - ## / 70
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (399e5a799567) - ## / 67
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (a9ce6b43b770) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (d7f12ef595b9) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (684f70ecd33b) - ## / 67
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (616ba317b32a) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (563509b80a51) - ## / 67
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (22ddec0b0fd4) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (daa7d4949849) - ## / 68
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (66b0a40f5f20) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (27e43f3cd940) - ## / 68
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (181eb1ea2a4c) - ## / 68
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (225265771066) - ## / 68
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (3a497da61a6a) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (d0be7bf0af7b) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (ca039e4010be) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (17f0559ec561) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (a568bd1a863f) - ## / 69
- Microsoft.TeamFoundation.Client.resources.dll (aa262f2fccf9) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (4e81f67d1170) - ## / 68
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (23354a76a135) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (7ecab0bbe0f1) - ## / 68
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (3a91872038f2) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (b0a5a58938ad) - ## / 69
- Microsoft.TeamFoundation.Lab.Common.resources.dll (6ffe496c06b8) - ## / 61
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (cd05b5b68bfc) - ## / 67
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (0fd02c16b0dd) - ## / 69
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (e4582f2835c4) - ## / 70
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (1dadaab1ff2b) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (010ed9408c8a) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (a371fa811551) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (e1b8b5f1ba1f) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (9933eacd7800) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (0699f58d3d3f) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (ae5d09f8529e) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (1116195a1d99) - ## / 68
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (9c0a780224f9) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (8edb15b3549f) - ## / 66
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (a730f9d41364) - ## / 69
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (86cd78399649) - ## / 70
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (1f9c08994d09) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (b0189701c7c6) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (ba4acc5d5c5c) - ## / 68
- Microsoft.TeamFoundation.Build.Client.resources.dll (8449159bc69e) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (60bf8409f1cb) - ## / 69
- Microsoft.TeamFoundation.Client.resources.dll (16295c9453e3) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (0a095726aced) - ## / 69
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (c619534ddfb0) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (6448d194d133) - ## / 68
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (98e9a70d06c5) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (06c657deff6e) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (2c8e14be18e2) - ## / 68
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (14e1b6919a8e) - ## / 69
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (ff5e12068269) - ## / 69
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (959a7bdd04c6) - ## / 63
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (7b357310ad0f) - ## / 68
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (22bbfc0fb78a) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (fe8a7b83c414) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (edd7c77e5bca) - ## / 63
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (5b5ee360ab29) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (a49843618037) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (8f9f3b37ee0c) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (1d5ff617536a) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (d43fcef676d3) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (8b0abb8f7652) - ## / 70
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (e97b3c43055d) - ## / 70
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (6e7323728890) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (7c7160e7a075) - ## / 68
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (6c18967a81f6) - ## / 70
- Microsoft.VisualStudio.Services.WebApi.resources.dll (423bbd3f6be3) - ## / 68
- Microsoft.TeamFoundation.Build.Client.resources.dll (b5b598f781a2) - ## / 65
- Microsoft.TeamFoundation.Build.Common.resources.dll (098c21595665) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (e269cadd5af3) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (96c401fce91d) - ## / 70
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (1ea0b583d3ac) - ## / 70
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (dd3fa799bcf1) - ## / 69
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (a86d725b2773) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (8d63829ca8d5) - ## / 68
- Microsoft.TeamFoundation.Lab.Common.resources.dll (1f2917be0ee7) - ## / 70
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (fbb6b376d00e) - ## / 69
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (dc23edcdbddd) - ## / 70
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (e303ccdc88d0) - ## / 69
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (cc9a34113007) - ## / 70
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (fe259d513019) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (903c1fd8a71d) - ## / 67
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (533f66a6b706) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (b2bdd04da16b) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (7f6e8a381f8e) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (d5450444b88e) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (59b323dca518) - ## / 70
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (00ab37bdd955) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (26eb7386f445) - ## / 68
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (92de504f0ca3) - ## / 68
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (f8bb00bff28c) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (02bbf149d1f1) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (fb64841f0e95) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (84b1569d8d96) - ## / 67
- Microsoft.TeamFoundation.Build.Client.resources.dll (4431136470d0) - ## / 68
- Microsoft.TeamFoundation.Build.Common.resources.dll (a4cd63e917e7) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (459729345996) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (db15b954ad6c) - ## / 69
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (149e37952353) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (b54132cb053b) - ## / 69
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (309df415db92) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (e04fcd3e2989) - ## / 69
- Microsoft.TeamFoundation.Lab.Common.resources.dll (6aa733d5e112) - ## / 68
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (5a1d676a03fc) - ## / 70
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (797d1a30b606) - ## / 70
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (114be9475e09) - ## / 69
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (824d9ac939ff) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (7f9c8d5ab8a9) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (d6aec6d72a06) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (f515460549c8) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (a1f400a6184a) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (163595080382) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (3796c69110f5) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (d9db60f3bbb2) - ## / 70
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (d1a84510b6e7) - ## / 68
- Microsoft.VisualStudio.Services.Common.resources.dll (aba7187f2288) - ## / 69
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (e0216c14d71c) - ## / 70
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (1ec65a365b60) - ## / 70
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (c6d4c8f9c6a0) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (f42532f8b4a8) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (c63162012af1) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (ef7758c9d86b) - ## / 68
- Microsoft.TeamFoundation.Build.Common.resources.dll (4768fe60b89e) - ## / 69
- Microsoft.TeamFoundation.Client.resources.dll (01b800343b48) - ## / 70
- Microsoft.TeamFoundation.Common.resources.dll (6f6d67577217) - ## / 68
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (b88cb66b5b63) - ## / 69
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (5c762bc3fc06) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (241f11d5582c) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (f79127bdd9e0) - ## / 69
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (45dc40a65b79) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (abbed182bcaf) - ## / 70
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (403f4b4f80cc) - ## / 68
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (47c3d1ea28c9) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (7af7e805d284) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (aed3ce4e318f) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (3ff6eec72cab) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (a24058420f83) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (994aaaede496) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (83c19c89849b) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (011e98b31370) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (2b9139417b2c) - ## / 68
- Microsoft.VisualStudio.Services.Common.resources.dll (cd34d4ef98a4) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (9ad54f71bdef) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (b186af51c14f) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (b318348eca21) - ## / 69
- Microsoft.TeamFoundation.Client.resources.dll (f874118f7fd2) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (386ca647e9ba) - ## / 70
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (4af376906b85) - ## / 68
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (e562d40b45a3) - ## / 68
- Microsoft.TeamFoundation.Lab.Client.resources.dll (c0e890948840) - ## / 68
- Microsoft.TeamFoundation.Lab.Common.resources.dll (505aa69c4af5) - ## / 69
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (24fedc39bf3e) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (15a15a13c542) - ## / 68
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (82538b9da0ba) - ## / 68
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (b922d3525234) - ## / 67
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (295587413f28) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (bf3a128263cc) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (7179203d1d53) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (504f5b67950b) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (8bcefd6f2b89) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (5bec91f50cef) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (441a6c3a51f6) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (a57f80e550d9) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (0ade1d5202b4) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (a8add0f3001a) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (e7a01c09df32) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (dd9656f0e881) - ## / 68
- Microsoft.TeamFoundation.Client.resources.dll (5635c831f6c2) - ## / 67
- Microsoft.TeamFoundation.Common.resources.dll (d250b679d119) - ## / 69
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (4263a0cfd5d1) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (2bb9bb7144fb) - ## / 70
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (5df3bafaeb1f) - ## / 68
- Microsoft.TeamFoundation.Lab.Client.resources.dll (1dbb6f80a54e) - ## / 61
- Microsoft.TeamFoundation.Lab.Common.resources.dll (7f8dc3f416cb) - ## / 66
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (bbdd67a54224) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (a580794f135d) - ## / 66
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (d8c89453700d) - ## / 69
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (3b189bad8228) - ## / 68
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (1686cb2dd82d) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (d85a7b680230) - ## / 65
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (ea99c7d379ac) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (478c79358895) - ## / 67
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (f31616ff82dc) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (393e51613ca0) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (478d453fd6b4) - ## / 68
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (403e7b617b92) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (b46d1bdf5864) - ## / 69
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (506f6ceae648) - ## / 69
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (e574d27d3694) - ## / 67
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (234756852f30) - ## / 70
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (b2cb1a44279a) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (c72bd52bfbdd) - ## / 69
- Microsoft.TeamFoundation.Build.Client.resources.dll (acfa70d93add) - ## / 70
- Microsoft.TeamFoundation.Build.Common.resources.dll (b3af83b83991) - ## / 66
- Microsoft.TeamFoundation.Client.resources.dll (63ac86324428) - ## / 70
- Microsoft.TeamFoundation.Common.resources.dll (67a1bc6e1a48) - ## / 70
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (93c645c91eb3) - ## / 68
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (82ab89f8c9b0) - ## / 70
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (2d600fa2a5e0) - ## / 69
- Microsoft.TeamFoundation.Lab.Client.resources.dll (857ccf5dc0c9) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (61d085b8705a) - ## / 70
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (0ad40681de8d) - ## / 68
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (32baf95ec6c4) - ## / 70
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (4afd7379126f) - ## / 70
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (4b117884aaf4) - ## / 70
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (458b22dc20e4) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (c4ef858950cd) - ## / 70
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (882230ee3a15) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (7c68a1f9797b) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (1c8f21102285) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (96f4a7670f2e) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (8e62abe802fd) - ## / 70
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (54da4c0bd590) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (db5388504d5c) - ## / 68
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (260becab9ba3) - ## / 70
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (c55af1dca9e9) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (e24f17073d86) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (de27b0335d2f) - ## / 68
- Microsoft.VisualStudio.Services.WebApi.resources.dll (40d9dffe71aa) - ## / 70
- Microsoft.TeamFoundation.Build.Client.resources.dll (002c93891986) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (80093c1bb44e) - ## / 70
- Microsoft.TeamFoundation.Client.resources.dll (58c2d47280e7) - ## / 70
- Microsoft.TeamFoundation.Common.resources.dll (80655cd94e34) - ## / 68
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (b22d2f927ca4) - ## / 70
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (dd0646be98b3) - ## / 70
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (7711783fde9a) - ## / 70
- Microsoft.TeamFoundation.Lab.Client.resources.dll (876c8a70fcbb) - ## / 70
- Microsoft.TeamFoundation.Lab.Common.resources.dll (877f2d2edfc2) - ## / 69
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (81a3dd440da3) - ## / 69
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (595ec9b8226a) - ## / 70
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (f0cc877c4ed6) - ## / 68
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (0cfdf743d568) - ## / 69
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (bdb9b2e93965) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (75026f31eba1) - ## / 68
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (2d20c8312369) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (e14a37bed116) - ## / 69
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (d7569ecc6113) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (addd151354aa) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (04d83c4ae3a3) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (8f64f5e4fc29) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (76d2993fa395) - ## / 69
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (0743a7c34811) - ## / 69
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (dd5d8811857c) - ## / 68
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (af596de3903d) - ## / 70
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (d7735b785168) - ## / 70
- Microsoft.VisualStudio.Services.WebApi.resources.dll (6fbf945e8f5c) - ## / 70
- Microsoft.TeamFoundation.Build.Client.resources.dll (799df3b1e306) - ## / 69
- Microsoft.TeamFoundation.Build.Common.resources.dll (c060a0fa9cff) - ## / 69
- Microsoft.TeamFoundation.Client.resources.dll (597981d1817e) - ## / 69
- Microsoft.TeamFoundation.Common.resources.dll (e6667781e6a8) - ## / 66
- Microsoft.TeamFoundation.Core.WebApi.resources.dll (b2d9eff99f33) - ## / 69
- Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll (a937fdd6d71e) - ## / 70
- Microsoft.TeamFoundation.Discussion.Client.resources.dll (efd824bd0db9) - ## / 66
- Microsoft.TeamFoundation.Lab.Client.resources.dll (a55ab3e829a0) - ## / 69
- Microsoft.TeamFoundation.Lab.Common.resources.dll (a44f0af37ef1) - ## / 69
- Microsoft.TeamFoundation.Lab.TestIntegration.Client.resources.dll (89b5cd25e2eb) - ## / 69
- Microsoft.TeamFoundation.Lab.WorkflowIntegration.Client.resources.dll (d49849801d48) - ## / 69
- Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll (806680c870f6) - ## / 69
- Microsoft.TeamFoundation.TestImpact.Client.resources.dll (286b11d81b85) - ## / 66
- Microsoft.TeamFoundation.TestManagement.Client.resources.dll (9336694284c3) - ## / 69
- Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll (5dfb1ee4a9db) - ## / 67
- Microsoft.TeamFoundation.VersionControl.Common.resources.dll (6c79f59d31e2) - ## / 70
- Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll (799f1c8b1664) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll (c470a6bf133f) - ## / 66
- Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll (f033a7be9b25) - ## / 68
- Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll (9ecda15be62e) - ## / 69
- Microsoft.VisualStudio.Services.Client.Interactive.resources.dll (c9fdb2aa1b0b) - ## / 69
- Microsoft.VisualStudio.Services.Common.resources.dll (c6b51fb274fe) - ## / 69
- Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll (2848cc366fd1) - ## / 69
- Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll (5d2b4a6d74c1) - ## / 69
- Microsoft.VisualStudio.Services.Search.WebApi.resources.dll (56f15d1bb4a8) - ## / 69
- Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll (8abbf13a3cd6) - ## / 69
- Microsoft.VisualStudio.Services.WebApi.resources.dll (e43473e226b4) - ## / 70
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 |
---|---|---|---|---|
TfsCmdlets 2.9.1 | 15 | Thursday, June 5, 2025 | Approved | |
TfsCmdlets 2.9.0 | 136 | Thursday, August 15, 2024 | Approved | |
TfsCmdlets 2.8.2 | 46 | Wednesday, July 24, 2024 | Approved | |
TfsCmdlets 2.8.1 | 89 | Tuesday, July 16, 2024 | Approved | |
TfsCmdlets 2.8.0 | 48 | Tuesday, July 9, 2024 | Approved | |
TfsCmdlets 2.7.1 | 36 | Wednesday, July 3, 2024 | Approved | |
TfsCmdlets 2.6.1 | 59 | Wednesday, May 15, 2024 | Approved | |
TfsCmdlets 2.6.0 | 319 | Saturday, October 1, 2022 | Approved | |
TfsCmdlets 2.5.1 | 123 | Monday, August 22, 2022 | Approved | |
TfsCmdlets 2.5.0 | 81 | Wednesday, August 3, 2022 | Approved | |
TfsCmdlets 2.4.1 | 130 | Thursday, July 21, 2022 | Approved | |
TfsCmdlets 2.4.0 | 150 | Monday, May 23, 2022 | Approved | |
TfsCmdlets 2.3.2 | 88 | Wednesday, May 18, 2022 | Approved | |
TfsCmdlets 2.3.1 | 130 | Saturday, April 9, 2022 | Approved | |
TfsCmdlets 2.3.0 | 82 | Sunday, April 3, 2022 | Approved | |
TfsCmdlets 2.2.1 | 90 | Friday, February 11, 2022 | Approved | |
TfsCmdlets 2.2.0 | 78 | Saturday, February 5, 2022 | Approved | |
TfsCmdlets 2.1.4 | 104 | Tuesday, November 30, 2021 | Approved | |
TfsCmdlets 2.1.3 | 83 | Thursday, November 25, 2021 | Approved | |
TfsCmdlets 2.1.2 | 103 | Friday, September 10, 2021 | Approved | |
TfsCmdlets 2.1.1 | 141 | Wednesday, September 8, 2021 | Approved | |
TfsCmdlets 2.0.0 | 143 | Tuesday, August 3, 2021 | Approved | |
TfsCmdlets 2.0.0-rc0005 | 115 | Sunday, April 18, 2021 | Exempted | |
TfsCmdlets 2.0.0-rc0004 | 113 | Monday, April 5, 2021 | Exempted | |
TfsCmdlets 2.0.0-rc0003 | 152 | Friday, February 19, 2021 | Exempted | |
TfsCmdlets 2.0.0-rc0002 | 102 | Tuesday, December 1, 2020 | Exempted | |
TfsCmdlets 2.0.0-beta0015 | 100 | Tuesday, July 21, 2020 | Exempted | |
TfsCmdlets 2.0.0-beta0014 | 82 | Sunday, July 19, 2020 | Exempted | |
TfsCmdlets 2.0.0-beta0013 | 84 | Saturday, July 18, 2020 | Exempted | |
TfsCmdlets 2.0.0-beta0010 | 185 | Thursday, September 12, 2019 | Exempted | |
TfsCmdlets 2.0.0-beta0009 | 115 | Tuesday, September 10, 2019 | Exempted | |
TfsCmdlets 2.0.0-beta0008 | 123 | Friday, September 6, 2019 | Exempted | |
TfsCmdlets 2.0.0-beta0004 | 139 | Thursday, August 29, 2019 | Exempted | |
TfsCmdlets 1.0.0.894-beta1 | 413 | Thursday, April 6, 2017 | Exempted | |
TfsCmdlets 1.0.0-alpha9 | 440 | Saturday, December 24, 2016 | Exempted | |
TfsCmdlets 1.0.0-alpha7 | 341 | Thursday, October 22, 2015 | Exempted | |
TfsCmdlets 1.0.0-alpha6 | 299 | Thursday, October 22, 2015 | Exempted | |
TfsCmdlets 1.0.0-alpha5 | 340 | Thursday, September 10, 2015 | Exempted | |
TfsCmdlets 1.0.0-alpha4 | 273 | Friday, September 4, 2015 | Exempted | |
TfsCmdlets 1.0.0-alpha3 | 332 | Thursday, September 3, 2015 | Exempted | |
TfsCmdlets 1.0.0-alpha1 | 332 | Friday, July 31, 2015 | Exempted |
(c) 2014 Igor Abade V. Leite. All rights reserved.
For release notes, see https://github.com/igoravl/TfsCmdlets/blob/master/RELEASENOTES.md
This package has no dependencies.
Ground Rules:
- This discussion is only about TfsCmdlets and the TfsCmdlets 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 TfsCmdlets, 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.