Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I use invoke-ncssh to setting the simulator node that are not join cluster,
but it always feedback the message to me,
I want to hidden the message to beautify the screen,
How to disable or hidden the invoke-ncssh response message?
Thanks
Solved! See The Solution
1 ACCEPTED SOLUTION
AllenChang has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Either store the result in a variable ($result = Invoke-NcSsh) or pipe it to null at the end of the command ( | Out-Null). I usually store it in a variable - to check the result if needed.
1 REPLY 1
AllenChang has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Either store the result in a variable ($result = Invoke-NcSsh) or pipe it to null at the end of the command ( | Out-Null). I usually store it in a variable - to check the result if needed.
