Hi Macca
Welcome to Microsoft Q&A platform, Thanks for asking question here...!
Step-by-step process to resolve the SCVMM Azure Arc Resource Bridge creation error that your experiencing.
1.Log in to the VMM server with your SCVMM operations account.
2.Navigate to the library share: \AUXXHSTVMM01.hosting.ss\MSSCVMMLibrary.
3.Right-click the folder, select Properties, and open the Security tab.
4.Ensure your user account has Full Control permissions.
5.Open PowerShell and run the following command to create a test file:
New-Item -Path "\\AUXXHSTVMM01.hosting.ss\MSSCVMMLibrary\testfile.txt" -ItemType File
6.In PowerShell, execute the following command to test BITS functionality:
Start-BitsTransfer -Source "C:\Temp\SW_DVD5_Sys_Ctr_DataCenter_Core_2025_24H2_MultiLang_OpsMgr_MLF_X23-81907.ISO" -Destination "\\AUXXHSTVMM01.hosting.ss\MSSCVMMLibrary\testfile.iso"
7.Check that no firewall rules are blocking access to the library share on both local and network firewalls.
8.Verify that the proxy settings are correctly configured for BITS transfers if your environment uses a proxy.
9. Run Diagnostic commands open PowerShell and run the following commands to validate library share access and permissions:
$driveinfo = Get-WmiObject Win32_OperatingSystem
$SystemDrive = $driveinfo.SystemDrive
$localPath = "$SystemDrive\ProgramData\libpath-test"
New-Item -ItemType Directory -Path $localPath | Out-Null
$filename = "testfile.ps1"
New-Item -Name $filename -Value "test file copy" -Path $localPath | Out-Null
# Attempt to import the test file back into the library
Import-SCLibraryPhysicalResource -SourcePath "$localPath\$filename" -SharePath "\\AUXXHSTVMM01.hosting.ss\MSSCVMMLibrary" -OverwriteExistingFiles
10.Restart BITS Service. open powershell as an administrator and run:
Restart-Service BITS
11.Check if the service is running properly by executing:
Get-Service BITS
12.Open the SCVMM console and go to the Jobs section.
13.Look for any failed jobs related to library operations.
14.Click on each failed job to view detailed error messages for more information.
Please let us know if you required anything