You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -Suppress switch does not seem to change anything. What is its function? Right now I'm using $null = Receive-FTPFile but this way also error messages would be suppressed, right?
BTW it would be nice to have some documentation for all the other switches of your commandlets. Did I miss it?
Otherwise thanks for your great work!
The text was updated successfully, but these errors were encountered:
It's supposed to not return any objects and basically act as a $null = xxx, if it's returning objects I guess I haven't covered all options. If you want to catch errors I guess there are two things -ErrorAction Stop or -WarningVariable xxx and catch all warnings it gives you. Both will work. Or you can just just not use suppress, and read Status from objects returned...
When using Receive-FTPFile, I'd like to suppress the verbose output of the commandlet:
The -Suppress switch does not seem to change anything. What is its function? Right now I'm using
$null = Receive-FTPFile
but this way also error messages would be suppressed, right?BTW it would be nice to have some documentation for all the other switches of your commandlets. Did I miss it?
Otherwise thanks for your great work!
The text was updated successfully, but these errors were encountered: