Open
Description
Prerequisites
- Existing Issue: Search the existing issues for this repository. If there is an issue that fits your needs do not file a new one. Subscribe, react, or comment on that issue instead.
- Descriptive Title: Write the title for this issue as a short synopsis. If possible, provide context. For example, "Document new
Get-Foo
cmdlet" instead of "New cmdlet."
Summary
As a user, I want to see what the impact of some of the commands is going to be. This helps to provide messages even before the command is actually executed. With the rise of dsc.exe
, this allows implementing the -WhatIf
operation.
Scenario: Install a language
Take for example the Install-Language
command. Even though you could use $allLangues = [System.Globalization.CultureInfo]::GetCultures("AllCultures")
to list out all languages and pass it to Install-Language
, what if a user appends the -WhatIf
switch. It can provide information early on stating:
- The language was not found
- Attempting to install the language
- Language already exist
Details
No response
Proposed Content Type
Cmdlet Reference
Proposed Title
No response
Related Articles
P.S. I recognize this might not be the right repository.