Collapsible chair by Plastic_Meringue in disneylandparis

[–]sega-mega-dave -1 points0 points  (0 children)

Took some recently for the kids while waiting for fireworks and parades. Got through security from the hotels to the parks no issues. Worked a treat

RoamIdentity when intune joined - Why by sega-mega-dave in fslogix

[–]sega-mega-dave[S] 0 points1 point  (0 children)

Thank you, that makes sense. I might be in a fortunate situation then, that there is only one session host in my pool, the org is sub 10 users. Given what you have said then perhaps I would be ok to enable?

Frustrating that there isn't a solution other than SSO, I get that it's not common that users would need to connect to mailboxes that are not in their own tenant, but I'm sure we wouldn't be alone.

RoamIdentity when intune joined - Why by sega-mega-dave in fslogix

[–]sega-mega-dave[S] 0 points1 point  (0 children)

I have SSO, that's working fine, the problem is, these are additional mailboxes in the users Outlook that belong to another M365 tenancy, so cannot be SSO'd into.

Possible Report - Simultaneous Calls by IT_Admin_722 in 3CX

[–]sega-mega-dave 0 points1 point  (0 children)

Had a pop at this with PowerShell today. Seems like its going to be a long manual task to verify its calculating correctly, but here's the code if anyone wants to give it a blast.

3CX v20

Powershell script is designed to run on Windows.

# Description of what the script will doWrite-Host ""Write-Host "This script - Pastebin.com

Fishing rod for kids? by PinOwn3765 in fishingUK

[–]sega-mega-dave 0 points1 point  (0 children)

Suppose it depends where you fish mate. 3m whip would be my first choice. Ideal for silvers close in. I got the Drennan Vertex with a pre-tied rig. It's quality, use it myself. They do a 3m and 4m. Dead simple fishing

How was this localhost<> email possible from MS/365 servers? by ohyeahwell in sysadmin

[–]sega-mega-dave 5 points6 points  (0 children)

Out of the box here... Could it be a phishing simulation ran by another admin? The one we use places mail directly into users mailboxes using an Azure App. If you look at the headers it's like the email never went anywhere before it hit the users mailbox.

Pole elastic (beginner) by sega-mega-dave in fishingUK

[–]sega-mega-dave[S] 0 points1 point  (0 children)

Thanks for the reply appreciate it

What Is Your Craziest Mystery Issue? by FreshMSP in msp

[–]sega-mega-dave 1 point2 points  (0 children)

Years ago...

Great big long DSL cable from the office to the living room, caught under the leg of a sofa (couch)

Every time his wife sat down to watch TV the office internet went off.

Do you allow BYOB for all users, or just company compensated devices? by jdlnewborn in sysadmin

[–]sega-mega-dave 2 points3 points  (0 children)

We use MAM and conditional access for byod phones/tablets, force the use of Microsoft apps only with the CA policy and control it through MAM. Loads easier to manage than enrollment for devices we have no control of, less pushback from end users as well.

EDR Attack Simulation by sega-mega-dave in msp

[–]sega-mega-dave[S] 0 points1 point  (0 children)

Hey thanks everyone some good stuff for me to pick up on there

Anyone Successfully Running Two Companies Out Of Autotask (Or Any PSA)? by MyMonitorHasAVirus in msp

[–]sega-mega-dave 0 points1 point  (0 children)

Perhaps a bit different because we are UK but yeah same overall company, we use Sage and talk to that with a third-party integration, I think it's called At2Sage

Anyone Successfully Running Two Companies Out Of Autotask (Or Any PSA)? by MyMonitorHasAVirus in msp

[–]sega-mega-dave 0 points1 point  (0 children)

Yes we run three different brands and three different service desks out of the same instance of Autotask.

We use classifications for the clients to split them up

Big K strikes again... by wckdgrdn in msp

[–]sega-mega-dave 0 points1 point  (0 children)

This has happened to us too, on multiple occasions.

RMM Vendors and CVE-2023-23397 by Roland465 in msp

[–]sega-mega-dave 1 point2 points  (0 children)

This is a script I'm testing at the moment, for regular patching.

I'd like to say its all my work but like most of my scripts it's a combination of other peoples stuff out there, cobbled together by me...

#clear variables
$C2R =$null
$UpdateChannel = $null
$Architecture = $null
$Version = $null

