Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED Can't install new DP

  • Thread starter Thread starter geoholz
  • Start date Start date
  • Replies Replies 4
  • Views Views 708

geoholz

Member
Messages
8
Solutions
2
Reaction score
0
Points
1
Hello,
I've tried to install a new DP but nothing happens, the DP doesn't appear in the DP menu (it's in the “Servers and site system roles” menu).

Even after 48 hours, nothing happens...
I have the impression that there's a problem because the hman.log file loops over it ..
 

Attachments

Solution
Ther eis no log because SCCM doesn't make anything..
Distmgr is empty too for this problem

But i found the solution !

SQL or SCCM doesn't handle the accent on the French word for August, so it can't update the list of DPs in the database.

*** update DistributionPoints set IsPullDP = 0, IsPeerDP = 0, SMSSiteCode = 'NOO', IsBITS = 0, PreStagingAllowed = 0, IsMulticast = 0, AnonymousEnabled = 0, TokenAuthEnabled = 0, IsDoincEnabled = 0, SslState = 0, DPType = 0, Priority = 200, DPFlags = 0, MaintenanceModeLastStartTime = (CASE WHEN 'août 19 2024 12:23PM' = '' THEN NULL ELSE 'août 19 2024 12:23PM' END), MaintenanceMode = 0, IsProtected = 0, MinFreeSpace = 100, Flags = 0, DPDrive = N'D:', IsPXE = 1, SccmPXE = 0, IsActive = 1...
Ther eis no log because SCCM doesn't make anything..
Distmgr is empty too for this problem

But i found the solution !

SQL or SCCM doesn't handle the accent on the French word for August, so it can't update the list of DPs in the database.

*** update DistributionPoints set IsPullDP = 0, IsPeerDP = 0, SMSSiteCode = 'NOO', IsBITS = 0, PreStagingAllowed = 0, IsMulticast = 0, AnonymousEnabled = 0, TokenAuthEnabled = 0, IsDoincEnabled = 0, SslState = 0, DPType = 0, Priority = 200, DPFlags = 0, MaintenanceModeLastStartTime = (CASE WHEN 'août 19 2024 12:23PM' = '' THEN NULL ELSE 'août 19 2024 12:23PM' END), MaintenanceMode = 0, IsProtected = 0, MinFreeSpace = 100, Flags = 0, DPDrive = N'D:', IsPXE = 1, SccmPXE = 0, IsActive = 1, ResponseDelay = 0, UdaSetting = 0, BindPolicy = 0, SupportUnknownMachines = 1, CertificateType = 0, IdentityGUID = N'dd6a5274-2b0d-4c5c-a65c-5e8a3f6786b6', BindExcept = N'', PXEPassword = N'', Account = N'NOO\sccmadmin', Description = N'DP du HAHAV', DPCRC = N'6EBADF14', Action = 0 where NALPath = N'["Display=\\SHAVNOODP.NOO.HAHAV.TATAYOYO.FR\"]MSWNET:["SMS_SITE=NOO"]\\SHAVNOODP.NOO.HAHAV.TATAYOYO.FR\' SMS_HIERARCHY_MANAGER 30/09/2024 12:58:50 9756 (0x261C)
*** [22007][241][Microsoft][SQL Server Native Client 11.0][SQL Server]Échec de la conversion de la date et/ou de l'heure à partir d'une chaîne de caractères. SMS_HIERARCHY_MANAGER 30/09/2024 12:58:50 9756 (0x261C)

Now that we're in September, by forcing the DP that was causing the problem into maintenance mode and exiting, SCCM has been able to update the DPs and everything is back in order...

Thanks : https://learn.microsoft.com/en-us/answers/questions/678585/installation-new-dp-not-started
 
Solution
Back
Top