bicky
Members-
Posts
160 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by bicky
-
Thank you Andy, do you have contact details of the person in Softcat?
-
Good morning all, We are planning to go for Redstor for 1325 students to backup Office 365 + local VMs. Could you please share the contact details of your supplier? Thank you
-
We have been deploying to our Intune devices and its been working for last several years. You need to get a fresh Windows computer (reference machine) that has access to the print queue and install the printer queue you want to deploy. Then use the cloner tool which will upload the printer queue to the PaperCut Print deploy portal >> Then you make the print queue available to the users. Then deploy the print deploy client via Intune which will pull the print queue. We have Print Deploy client set with Office 365 SSO which will authenticate the end user. Here is the guide https://www.papercut.com/help/manuals/print-deploy/how-it-works/the-geeky-version/
-
Boy arrested following cyber attack on school IT system [https://www.bbc.co.uk/news/articles/cwyxxje39gyo]
-
How do you structure your department SharePoints? One central main site?
bicky replied to benward1's topic in Cloud Services
We moved to SharePoint since 2016/17 with individual site for each department. Main homepage has link to each site. Since last year we moved few departments to Teams, each department has dedicated Teams + SharePoint site that comes with it.- 5 replies
-
- cloud
- sharepoint
-
(and 5 more)
Tagged with:
-
We use Paxton Net2 ACU with Suprema Biometric readers (30+ doors). 1600+ users with biometric We also have some users with cards. This setup has been working fine for last 10+ years.
-
Conditional Access Policy: Conditions >> Filter for devices >> Exclude filtered devices from policy device.deviceOwnership -eq "Company"
-
Hi, For us, SDS create Teams for the timetabled class on Schoolbase MIS. We had to delete one of the Teams via Teams Admin Centre. We have run the SDS sync however it is not re-creating that Teams, is there anything we need to do on SDS for it to re-create the deleted Teams? Any help would be much appreciated, thank you.
-
Have you tried msi method? https://silentinstallhq.com/dymo-connect-silent-install-how-to-guide/
-
Hi, Could you please DM me the details? thank you
-
If the devices are on domain then you can run following as startup script to get the hardware hash. Then use excel to merge all csv into one. Install-Script Get-WindowsAutoPilotInfo -Force Get-WindowsAutoPilotInfo -OutputFile "\\network_share\$env:computername-hash.csv"
-
We have been running Intune since 2018 and this is how we do it here. We export hardware hash from all devices to csv file, then import it to Autopilot. Staff & students has separate group tag in csv. Deployment profile gets applied based on group tag. Devices added to the Staff-Devices or Student-Devices group based on group tag via dynamic membership rules. Device config, WiFi details, remediation scripts, app deployment, Windows updates, firewall/AV rules applies to the above two groups. We then reset the old devices and hand it to the staff/students who then logon with their school credentials. New devices are handed out once hardware hash has been imported to Autopilot.
-
Please check under Devices >> Manage devices >> Scripts and remediations >> there may be script targeted to this particular user?
-
python-3.xxxx.exe /quiet InstallAllUsers=1 PrependPath=1 TargetDir="C:\Program Files\Python" /log "%WINDIR%\Temp\PythonInstall.log"
-
Hi, has anyone deployed VSCode extensions recently? Copying extension to "C:\Program Files\Microsoft VS Code\resources\app\extensions" no longer works. Thanks in advance.
-
Trying to figure out what phone line is for!
bicky replied to SPM99's topic in Mobile Devices & Tablets
Backup internet line? We have 70mb ADSL line in server room and in IT office, we use it incase main internet line goes down/emergency use. We also have few 40MB line with BT number around school for emergency use. -
Yes you can sync from multiple domain to single tenant, make sure new domain is added/verified in O365. Here is the video guide
-
On Net2 server, open PowerShell ISE and paste the following script and run it to make sure you can get results. $uri and $uri2 = replace "net2-server" with your Net2 server IP Enter "OEM Client" password client_id = filename of xxxxxxx.lic file in C:\Program Files (x86)\Paxton Access\Access Control\ApiLicences $uri = "http://net2-server:8080/api/v1/authorization/tokens" $Body = @{ "username" = "OEM Client" "password" = "##" "client_id" = "##" #check here C:\Program Files (x86)\Paxton Access\Access Control\ApiLicences\##.lic "grant_type" = "password" } $myAuth = Invoke-RestMethod -Uri $uri -Method Post -body $Body -ContentType "application/x-www-form-urlencoded" $bearer_token = $myAuth.access_token $headers = @{Authorization = "Bearer $bearer_token"} $uri2 = "http://net2-server:8080/api/v1" #Get all users $AllUsers = Invoke-RestMethod -Uri "$uri2/users" -Method Get -Headers $headers $AllUsers.Count Run following to filter users who has no expiry date and are expired before 2022 $AllUsers | Where-Object {$_.expiryDate -le "31/02/2021 00:00:00" -and $_.expiryDate -eq $null} $InactiveUsers = $AllUsers | Where-Object {$_.expiryDate -le "31/02/2021 00:00:00" -and $_.expiryDate -eq $null} you can run following line to export all the users with no expiry and are expired before 2022 to a CSV to verify. $InactiveUsers | Export-Csv c:\inactiveusers.csv run following to delete the inactive users (If your Net2 server is VM then I wud take snapshot before running following or at least take backup of Net2 database) foreach($InactiveUser in $InactiveUsers ) { $InactiveUserId = $InactiveUser.id Invoke-RestMethod -Uri "$uri2/users/$InactiveUserId" -Method Delete -Headers $headers }
-
There is a sdk_user to authenticate to Net2 SQL database, however it will only let you access database Views and wont let you make changes to the Tables. We have been using PowerShell with Net2 Web API to make bulk changes for users. Please check the API guide here http://108.28.63.84:8080/webapihelp/ $uri = "http://net2-server:8080/api/v1/authorization/tokens" $Body = @{ "username" = "OEM Client" "password" = "##" "client_id" = "##" #check here C:\Program Files (x86)\Paxton Access\Access Control\ApiLicences\##.lic "grant_type" = "password" } $myAuth = Invoke-RestMethod -Uri $uri -Method Post -body $Body -ContentType "application/x-www-form-urlencoded" $bearer_token = $myAuth.access_token $headers = @{Authorization = "Bearer $bearer_token"} $uri2 = "http://net2-server:8080/api/v1" #Get all departments Invoke-RestMethod -Uri "$uri2/departments" -Method Get -Headers $headers #Inactive Users dept id 83 $InactiveUsers = Invoke-RestMethod -Uri "$uri2/departments/83/users" -Method Get -Headers $headers foreach($InactiveUser in $InactiveUsers) { $InactiveUserId = $InactiveUser.id Write-Host $InactiveUserId - $InactiveUser.firstName - $InactiveUser.lastName Invoke-RestMethod -Uri "$uri2/users/$InactiveUserId" -Method Delete -Headers $headers #this will delete all users from dept 83 } $InactiveUsers | Where-Object {$_.expiryDate -ge "01/12/2021 00:00:00"}
-
You can use Microsoft Intune to manage MacOS
-
Hi headoned, Sorry for the late reply, I have used full version. I have installed the Circuit Wizard on VM, activated/entered the license/code. Then used Advanced Installed to capture the image to MSI.
-
use SharePoint Migration Tool
-
Is there anything on the Event Viewer\AppLocker events to say what is being blocked?
-
If it is going to be a shared device then make sure to create "Shared multi-user device" policy. Intune connector is installed automatically once device joined to Intune.
