-
Posts
6,514 -
Joined
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by kennysarmy
-
We're getting them all loan laptops returned as it was a mix of Government ones and some of our own from the Library or Science trollies. Once they are all sorted through and data removed I've suggested we loan the GOV ones back out to the most needy, I don't really want them in school!
-
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
We're mass testing all students today, all 1380! Seems to be going well, 3 different venues throughout the school, hall, gym and sports hall, timed appointments by tutor group - nearly all staff volunteered to help in one capacity or another - amazing effort. -
[1903, au] Windows 10 - random NO INTERNET issue!
kennysarmy replied to kennysarmy's topic in Windows 10
Just to bump this thread as we're still seeing this issue randomly pop up. Is the only fix to upgrade all PC's to 20H2? -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
That's exactly it - there will be a number! How many road traffic accident deaths does society consider acceptable so we can all freely move around on the roads? How many deaths from alcohol does society consider acceptable? There are actually people out there who believe we should be striving for zero deaths from covid19 ! -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
I was using it as an example. No one can know how many under 18's will be covid +ve on the 8th March :/ -
I ended up running this code: $Result=@() $allUsers = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited $totalusers = $allUsers.Count $i = 1 $allUsers | ForEach-Object { $user = $_ Write-Progress -activity "Processing $user" -status "$i out of $totalusers completed" $photoObj = Get-Userphoto -identity $user.UserPrincipalName -ErrorAction SilentlyContinue $hasPhoto = $false if ($photoObj.PictureData -ne $null) { $hasPhoto = $true } $Result += New-Object PSObject -property @{ UserName = $user.DisplayName UserPrincipalName = $user.UserPrincipalName HasProfilePicture = $hasPhoto } $i++ } $Result | Export-CSV "D:\office-365-users-photo-status2.csv" -NoTypeInformation -Encoding UTF8 Then created a list from that of users with photos and copied in to powershell manually the code to remove each one. - - - Updated - - - It can also take a few days for the images to be removed I think.
-
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
I'm confused - don't remember posting about rates in under 18's lol -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
What is your source of data that there will be 10,000 positive cases in under 18's on the 8th March? -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
Stay at home, protect the NHS - we've done that! IMO we're almost at the point that cases are irrelevant - 10,000 under 18's testing positive is not the same as 10,000 over 75's testing positive back in the summer before we had all that demographic vaccinated. We have to learn to live with the virus and we're doing an amazing job rolling out the vaccine, so let's start to get back to normal and with the dates announced at least we can see and end in sight now. -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
Currently positives in Cheltenham are less than 40 per 100,000, 4 in 10,000, 1 in 2500! - If the downward trend continues before March 8 I honestly can't see schools going back making much of a difference. IMHO. -
Smoothwall how to unfilter random domains?
kennysarmy replied to kennysarmy's topic in Internet Related/Filtering/Firewall
When I try to add that I get "Validation failed because the URL regular expression "*.repl.co" is invalid. " I'm struggling to see how to add the * - apparently I need a "PERL compatible regular expression" -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
Of course, but the school is still operating with all staff and over 120 students - as I say, logistically not easy. -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
Sorry? Six queues of 30 students all 2m apart - where is that gonna happen then? - I guess hope it's not raining eh? -
Coronavirus: General discussion (see opening post for rules)
kennysarmy replied to Dos_Box's topic in General Chat
So we have to test EVERY student from the 8th March BEFORE face to face teaching can take place. That's 1400 students! Glad I'm not in charge of sorting that out. Logistically can they even come on site and wait anywhere safely? 2m apart from every other student and adult? -
Resetting all office 365 users photos to default.
kennysarmy replied to kennysarmy's topic in Cloud Services
If I try the second option the results are: The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the parameters that take pipeline input. + CategoryInfo : InvalidArgument: (CN=7755,OU=9,OU...iculum,DC=local:PSObject) [Remove-UserPhoto], ParameterBindingException + FullyQualifiedErrorId : InputObjectNotBound,Remove-UserPhoto + PSComputerName : outlook.office365.com -
Resetting all office 365 users photos to default.
kennysarmy replied to kennysarmy's topic in Cloud Services
So I tried : import-csv D:\upn.csv | % {remove-userphoto $_.users} with upn.csv like: UPN [email protected] [email protected] etc Failed with : Cannot bind argument to parameter 'Identity' because it is null. + CategoryInfo : InvalidData: ( [Remove-UserPhoto], ParameterBindingValidationException + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Remove-UserPhoto + PSComputerName : outlook.office365.com -
Resetting all office 365 users photos to default.
kennysarmy replied to kennysarmy's topic in Cloud Services
I've created a CSV file of all users who have a photo: CSV looks like: users 8122 7846 7941 $users = Import-Csv D:\users2.csv foreach ($user in $Users) {Remove-UserPhoto -Identity $user -Confirm:$false} Can anyone advise why this would give this error: Cannot process argument transformation on parameter 'Identity'. Cannot convert value "@{users=8122}" to type "Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter". Error: "Cannot convert the "@{users=8122}" value of type "Deserialized.System.Management.Automation.PSCustomObject" to type "Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter"." + CategoryInfo : InvalidData: ( [Remove-UserPhoto], ParameterBindin...mationException + FullyQualifiedErrorId : ParameterArgumentTransformationError,Remove-UserPhoto + PSComputerName : outlook.office365.com If I run the code: Remove-UserPhoto -identity "8122" It works! -
I've just been advised the minimum buy has now reduced from 500 to 300.
-
Back on this again to update SMT with costs. Is there a limit to how many times a licence can be re-assigned?
-
Resetting all office 365 users photos to default.
kennysarmy replied to kennysarmy's topic in Cloud Services
Hi, If I replace foreach with users.foreach the script no longer works, was there another change to the script that would be required? Thanks.
