Przemysław Kłys

Results 223 issues of Przemysław Kłys

Here's a simple PSD1 file ```powershell @{ AliasesToExport = 'Connect-POP3', 'Disconnect-POP3', 'Get-POP3Message', 'Save-POP3Message' Author = 'Przemyslaw Klys' CompanyName = 'Evotec' CompatiblePSEditions = 'Desktop', 'Core' Copyright = '(c) 2011 - 2020...

Steps to reproduce ------------------ ```powershell $Test1 = Find-Module $Test2 = Find-Module PSTeams $Test3 = $Test1 | Where-Object { $_.name -eq 'PSTeams' } $Test2.AdditionalMetaData | fl $Test3.AdditionalMetaData | fl ``` ```...

Find-Module

It would be nice to be able to filter out `Find-Module` by Authors. Right now you have to use ```PowerShell $All = Find-Module $All | Where-Object { $_.Author -eq 'Przemyslaw...

Issue-Enhancement
Find-Module

Currently, **Update-Module** behavior is a bit special. When creating modules and writing blog posts I've usually told people to use **Install-Module**, and later on use **Update-Module** when a new version...

Issue-Discussion
Update-Module

Steps to reproduce ------------------ 1. Generate docs 2. Go into one file .md that was generated 3. Remove its content and leave it empty 4. Rerun generation Expected behavior -----------------...

Area-MAML
Issue-Bug

I have following function (one of many). It doesn't have [CmdletBinding()]. ``` function New-HTMLAnchor { param( [alias('AnchorName')][string] $Name, [string] $Target, [string] $Class, [alias('Url', 'Link', 'UrlLink')][string] $HrefLink, [alias('AnchorText')][string] $Text ) [System.Collections.IDictionary]...

Area-UpdateMarkdown
Issue-Bug
Area-ObjectModel

If you try to use build.ps1 in VSCode and you will be in a different folder then root it will error out. I've prepared a replacement for pwd with $PSScriptRoot....

Area-Maintainers-Build

I've following code: ``` New-MarkdownHelp -Module $Module -OutputFolder $PSScriptRoot\..\docs Update-MarkdownHelp $PSScriptRoot\..\docs New-ExternalHelp $PSScriptRoot\..\docs -OutputPath $PSScriptRoot\..\docs -Force ``` I run it to update docs, but also create new word docs when...

Area-UpdateMarkdown
Issue-Bug

Add EmailAttachment parameter to Email

enhancement

The Title is for adding Title over 1 or more rows ![image](https://user-images.githubusercontent.com/15063294/114774497-8b115900-9d70-11eb-87c8-458f2898ee93.png) ```powershell New-TableHeader -Alignment left -Names 'Name', 'Id' -Title 'Title' ``` That cmdlet has multiple options to control how...

bug