Skip to main content
deleted 33 characters in body
Source Link
Ganesh Sanap - MVP
  • 47.4k
  • 22
  • 32
  • 64

USER PROFILE SERVICE CREATION TIMEOUT ISSUES ======= STEP 1 ========== --:

STEP 1: To delete User Profile service Application

  1. Get-SPServiceApplication -- This gives a list of service apps

    Get-SPServiceApplication --> This gives a list of service apps
  2. Copy the particular id of the app to be deleted

    Copy the particular id of the app to be deleted
  3. $todel = Get-SPServiceApplication 00a368c9-21d5-4ba4-b03a-fe76c7960bd9

    $todel = Get-SPServiceApplication 00a368c9-21d5-4ba4-b03a-fe76c7960bd9
  4. $todel.Delete() ====== STEP 2 =========== -- Get faulty timer jobs that have been orphaned after deleting User Profile Service Application

    $todel.Delete()

STEP 2*: Get faulty timer jobs that have been orphaned after deleting User Profile Service Application

  1. Get-SPTimerJob | ? { $_.DisplayName -eq $null }| select IdGet-SPTimerJob | ? { $_.DisplayName -eq $null }| select Id ---> This list the id of all orphaned jobs

  2. Pick the id's one by one and pass into a variable as it is below(N.B: you can have multiple line, copy and paste at once) $FaultyJob = Get-SPTimerJob d8b33cf4-39c4-49ca-8a02-67d77138f3e1 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 871b7272-ccde-4556-a142-d2c8b7e8223f $FaultyJob.Delete()$FaultyJob = Get-SPTimerJob 384a4284-e55c-4e48-bb44-2d822f78c751 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob deebdfff-eb31-493d-854e-319ca3f27293 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob fe19f397-1dbf-412b-86bb-cb7e03a33cc2 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 9aea80a1-f921-40b2-8383-90c9ee79fdec $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 577f08cb-40bc-4649-8a31-07605e177ab8 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete()

$FaultyJob = Get-SPTimerJob d8b33cf4-39c4-49ca-8a02-67d77138f3e1 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 871b7272-ccde-4556-a142-d2c8b7e8223f $FaultyJob.Delete()$FaultyJob = Get-SPTimerJob 384a4284-e55c-4e48-bb44-2d822f78c751 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob deebdfff-eb31-493d-854e-319ca3f27293 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob fe19f397-1dbf-412b-86bb-cb7e03a33cc2 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 9aea80a1-f921-40b2-8383-90c9ee79fdec $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 577f08cb-40bc-4649-8a31-07605e177ab8 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() 

==== STEP 3 ========= i. Check all servers in the farm to confirm they are all up and running ii. Start all serviceces on the servers. To start, Central Administration > Manage services on this server > ===== STEP 4 ====== i. Launch the configuration wizard. VoilaSTEP 3:

  1. Check all servers in the farm to confirm they are all up and running
  2. Start all services on the servers. To start, Central Administration > Manage services on this server

STEP 4

  1. Launch the configuration wizard.

Voila! you have the user profile service application created.

USER PROFILE SERVICE CREATION TIMEOUT ISSUES ======= STEP 1 ========== -- To delete User Profile service Application

  1. Get-SPServiceApplication -- This gives a list of service apps

  2. Copy the particular id of the app to be deleted

  3. $todel = Get-SPServiceApplication 00a368c9-21d5-4ba4-b03a-fe76c7960bd9

  4. $todel.Delete() ====== STEP 2 =========== -- Get faulty timer jobs that have been orphaned after deleting User Profile Service Application

  5. Get-SPTimerJob | ? { $_.DisplayName -eq $null }| select Id --- This list the id of all orphaned jobs

  6. Pick the id's one by one and pass into a variable as it is below(N.B: you can have multiple line, copy and paste at once) $FaultyJob = Get-SPTimerJob d8b33cf4-39c4-49ca-8a02-67d77138f3e1 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 871b7272-ccde-4556-a142-d2c8b7e8223f $FaultyJob.Delete()$FaultyJob = Get-SPTimerJob 384a4284-e55c-4e48-bb44-2d822f78c751 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob deebdfff-eb31-493d-854e-319ca3f27293 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob fe19f397-1dbf-412b-86bb-cb7e03a33cc2 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 9aea80a1-f921-40b2-8383-90c9ee79fdec $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 577f08cb-40bc-4649-8a31-07605e177ab8 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete()

