The powershell tag has no usage guidance.
0
votes
0answers
42 views
Continous integration of only MyCompanies nuget packages
I am trying to do a nightly package integration with one of our projects that consumes 6 other internal teams’ -PreRelease packages.
Background Info
We have our own internal ProGet Server that ...
-1
votes
1answer
50 views
How to license (PowerShell) GUI Projects [duplicate]
After almost 2 years learning how to code (in Powershell) and some help at Stackoverflow from time to time, I'm now finally on my way to release my first GUI project.
I intend to release the compiled ...
1
vote
1answer
87 views
Should Write-Debug statements be left in production PowerShell code?
This is one of my functions I have in a module:
Function Get-DatabaseUser
{
[CmdletBinding()]
Param()
Write-Verbose 'Getting database...'
$Database = Get-Database
...
0
votes
1answer
63 views
Unix way of filtering/mapping/mapcatting records via the pipeline?
At home I use Linux and have for more than a decade. At work we use Windows and so I find PowerShell more familiar. I am a Linux/Unix fanboy at heart, but I've had greater success grokking the ...
4
votes
1answer
148 views
How is Pash licensed?
Pash is an open source reimplementation of Windows PowerShell. It was released in 2008, and has been idle since then. I would like to take up the mantle.
It's not clear what the license is. There is ...
0
votes
1answer
1k views
Multiple files in powershell [closed]
How to using multiple files in Powershell to ensure modularity?
function.ps1 could have all the utility functions?
command1.ps1 could have calls related to a command?
13
votes
2answers
2k views
Are there well-known PowerShell coding conventions?
Are there any well-defined conventions when programming in PowerShell?
For example, in scripts which are to be maintained long-term, do we need to:
Use the real cmdlet name or alias?
Specify the ...