Differences
This shows you the differences between the selected revisions of the page.
2013-04-30 | 2013-05-09 | ||
Using camel case for PowerShell built-in constants as MS does (martin) | 5.2.1 Renamed WinSCP .NET assembly to winscpnet.dll to avoid conflicts with winscp.exe (martin) | ||
Line 223: | Line 223: | ||
==== [[powershell]] PowerShell Example ==== | ==== [[powershell]] PowerShell Example ==== | ||
+ | &beta (* .dll *) | ||
<code powershell> | <code powershell> | ||
- | [Reflection.Assembly]::LoadFrom("WinSCP.dll") | Out-Null | + | # Load WinSCP .NET assembly |
+ | # Use "winscp.dll" for the releases before the latest beta version. | ||
+ | [Reflection.Assembly]::LoadFrom("WinSCPnet.dll") | Out-Null | ||
# Session.FileTransferred event handler | # Session.FileTransferred event handler |