Hi Concerns,
I was trying to execute the above commands below are the outputs.
==========================================================================
PS C:\Users\spfarm> Get-SPServiceInstance | where {$_.typename -eq "User Profile Synchronization Service"} | select Server, Status, ID | FL
Server : SPServer Name=##########
Status : Provisioning
Id : ca496801-51ab-4f2c-b012-0bd9aca825ef
PS C:\Users\sp####> Stop-spserviceinstance -id ca496801-51ab-4f2c-b012-0bd9aca825ef
Confirm
Are you sure you want to perform this action?
Performing the operation "Stop-SPServiceInstance" on target "ProfileSynchronizationServiceInstance".
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y
Stop-spserviceinstance : An object of the type Microsoft.SharePoint.Administration.SPServiceInstanceJobDefinition named "job-service-instance-ca496801-51ab-4f2c-b012-0bd9aca825ef" already exists under the parent Microsoft.SharePoint.Administration.SPTimerService named "SPTimerV4". Rename your object or delete the existing object.
At line:1 char:1
- Stop-spserviceinstance -id ca496801-51ab-4f2c-b012-0bd9aca825ef
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- CategoryInfo : InvalidData: (Microsoft.Share...ServiceInstance:SPCmdletStopServiceInstance) [Stop-SPServiceInstance], SPDuplicateObjectException
- FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletStopServiceInstance
PS C:\Users\spfarm> $Timer = Get-SPTimerJob -Identity "job-service-instance-ca496801-51ab-4f2c-b012-0bd9aca825ef"
PS C:\Users\spfarm> $Timer.Delete()
PS C:\Users\spfarm> Stop-spserviceinstance -id ca496801-51ab-4f2c-b012-0bd9aca825ef
Confirm
Are you sure you want to perform this action?
Performing the operation "Stop-SPServiceInstance" on target "ProfileSynchronizationServiceInstance".
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y
TypeName Status Id
User Profile Synchronization ... Unpro... ca496801-51ab-4f2c-b012-0bd9aca825ef
PS C:\Users\spfarm>