-
Posts
20 -
Joined
-
Last visited
Reputation
20 ExcellentAbout M.Byford-Rew

Personal Information
-
Biography
Three decades, supporting digital technology in education!
-
Occupation
Freelance consultant, podcast producer, and presenter (EdTechStuff)
-
Interests
Making digital technology work more effectively in education
-
Location
Wellingborough
-
Homepage
https://edtechstuff.co.uk
Employer (optional)
-
Company Represented
Freelance consultant
-
EdTechStuff, the new podcast, created specifically for network managers in education, has officially broken into America! 🇺🇸 With 18% of our listeners tuning in from the USA, we’re thrilled to be expanding our community. Find out what all this is about by subscribing or visiting the show website : https://edtechstuff.co.uk/ The first episode features Ian Stockbridge from Secure Schools, talking about Cybersecurity but more importantly, the things that network managers should and could be focusing on within their schools to ensure that they don’t become the next statistic on the NCSC reports. Thank you for your support! 🙌 Find us on Spotify, Amazon and Apple Podcasts. #EdTechStuff #Podcast #Education #NetworkManagers #USA #GlobalReach
-
Question to my fellow, education based, IT associates on here. Do you have a remit to support two way radios in your schools? To set the context, we are expected to pick this up but we are not specialists in the field - the assumption is that it is an IT responsibility. #education #itsupport
-
InTune for Education Licensing Per device Vs Faculty
M.Byford-Rew replied to M.Byford-Rew's topic in Cloud Services
Hi, yes. I eventually opted for a purchase of Intune licences from our Cloud Service Provided as a CSP licence which can be added quickly and isn't tied to the EES/OVS subscription. It was necessary to enable Apps to be managed and also to apply settings using PowerShell which would not take effect when the user was not licenced.- 2 replies
-
- 1
-
-
- intune
- intune for education
-
(and 1 more)
Tagged with:
-
I am currently running the time limited, evaluation of InTune and am considering my licensing alternatives after it ends. I have approximately 30 devices which are all Windows 10 Education based devices. My question is about which is the optimal license model for me to maximise functionality against spend. I am specifically looking at managing devices at this stage and NOT application management. It appears that there are a couple of options: Buy Intune device licences for the number of devices in the project and purchase more as needed Or Buy Microsoft Intune for Education for Faculty licence If I take the second, how many devices could be enrolled against each licence? I’ve heard mixed feedback varying from between 5 and 40. I suppose the premise being that a faculty license provides the ability and rights to manage an arbitrary quantity of student devices and if this is the case then it would make more sense to take this route as it offers better value as long as device licenses were not needed by virtue of them being managed by using a Faculty license. On the whole, it’s not clear which is the better route to take so I appreciate any advice you can provide. Thanks.
- 2 replies
-
- intune
- intune for education
-
(and 1 more)
Tagged with:
-
Hello all, We have enabled encryption of emails within O365 which is working fine however some users are getting confused when they recieve emails with a '.rpmsg' attachment. These don't appear to open nativly using Outlook for Windows however the message can be read by pressing the Blue 'Read the Message' link. Should '.rpmsg' files open by double clicking in Outlook for Windows? Thanks, M
-
I'm looking for a future proof solution to provide my users with user friendly forms within SharePoint Online on O365. In the past I would have used InfoPath but I'm dubious about the future of this platform seeing as MS themselves have stopped development on it. Ideally the forms would look as close as possible to their paper based equivalent. Adobe Form integration into O365 would be good if possible. Thank you..
-
I'm in a new post. One of my responsibilities is to identify any policies which fall under the area of responsibility of the 'ICT Systems Manager'. I have the obvious one's Disaster Recovery, Acceptable Use Policy, Communications policy and Printing policy etc. but I'd be interested to know if there is a definitive list of policies which every Trust organization should have. This would be a useful resource for many as it would help ensure that all have a comprehensive list of policies etc. Any contributions gratefully received. Thanks..
-
I'm guessing that as there are no other comments on this thread it is unresolved. Did you manage to find anything else out?
-
O365 Exchange Online how has it handled Ransomware virus
M.Byford-Rew posted a topic in General Chat
I'm currently protecting my Exchange Server infrastructure using Barracuda however I will shortly be migrating email to O365. Can I ask if EoL has protected users from the Ransomware virus which is rife at the moment? Did messages containing the virus manage to get through the Exchange Online Protection (EoP) -
NetSupport disappointment
M.Byford-Rew replied to Jawloms's topic in Network and Classroom Management
Hi, I saw this thread and thought that I would add a few comments on my experience of installing and running the application in a Hyper-V Remote Desktop Session Hosts scenario. Upon initial install we could only see the display of the console connection '0' however an immediate update resolved this so that all sessions could be seen. The deployment of the console and client was pain free and quick using the management console. Post installation the systems have continued to function as expected with little requirements to contact support. -
Removing ProxyAddresses from a MSolUser
M.Byford-Rew replied to M.Byford-Rew's topic in Cloud Services
[h=2]Unable to Remove or Delete ProxyAddresses / EmailAddresses from MSOLADUserobjects prior to Deleting a domain from O365[/h] [h=3]Problem symptom:[/h]You are unable to delete a domain from O365 as there areemail addresses recorded for the MSOLUser within the ProxyAddresses field. Problem users can be identified using the following PSextract: Example domain name = abc.com $UsersInError = Get-MsolUser -All | ?{$_.ProxyAddresses -like"*abc.com*"} | Sort-Object Displayname These users correspond with Exchange Online | MailUserobjects. Iterate through each of the MSOLUser objects and foreach one, selectand remove each associated EmailAddress. Once removed, immediately add the sameaddress again. This action appears to realign the values seen from MSOLUser–ProxyAddresses and MailUser EmailAddresses. As each is processed they disappear from the problem usersidentified. This can be verified by running the check above again or by tryingto Delete the domain through the O365 Admin console. $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationNameMicrosoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/-Credential $UserCredential-Authentication Basic-AllowRedirection Import-PSSession $Session Connect-MsolService $UsersInError = Get-MsolUser -All | ?{$_.ProxyAddresses -like"*abc.com*"} | Sort-Object Displayname #How many users are problem users $UsersInError.Count Write-Host #Which users are in error $UsersInError Write-Host foreach($UserInErrorin $UsersInError) { $User = Get-MailUser -Identity $UserInError.UserPrincipalName Set-Mailbox-Identity $User -EmailAddresses= $User.EmailAddresses foreach($address in$User.EmailAddresses) { Write-Host$address Set-MailUser-Identity $User.DisplayName -EmailAddresses@{Remove=$address} Set-MailUser-Identity $User.DisplayName -EmailAddresses@{Add=$address} } foreach($address in$User.EmailAddresses){$address} } -
Removing ProxyAddresses from a MSolUser
M.Byford-Rew replied to M.Byford-Rew's topic in Cloud Services
https://support.arete9.co.uk/hc/en-gb/articles/204765851-Managing-Active-Directory-ProxyAddresses-in-PowerShell?mobile_site=true -
I'm trying to migrate an O365 Domain to a new Tenant. It's going okay but before I can remove the domain from the old tenant I need to completely remove any references to the 'migrating' domain suffix. I've removed them all from most accounts using PowerShell and I was happy that things were going well. However I've hit a snag that's got me stumped for a couple of days. There are Proxy Email Addresses on some of my users. I can see which ones these are but I can't see any commands to remove them using PowerShell. They're identified sing this: Get-MsolUser -UserPrincipalName "username of user here" | select -ExpandProperty ProxyAddresses This list reveals the email account that I need to remove however there is no Set-MSOLUser command to remove Proxy Email addresses. I've looked in Exchange Online EAC to see if the account has an Exchange Mailbox which they do not. They do appear as a contact but the email address I want to remove is not visible in the properties. When checking within the O365 | Admin Center | Users | Active users the user's properties again do not show the email address that I want to remove. Is there a PowerShell Command that will remove entries from the ProxyAddresses collection which is returned by the Get-MSOLUser command? Regards, Martin
-
Skype for business - ADFS removed back to Basic
M.Byford-Rew replied to M.Byford-Rew's topic in Cloud Services
Thanks - I'll take a look -
My O365 domain was using ADFS authentication but this has been removed currently for maintenance. Since doing this Skype for business refuses to log user on. Is there an setting the I need to change in Skype for business to tell it to stop using ADFS authentication?
