Jump to content

SteveM555

Members
  • Posts

    305
  • Joined

  • Last visited

Reputation

864 Excellent

About SteveM555

Personal Information

  • Occupation
    ICT Technician
  • Location
    Sheffield
  1. Also had a good start, Bromcom has been faster than ever and staff have noticed and no complaints. Just wish they'd reply to partner supports tickets now
  2. Not sure what that actually achieves? what are they saying that helps with? except for annoying a legitimate visitor. Literally a few seconds into looking at the site you can see it adding a .blurred-images CSS class to the root html. 1 line patch to the CSS or JS override renders it useless and anything automated will be looking directly at the page source to scrape the img src anyway, which isn't protected from direct linking on that website. I don't think there's currently a purchasable solution to fit the new guidance, just got to be careful going forward what to publish, angles of photos, not posting high quality full resolution photos, identifying details etc.
  3. We have the same here too.
  4. Just had a reply to say they're looking into it 👍
  5. Its a relief to see its not a problem our side then, would be nice to see some acknowledgement of an issue - I created a ticket on the portal a couple of hours ago and the status shows it at 100% operational. Not had great response times through tickets on the portal though. Hoping they know there's an issue by now.
  6. Anyone having issues with the REST API this morning? All applications returning 401's suddenly and the portal "try it out" are all doing the same.
  7. It is a REST API so it accepts HTTP methods GET, POST and DELETE and data passed to the endpoint in the request body. A very basic example using Powershell would be something like: $uri = "https://api.bromcomcloud.com/UserDefinedFieldsData" $body = @{ applicationId = "your_application_id" applicationSecret = "your_application_secret" schoolId = 20001 personId = 000 userDefinedFieldInstanceId = 0 dataValue = "Data for field" } try { $response = Invoke-RestMethod -Uri $uri -Method 'POST' -Body $body Write-Host "Success! Server Response:" -ForegroundColor Green $response | ConvertTo-Json } catch { Write-Host "API call failed. Error details:" -ForegroundColor Red $errorResponse = $_.Exception.Response.Content | ConvertFrom-Json $errorResponse | ConvertTo-Json } If you were given documentation for the previous SOAP API, you should have access to the Bromcom Test Instance/School that you can use for testing. If not, I'd request this from them as I would not recommend any development on live site at all and things could go bad very quickly. The partner API is pretty good, but support is lacking a lot, asking a question is currently at 30 days with an open ticket..
  8. For the A3 licensing you'll need OEM licenses for at least Windows 10 Pro, RTM Core (aka Home) is not supported. The licensing also won't happen unless the devices are Entra hybrid joined, as A3 is an 'upgrade' license and not used as a replacement for a Windows license. Like others have said, Id get an WDS/MDT server up and running to automate deployment, there's Powershell scripts that can run in a task sequence to pull the OEM key from the machine and activate it, so it wouldn't be a manual process with those PCs. When all the machines are Windows 11 compatible Id look at Autopilot/InTune & MECM for deployment.
  9. I'm pretty sure it should already be disabled to prevent it from being logged into, and yeah - Just in the standard AD Users OU.
  10. Have you installed it for your user, but running Powershell as Admin? or the other way around? Id suggest running the following if so: Uninstall-Module Microsoft.Graph -Force -AllVersions and then Install-Module Microsoft.Graph -Scope AllUsers -Force
  11. Might sound silly, but have you imported the module? Import-Module Microsoft.Graph
  12. I checked 10 mins ago and it's all backup now. Though the Bromcom status page for the REST API has remained at 100% uptime
  13. Anyone else have issues with the Bromcom API this morning? Getting 502 bad gateway
  14. This can be done with the Bromcom Partner API and there's no charge for it either. If you're familiar with programming and can make some HTTP POST requests then it should be simple.
  15. Ollama is the engine that runs the LLM models, so it's all local. The models can be pulled directly from Ollama (deepseek r1, llama3, mistral, gemma etc.) with varying parameter size so it can scale on lower-end hardware if needed. Once the models are local it doesn't need any external resources, or even internet access. OpenWebUI provides a frontend for communicating with the models which is very similar to ChatGPT. We've been playing around with it and have LDAP logins working, monitoring and running a few 7b / 2b models. It works really well.
×
×
  • Create New...