Remove-SqlCloneMachine ain´t working in 2.3.1
I have problem using Remove-SqlCloneMachine in cmdlet version 2.3.1 against Sql Clone (server) 2.3.1. Is this function new for 2.3.1 and are there any know issues?
Running this simple powershell to remove one of our servers from a clone server
Running this simple powershell to remove one of our servers from a clone server
Connect-SqlClone "http://sqlclone.xxx.xxx" $Machine = Get-SqlCloneMachine | Where-Object {$_.MachineName -like "xxx"} Remove-SqlCloneMachine -Machine $Machine
Tagged:
Best Answers
-
owen.hall Posts: 57 Silver 4Hi Roger, Remove-SqlCloneMachine was introduced in version 2.3.2, and will require you to update your Powershell cmdlets to use.
The intended usage is for you yourself to delete any clones and images associated with some machine, shut down the agent service on that machine, and then invoke the cmdlet. Clone Server will then forget about that machine.
We're working on introducing an updated version of that cmdlet with some more robust removal functionality.Software Engineer
Redgate Software
Answers