December 27th, 2006
0 reactions

PowerShell Essentials Package

PowerShell Team
PowerShell Team

A number of people have asked me about PowerShell IDEs and about how to get started with PowerShell.  Here is something to consider – Sapien is offering a special price on a package of components focused on PowerShell.

 The package includes Tools (PrimalScript Professional), Snippets (reusable PowerShell code segments), and Learning (Don Jones’ Windows PowerShell: TFM book [I can’t wait to get my copy!]).  You can learn more about the package at: http://www.scriptingoutpost.com/ProductInfo.aspx?productid=PS1-CMB-01

 Cheers!

Jeffrey Snover [MSFT]
Windows PowerShell/MMC Architect
Visit the Windows PowerShell Team blog at:    http://blogs.msdn.com/PowerShell
Visit the Windows PowerShell ScriptCenter at:  http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx

Category
PowerShell
Topics
Sapien

Author

PowerShell Team
PowerShell Team

PowerShell is a task-based command-line shell and scripting language built on .NET. PowerShell helps system administrators and power-users rapidly automate tasks that manage operating systems (Linux, macOS, and Windows) and processes.

0 comments

Discussion is closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }