Mudbar
Members-
Posts
16 -
Joined
-
Last visited
Reputation
20 ExcellentAbout Mudbar

-
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!
-
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
-
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?
-
Thank you for this information this is very helpful, it has been causing me quite a bit of confusion!
-
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.
-
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.
-
What platform are you using for parent communications? We are looking to move from Firefly to Sharepoint.
-
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
-
-
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.
- 3 replies
-
- 1
-
-
- audacity
- audacity msi
-
(and 1 more)
Tagged with:
-
True. Will try this method tomorrow. https://smbtothecloud.com/deploy-scheduled-tasks-with-a-win32app/
-
I can't find anything specific in the logs. It works an admin user account but not a standard user.
-
I can only seem to find the reboot computer option when looking at the intune policies.
-
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.