==== STEP 3 ========= i. Check all servers in the farm to confirm they are all up and running ii. Start all serviceces on the servers. To start, Central Administration > Manage services on this server > ===== STEP 4 ====== i. Launch the configuration wizard. Voila! you have the user profile service application created.

USER PROFILE SERVICE CREATION TIMEOUT ISSUES:

STEP 1: To delete User Profile service Application

  1. Get-SPServiceApplication --> This gives a list of service apps
  2. Copy the particular id of the app to be deleted
  3. $todel = Get-SPServiceApplication 00a368c9-21d5-4ba4-b03a-fe76c7960bd9
  4. $todel.Delete()

STEP 2*: Get faulty timer jobs that have been orphaned after deleting User Profile Service Application

  1. Get-SPTimerJob | ? { $_.DisplayName -eq $null }| select Id --> This list the id of all orphaned jobs

  2. Pick the id's one by one and pass into a variable as it is below(N.B: you can have multiple line, copy and paste at once)

$FaultyJob = Get-SPTimerJob d8b33cf4-39c4-49ca-8a02-67d77138f3e1 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 871b7272-ccde-4556-a142-d2c8b7e8223f $FaultyJob.Delete()$FaultyJob = Get-SPTimerJob 384a4284-e55c-4e48-bb44-2d822f78c751 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob deebdfff-eb31-493d-854e-319ca3f27293 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob fe19f397-1dbf-412b-86bb-cb7e03a33cc2 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 9aea80a1-f921-40b2-8383-90c9ee79fdec $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 577f08cb-40bc-4649-8a31-07605e177ab8 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() 

STEP 3:

  1. Check all servers in the farm to confirm they are all up and running
  2. Start all services on the servers. To start, Central Administration > Manage services on this server

STEP 4

  1. Launch the configuration wizard.

Voila! you have the user profile service application created.

Source Link

Thanks to all that contributed. I will drop the solution in case there is someone who needs it.

USER PROFILE SERVICE CREATION TIMEOUT ISSUES ======= STEP 1 ========== -- To delete User Profile service Application

  1. Get-SPServiceApplication -- This gives a list of service apps

  2. Copy the particular id of the app to be deleted

  3. $todel = Get-SPServiceApplication 00a368c9-21d5-4ba4-b03a-fe76c7960bd9

  4. $todel.Delete() ====== STEP 2 =========== -- Get faulty timer jobs that have been orphaned after deleting User Profile Service Application

  5. Get-SPTimerJob | ? { $_.DisplayName -eq $null }| select Id --- This list the id of all orphaned jobs

  6. Pick the id's one by one and pass into a variable as it is below(N.B: you can have multiple line, copy and paste at once) $FaultyJob = Get-SPTimerJob d8b33cf4-39c4-49ca-8a02-67d77138f3e1 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 871b7272-ccde-4556-a142-d2c8b7e8223f $FaultyJob.Delete()$FaultyJob = Get-SPTimerJob 384a4284-e55c-4e48-bb44-2d822f78c751 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob deebdfff-eb31-493d-854e-319ca3f27293 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob fe19f397-1dbf-412b-86bb-cb7e03a33cc2 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 9aea80a1-f921-40b2-8383-90c9ee79fdec $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 577f08cb-40bc-4649-8a31-07605e177ab8 $FaultyJob.Delete() $FaultyJob = Get-SPTimerJob 5f129a1e-fb18-49ab-8cc6-6a0b480b7c08 $FaultyJob.Delete()

==== STEP 3 ========= i. Check all servers in the farm to confirm they are all up and running ii. Start all serviceces on the servers. To start, Central Administration > Manage services on this server > ===== STEP 4 ====== i. Launch the configuration wizard. Voila! you have the user profile service application created.