cmdlets
There are 3 entries for the tag
cmdlets
update: here's an updated function for uploading an entire directory tree: ## ftprecursiveupload.ps1: Recursive FTP Upload## Uploads a directory tree to a remote FTP server.## Returns an objects containing information about the files transferred.function upload-directory { param( [string] $server = $( Throw "You must specify an FTP server to logon to."), [string] $dir = $( Throw "You must specify a local directory to upload (ie, C:\Testing\FTPTest\)"), [switch] $overwrite = $false, [System.Management.Automati...
I found Vivek Sharma's blog through Jeffrey Snover on the MS PowerShell blog. He's got some good geeky stuff there, including some useful PowerShell posts. Vivek's out-ie is useful, so I snagged that for myself. I tried to create an out-ff but I hit a stumbling block because the Mozilla ActiveX Control requires a control container. out-html is not so useful because convertto-html already comes with powershell. NetCmdlets now includes a convert-data cmdlet which converts data to and from many different...
PowerShell 1.0 was released yesterday in Spain, and /n software was there! When you go to download it (for free), don't forget to pickup NetCmdlets too. Also check out Jeffrey Snover's 12 Cool Features of Windows PowerShell. You'll need to uninstall previous versions of PowerShell before you can install the new one, but PowerShell won't appear in Add/Remove Programs unless you check the "show updates" box. Technorati : cmdlets, netcmdlets, powershell...