AlphamaleZed
Members-
Posts
185 -
Joined
-
Last visited
Reputation
56 ExcellentAbout AlphamaleZed

Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Looking to buy some refurbs 11inch Chromebooks hopefully under £100 each. any places where to buy from? Basic Stock Spec. the rate of damages is not worth buying new!
-
Ableton Live is free for edu FYI! https://www.ableton.com/en/classroom/
-
ah thanks any guides or docs you can share?
-
So guys just deployed Logic 12.3 the latest version and using guest accounts when students login. However although the packs have been installed the audio loops they dont seem to be appearing for the guest user? They have downloaded but then reprompts to install again! has anyone been able to solve this?
-
Its worth upgrading and will make a difference the only gripe i have is the pricing they charge for them and the lack of support for 3rd party tills! For price and coverage its robbery but they dont let us use a Touchscreen AIO or ePos which is like a quarter of the price. If they had better phone line support and more suitable responsive hours i wouldnt complain.
-
We use smoothwall cloud filter so we do not need to use RADIUS and then a hidden wifi with basic Adult and Malicous filter. if you use netsweeper there is a chrome addon.
-
Just a quick update guys, got way too carried away lol! Of course backups but i have realsied that SQL 2022 was already installed so went and changed the database compatibility to 2022. so far so good with testing and seems smooth. I have then updated to server 2025 in place upgrade and has worked fine. I would first recommend having DCs on 2025 first though as they requires a few infrastructure changes like mentioned on the other threads. Got staff coming in today inset so only support staff so any issues easy to rollback.
-
i cant really find any documentation recent as that wasnt long ago.
-
So a few weeks away from SQL 2016 EOL and planning to upgrade maybe this weekend see how i am feeling lol! i got a plan of a few steps and wanted to know if you guys have any suggestions? Change SQL Compatibility Level from 2012 (110) to 2016 (130) Install latest SQL provided from SIMS Docs and then attach inplace upgrade server to 2025 - (yes i done many times works a treat!) Thanks inadvance!
-
Windows Server 2025 DCs / Trust Relationship Issues for PCs
AlphamaleZed replied to SKELTON's topic in Windows Server 2025
I done it a while back using ChatGPT just ask for the latest information for modern certs as efault gives you the legacy stuff and then push out to all clients and the DCs and other cert they will all need to be republshed. -
Net2ADSyncServer - Inventry to Paxton to AD to Papercut?
AlphamaleZed replied to AlphamaleZed's topic in How do you do....it?
Do you use Inventry? we have MIS SIMS > Inventry > Paxton so its throwing in somehwere and looking for a script or AI a little too for regular sync. man i miss the days of perpetual! -
Net2ADSyncServer - Inventry to Paxton to AD to Papercut?
AlphamaleZed replied to AlphamaleZed's topic in How do you do....it?
I have asked and said they couldn't do it a few months back? -
Windows Server 2025 DCs / Trust Relationship Issues for PCs
AlphamaleZed replied to SKELTON's topic in Windows Server 2025
You will need to use modern AD CA certs thats one thing i found once deployed worked a treat had 2025 DCs for over a year and all but one server is 2025 now. -
Windows Server 2025 DCs / Trust Relationship Issues for PCs
AlphamaleZed replied to SKELTON's topic in Windows Server 2025
Check LDAPS is setup, Rollover KGRBT Keys and you also need an AD CA server for LDAPS and you wont have any issues. took me months to figure! -
Hi Guys, Wanted to know if anyone has paid for Net2ADSyncServer/COSMO AD2Paxton? i am looking at this but costs around 1K however im pretty sure i can AI it on a whim. Has anyone done either yet? I haevnt tested yet but will be doing soon if anyone is interested then a basic app to run as service and then run on regular intervals. be keen to hear peoples throughts. the aim of this is so Inventry also registers a staff badge on AD too so inventry is the single point of contact for all cards. let me know! # --- CONFIGURATION --- $SQLServer = "YOUR-NET2-SERVER\NET2" # Change to your Net2 SQL Instance $Database = "Net2" $ADAttribute = "pager" # Change to your target AD attribute (e.g., extensionAttribute1) # --- SQL QUERY TO FETCH NET2 CARDS --- # This query matches Net2 users to their active token numbers $SqlQuery = @" SELECT u.RegistrationField_Username AS Username, t.TokenNumber AS CardNumber FROM dbo.Viewing_Users u JOIN dbo.Viewing_Tokens t ON u.UserID = t.UserID WHERE t.Status = 1 -- 1 means the token is active/enabled AND u.RegistrationField_Username IS NOT NULL AND u.RegistrationField_Username != '' "@ # --- EXECUTE ENGINE --- Write-Output "Connecting to Net2 SQL Server: $SQLServer..." try { # Connect and fetch data using SqlServer module or standard .NET SqlClient $ConnectionString = "Server=$SQLServer;Database=$Database;Trusted_Connection=True;Timeout=30;" $SqlConnection = New-Object System.Data.SqlClient.SqlConnection($ConnectionString) $SqlCmd = New-Object System.Data.SqlClient.SqlCommand($SqlQuery, $SqlConnection) $SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter($SqlCmd) $DataTable = New-Object System.Data.DataTable $SqlConnection.Open() $SqlAdapter.Fill($DataTable) | Out-Null $SqlConnection.Close() Write-Output "Successfully retrieved $($DataTable.Rows.Count) active card mappings from Net2." } catch { Write-Error "Failed to connect or query Net2 SQL Server. Error: $_" if ($SqlConnection.State -eq "Open") { $SqlConnection.Close() } Exit } # --- WRITE BACK TO ACTIVE DIRECTORY --- Import-Module ActiveDirectory foreach ($Row in $DataTable) { $Username = $Row.Username.Trim() $CardNumber = $Row.CardNumber.ToString().Trim() Write-Output "Processing User: $Username (Card: $CardNumber)..." # Verify user exists in Active Directory $ADUser = Get-ADUser -Filter "SamAccountName -eq '$Username'" -Properties $ADAttribute if ($ADUser) { # Check if the attribute already matches to prevent unnecessary AD writes if ($ADUser.$ADAttribute -eq $CardNumber) { Write-Output " -> Match found. AD is already up to date." } else { try { # Construct hash table dynamically for the target attribute $ReplaceHash = @{ $ADAttribute = $CardNumber } Set-ADUser -Identity $ADUser.SamAccountName -Replace $ReplaceHash Write-Output " -> SUCCESS: Updated AD attribute '$ADAttribute' with Card '$CardNumber'." } catch { Write-Error " -> ERROR: Failed to update AD for $Username. Error: $_" } } } else { Write-Warning " -> WARNING: Username '$Username' found in Net2 but does not exist in Active Directory." } } Write-Output "Sync task complete."
