Request for a clear-DbaRegServer or wildcard support in Remove-DbaRegServer #8751
-
Hi, I was wondering if it is possible to add a clear-DbaRegServer or make Remove-DbaRegServer accept wildcard characters in the future releases. Currently, I have a script that recreates all my registered servers but sometimes I need to add one-off servers. After that, I want to revert back to my original status but since there is no clear-DbaRegServer and Remove-DbaRegServer does not accept wildcard characters, removing the servers is a pain. I would appreciate any suggestions or insights on this matter. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Oh I think I found the answer. It's as simple as |
Beta Was this translation helpful? Give feedback.
Oh I think I found the answer. It's as simple as
Get-DbaRegServer | Remove-DbaRegServer
. Thanks.