-
Posts
643 -
Joined
-
Last visited
Reputation
157 ExcellentAbout eejit

Personal Information
-
Occupation
IT Technician
-
Location
Ireland
-
Impero vs Senso vs NetSupport vs Others?
eejit replied to ashleylewisms92's topic in Network and Classroom Management
Such a bizarre business decision and very annoying. -
Intune: SharedPC Template does not remove "Primary User"
eejit replied to eejit's topic in Cloud Services
I'm not officially using Autopilot - USB unattended builds, but they do show up as autopilot in Intune for some reason. Perhaps down to my provisioning package, not sure. -
Intune: SharedPC Template does not remove "Primary User"
eejit replied to eejit's topic in Cloud Services
The portal deploys and opens for all users on ours even though it has a Primary User. I'm not making apps available there, so perhaps that bit doesn't work? -
...and is that ok? Everything seems to work fine, but usually you have to remove the primary user to make a device a Shared PC. The Company Portal works for all users, and OneDrive auto-signs in etc. That last thing bugs me though. What's your experience?
-
Hi @Badzeye - did you ever get a resolution to this? Cheers.
-
Nice, I'll give it a go. Cheers.
-
Hiya, We're playing with Teams at the moment and looking in the Teams Apps - > Permission Policies. We're allowing all Microsoft apps (not sure if we should), but which third-party apps are you allowing? I want to make sure that we're not missing out on anything special. Flipgrid is the only one I've allowed so far.
-
Ok thanks for that. our users had licenses weeks ago, so probably not the same issue. We've only enabled Teams since then so I wonder if the order has caused a problem. I'll try to remove some licenses, re-add, and check. Cheers again.
-
I'm having the exact same problem as you. Strangely any new users I create get the "Class" etc., option that has been shown in the thread. How long did you have to wait for users to get these options? Any other changes you might have made that could have affected the Teams types available? I've been on this for a few days now and it's driving us crazy.
-
Ok thanks for the update - looks like Delprof2 will be getting busy
-
Is there a group policy to ensure that the local OneDrives on shared computers don't fill up the C: drive? I know that by default the agent doesn't sync but I'm just worried about them selecting "Make all files available".
-
I'm afraid that just means that you don't have the permissions to access those recycle bins. I've not come across that so it'll be difficult for me to play with the script and update it to list the bins that you need to get access to at the end, but if I do come across it I'll update this post again.
-
This script will recursively search through all sub-folders below the $path variable. $Path = 'E:\Teaching Staff\Work' $TotalBinSizes = 0 $TotalBins = 0 Get-ChildItem -Path $Path -Include '$Recycle.bin' -Recurse -Force -ErrorAction SilentlyContinue | ForEach-Object -Process { $TotalBins++ $BinSize = (Get-ChildItem -Path $_.FullName -Force -Recurse -ErrorAction SilentlyContinue | Measure-Object -Property Length -Sum).sum '{0,-75} {1:N2} MB' -f $_.FullName, ($BinSize / 1mb) try { Remove-Item -Path $_.FullName -Confirm:$false -Force -Recurse -ErrorAction Stop $TotalBinSizes += $BinSize } catch { Write-Warning -Message 'Unable to empty bin.' } } ' ' if(($TotalBinSizes / 1mb) -gt 1024) { $Size = $TotalBinSizes / 1gb $Unit = 'GB' } Else { $Size = $TotalBinSizes / 1mb $Unit = 'MB' } if($TotalBins -gt 0) { 'There were {0} Recycled Bins emptied with a combined size of {1:N2} {2}.' -f $TotalBins, $Size, $Unit } Else { 'No Recycle Bins needed emptying.' } ...and it looks like this:
-
Hi Warwick_Tech, Only just seen this. Yeah, there is a problem in my original line there that was introduced by my auto-formatting tool (ISE Steroids). That 'path' is wrong so something like this should work instead: $Path = 'E:\Teaching Staff\Work' Get-ChildItem -Path $Path -Include '$Recycle.bin' -Recurse -Force -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force That post was from 2013 though, and if you're not embarrassed by your scripts 6 months later then you're not progressing. I would do things a lot differently these days so let me have a play and try to post something more advanced later.
-
Did you ever turn an old laptop in to a Chromebook?
eejit replied to ChrisERoots's topic in ChromeOS & Cloud Based OS
Now that you're a few months down the line, how are you finding them?
