April 28th, 2006
0 reactions

PowerShell interview on Tom's Hardware

PowerShell Team
PowerShell Team

Check out the interview that Scott Ottaway and I did with Scott Fulton of Tom’s Hardwarehttp://www.tgdaily.com/2006/04/25/powershell_windows_command_line_to_ship_q4/

Tom’s has consistently been a source of good information about this project – going beyond the cut-n-copy herd to ask interesting questions and forming their own opinion.  Tom’s has always been one of my favorite sites so the fact that they “get” PowerShell is just a delight.

The examples are not quite right but we didn’t get him a version of RC1 in time for him to validate them.

Jeffrey Snover
PowerShell Architect

Category
PowerShell

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); }