Jump to content

Mudbar

Members
  • Posts

    16
  • Joined

  • Last visited

Reputation

20 Excellent

About Mudbar

  1. I will set it to 8 so not getting as many warning load messages. We have no bandwidth limiting policy on the S8. They have said they will send me a demo S9 unit to test as this needs sorting before we decide to renew. They also said the S8 might not be able to handle a 1GB connection which seems rather odd!
  2. I have logged a ticket with smoothwall. They are checking through. I will have a look at the bandwidth limiting We are also due for a renewal next month. Would it make sense to upgrade to S9? We keep getting system load warning emails from smoothwall and potentially going 1-2-1 next year. Many thanks
  3. We have a S8 smoothwall appliance and our download speeds seems to be getting bottlenecked. I am getting around 60Mbps download when going through the smoothwall appliance. When I bypass the smoothwall appliance I am getting around 700Mbps. Has anyone else experienced this issue?
  4. Thank you for this information this is very helpful, it has been causing me quite a bit of confusion!
  5. We had machines built in SCCM which used KMS to license the machines with a product key. We have now re-built them in intune as intune only devices. Our supplier mentioned that the user can activate windows product key by having a Windows 10/11 Enterprise A3 for students use benefit license assigned to them. Is this true? User has license assigned but its not activating the product key.
  6. Thanks for the link. That's the most least confusing licensing table I have ever seen!
  7. Hello, Does anyone know what the difference is between these two licences? Thank you
  8. I migrated our file server to sharepoint hub. Its great for internal users but was wondering what platform to use as a parent hub. Firefly doesn't get used as much as it should. Looking to use Teams and onenote to set homework.
  9. What platform are you using for parent communications? We are looking to move from Firefly to Sharepoint.
  10. Hi All, Intune have recently included the new microsoft store. It has audacity there. When you add a new windows app select Microsoft Store (new) and search for Audacity. It has successfully deployed!
      • 2
      • Thanks
  11. Hi All, Intune have now included the new microsoft store. I am able to deploy audacity! In intune when you add a new app choose Microsoft Store app (new) and you will find audacity there. They must have updated this recently.
  12. True. Will try this method tomorrow. https://smbtothecloud.com/deploy-scheduled-tasks-with-a-win32app/
  13. I can't find anything specific in the logs. It works an admin user account but not a standard user.
  14. I can only seem to find the reboot computer option when looking at the intune policies.
  15. Hello, I am looking to set a task scheduler to power off our school computer labs each evening. I am trying to deploy a powershell script to a device group in intune but it fails. We have some AD domain computers which I deployed the same script via group policy and it worked. Has anyone managed to get this working successfully? Here is my script: # The name of your scheduled task. $taskName = "Shutdown Computer" $User= "NT AUTHORITY\SYSTEM" # Describe the scheduled task. $description = "Shuts computer down daily at 7:00PM" # Create a new task action $taskAction = New-ScheduledTaskAction -Execute 'powershell.exe' -Argument 'Stop-Computer -Force' #Create task trigger $taskTrigger = New-ScheduledTaskTrigger -Daily -At 7PM # Register the new PowerShell scheduled task # Register the scheduled task Register-ScheduledTask -TaskName $taskName -Action $taskAction -Trigger $taskTrigger -Description $description -User $User Any help appreciated. Thank you.
×
×
  • Create New...