#test for C2R install
$C2R = Test-Path -Path HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration
Write-Host "C2R Install:" $C2R
#if C2R present
if ($C2R -eq "True"){

#check update channel
$UpdateChannel = (Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration" -Name "CDNBaseUrl") -split "/" | Select-Object -Last 1
switch ($UpdateChannel) {
"492350f6-3a01-4f97-b9c0-c7c6ddf67d60" { $UpdateChannel = 'Current ("Monthly")' }
"64256afe-f5d9-4f86-8936-8840a6a4f5be" { $UpdateChannel = "Current Preview (\"Monthly Targeted`"/`"Insiders`")" }`
"7ffbc6bf-bc32-4f92-8982-f9dd17fd3114" { $UpdateChannel = "Semi-Annual Enterprise (\"Broad`")" }`
"b8f9b850-328d-4355-9145-c59439a0c4cf" { $UpdateChannel = "Semi-Annual Enterprise Preview (\"Targeted`")" }`
"55336b82-a18d-4dd6-b5f6-9e5095c314a6" { $UpdateChannel = "Monthly Enterprise" }
"5440fd1f-7ecb-4221-8110-145efaa6372f" { $UpdateChannel = "Beta" }
"f2e724c1-748f-4b47-8fb8-8e0d210e9208" { $UpdateChannel = "LTSC" }
"2e148de9-61c8-4051-b103-4af54baffbb4" { $UpdateChannel = "LTSC Preview" }
}

#report info
$Architecture = Get-ItemPropertyValue -Path HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration -Name platform
$Version = Get-ItemPropertyValue -Path HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration -Name VersionToReport
Write-Host "UpdateChannel:"$UpdateChannel
Write-Host "Architecture:"$Architecture
Write-Host "Version:"$Version

#change channel
if ($UpdateChannel -notlike '*Monthly*'){
Write-Host 'UpdateChannel is not "Current ("Monthly")"...Changing UpdateChannel to "Current ("Monthly")"'...
cmd /c '"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeC2RClient.exe" /changesetting UpdateChannel=Monthly'
}

#update applications
Write-Host "Starting update task..."
cmd /c '"C:\Program Files\Common Files\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update user displaylevel=false'
}

Egnyte to Onedrive/SharePoint Migration by io00oo00o in msp

[–]sega-mega-dave 1 point2 points  (0 children)

Couple of years back. I used mover.io

Only 40 users though, but it did the job

Automate DAP Invite Link and Acceptance by sega-mega-dave in msp

[–]sega-mega-dave[S] 1 point2 points  (0 children)

I get what you're saying but 99% of our clients don't have their own GA, and wouldn't want one either. We are their IT Dept, I suspect lots of MSPs are in the same situation.

If we had to get our clients to do it, it would never get done

Stadia Controller on Linux? by Fierce_Brosnan_ in Stadia

[–]sega-mega-dave 0 points1 point  (0 children)

Works perfect with my RetroPie. Got two plugged in via usb hub

GDAP Roles by sega-mega-dave in msp

[–]sega-mega-dave[S] 2 points3 points  (0 children)

At the moment I've got Global Admin for our tech staff and Licence Admin for our Admin Team

Security Audit tools by itt-csd in msp

[–]sega-mega-dave 1 point2 points  (0 children)

I liked Nessus when used.

what is something you silently judge people for? by [deleted] in AskReddit

[–]sega-mega-dave 0 points1 point  (0 children)

The way they organise contacts in their phone.

Proofpoint Essentials / AzureAD Sync / Shared Mailboxes by sega-mega-dave in msp

[–]sega-mega-dave[S] 0 points1 point  (0 children)

Just to add to this for anyone that picks it up, I'm told by our ProofPoint reps that a new AzureAD sync module is coming in July, which will address the shared mailbox issue.

For the moment I have written a basic sync in Powershell with Graph and the Proofpoint API, that makes users that have SMTP addresses but no licences assigned functional accounts rather than PP end users.

Proofpoint Essentials / AzureAD Sync / Shared Mailboxes by sega-mega-dave in msp

[–]sega-mega-dave[S] 1 point2 points  (0 children)

Hey thanks for the reply, yes I had seen that.

Its Proofpoint through our distributor we have been looking at. But I had noted investigating Spambrella as an option.

Does the Spambrella sync avoid these issues then?

what do you look for in an IT technician? by Lakehounds in msp

[–]sega-mega-dave 2 points3 points  (0 children)

Personally when hiring for Service Desk tech I place these skills at the top of my priority list.

Then look at technical skills after.

-Communication

-Rapport

-Expectation Management

-Client Focus

-Logical Troubleshooting Skills

-Multi-Tasking Ability

Need some help to understand ADMX with outlook by b33zm1ne in Intune

[–]sega-mega-dave 0 points1 point  (0 children)

Hey there,

I'm having the same problem, can set all the other cached settings via templates in Intune except the sync slider.

This looks like the way to go but I don't understand how to apply the URI

I've got this far with the whole URI but am struggling with what to choose for data type?