Skip to content

A rule to warn overwriting of built-in PowerShell cmdlets #1023

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
TylerLeonhardt opened this issue Jun 13, 2018 · 3 comments
Open

A rule to warn overwriting of built-in PowerShell cmdlets #1023

TylerLeonhardt opened this issue Jun 13, 2018 · 3 comments

Comments

@TylerLeonhardt
Copy link
Member

Summary of the new feature

See the issue we faced over in PSES:
PowerShell/PowerShellEditorServices#686

MS Dynamics CRM redefines Set-Content which totally broke PSES.

We should have a rule that detects the overwriting/redefining of important built-in cmdlets to prevent these breaks from happening in future module development.

@TylerLeonhardt TylerLeonhardt changed the title A rule to warn overwriting of built in cmdlets A rule to warn overwriting of built-in PowerShell cmdlets Jun 13, 2018
@rjmholt
Copy link
Contributor

rjmholt commented Jun 13, 2018

From my now-closed issue:

Summary of the new feature

Followup from PowerShell/PowerShellEditorServices#686 (review).

Some users have had problems starting PSES because other modules override core cmdlets (in the above case, Set-Content is redefined...). We can't prevent it, but ideally module authors should get a stern warning!

In user story terms:

As a module/script author, I want to be warned when I'm redefining core cmdlets
so that my module/script is less likely to interfere with/break other PowerShell modules when installed.

Proposed technical implementation details

The rule should probably lazily cache all the cmdlet names in the following core modules:

  • Microsoft.PowerShell.Core
  • Microsoft.PowerShell.Management
  • Microsoft.PowerShell.Utility
  • PSReadLine
  • Microsoft.PowerShell.Diagnostics
  • Microsoft.PowerShell.Host
  • Microsoft.PowerShell.Security
  • Microsoft.PowerShell.Archive
  • Microsoft.WSMan.Management
  • PowerShellGet?

An ideal implementation probably has a default list of modules, which can be changed or added to.

The simplest way to do this is to read the module manifest or run Get-Module <module> | Select-Object ExportedCommands.

In the case where an author wants to prevent redefining cmdlets in a module they don't have installed at analysis time, I'm not entirely sure what the correct solution is, but can't imagine the problem being insoluble.

What is the latest version of PSScriptAnalyzer at the point of writing

1.17.1

@rjmholt
Copy link
Contributor

rjmholt commented Jun 13, 2018

Update: I think the best solution for implementing this is:

Get-Command -Module <module>

Unlike Get-Module <module> | Select-Object ExportedCommands, this works with Microsoft.PowerShell.Core...

@bergmeister
Copy link
Collaborator

PSSA already ships with files that contain cmdlet names (and their parameters) for PowerShell version 3, 4, 5 and 6.0.2. At the moment those files are used for the UseCompatibleCmdlets rule to warn on usage of cmdlets that are not available on different PowerShell versions. In a similar fashion you could use those cmdlet names for this new rule. Let me know if you need more details for implementing this rule.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants