Jump to content

kennysarmy

Edu Supporters
  • Posts

    6,514
  • Joined

Everything posted by kennysarmy

  1. We've asked for them all to be returned by the start of next week!
  2. 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!
  3. 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.
  4. 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?
  5. 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 !
  6. I was using it as an example. No one can know how many under 18's will be covid +ve on the 8th March :/
  7. 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.
  8. I'm confused - don't remember posting about rates in under 18's lol
  9. What is your source of data that there will be 10,000 positive cases in under 18's on the 8th March?
  10. 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.
  11. 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.
  12. 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"
  13. Our ICT teacher is trying to use: https://repl.it/ But it seems the Smoothwall is blocking lots of the URL it calls. Can anyone advise how I could unblock sites such as "bown8vax3us--five-nine.repl.co" Where the "bown8vax3us" element appear to change randomly?
  14. https://community.teamviewer.com/English/discussion/111300/version-15-15-5-error-on-connecting-to-a-host-because-version-is-not-updated
  15. TeamViewer reporting can't connect as not the current version! Even though there are no updates available and both end-points are running the "latest" version
  16. Of course, but the school is still operating with all staff and over 120 students - as I say, logistically not easy.
  17. Sorry? Six queues of 30 students all 2m apart - where is that gonna happen then? - I guess hope it's not raining eh?
  18. 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?
  19. 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
  20. 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
  21. 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!
  22. I've just been advised the minimum buy has now reduced from 500 to 300.
  23. Back on this again to update SMT with costs. Is there a limit to how many times a licence can be re-assigned?
  24. 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.
×
×
  • Create New...