The powershell tag has no wiki summary.
0
votes
0answers
4 views
Catching dynamic exception types in PowerShell [migrated]
I'm working on a PowerShell library that automates some network management operations. Some of these operations have arbitrary delays, and each can fail in unique ways. To handle these delays ...
-2
votes
1answer
366 views
Integrated PowerShell Console Window [closed]
I would like to have a tab open for PowerShell inside of my VS2012. There are other consoles that I have access to, such as "Command Window" and "Package Manager Console" Is there any way to get a ...
4
votes
1answer
114 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
133 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?
9
votes
1answer
274 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 ...