Git Product home page Git Product logo

Comments (6)

rhubarb-geek-nz avatar rhubarb-geek-nz commented on June 12, 2024

This does not look like part of PowerShell Core

PS> Get-Command get-csOnlineLisLocation
Get-Command: The term 'get-csOnlineLisLocation' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

This looks like it is part of MicrosoftTeams.

The projects URL points to office-docs-powershell.

from powershell.

mklement0 avatar mklement0 commented on June 12, 2024

Indeed the originating module, SkypeForBusiness, isn't being maintained in this repo.

The official advice for reporting issues with modules that ship with Windows (rather than as part of PowerShell) and aren't open-source is, taken from the now obsolete PowerShellModuleCoverage repo (emphasis added):

NOTE To report problems with modules that ship in Windows, use the Windows Feedback Hub. For more information, see Send feedback to Microsoft with the Feedback Hub app.

Generally, if you define the following function and pass it the name of a command, the .BuiltIn output property (column) will tell you whether the command ships with PowerShell itself or not, and what (possibly external) module it comes from:

function Get-CommandOrigin {
  param([Parameter(Mandatory)] $Command)
  $cmd = Get-Command $Command -ErrorAction Stop
  if ($cmd.ResolvedCommand) { $cmd = $cmd.ResolvedCommand }
  [pscustomobject] @{
    Command = $cmd
    BuiltIn = $cmd.ModuleName -and (-not $cmd.Module -or $cmd.Module.Path.StartsWith($PSHOME))
    Module = $cmd.Module ?? $cmd.ModuleName
  }
}

from powershell.

JG-Robo avatar JG-Robo commented on June 12, 2024

Apologies - I didn't realize this was for windows powershell only. However, I can't seem to find where to post an issue for the Teams Powershell Module..

from powershell.

mklement0 avatar mklement0 commented on June 12, 2024

@JG-Robo, no worries: the bug issue template currently provides little guidance as to how to find out whether a given cmdlet is built in or not.

As noted, you'll have to use the Feedback Hub app to report your issue.

from powershell.

microsoft-github-policy-service avatar microsoft-github-policy-service commented on June 12, 2024

This issue has been marked as external and has not had any activity for 1 day. It has been be closed for housekeeping purposes.

from powershell.

microsoft-github-policy-service avatar microsoft-github-policy-service commented on June 12, 2024

📣 Hey @JG-Robo, how did we do? We would love to hear your feedback with the link below! 🗣️

🔗 https://aka.ms/PSRepoFeedback

from powershell.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.