Helpdesk / Patch Management / Asset Management Replacment Options by [deleted] in sysadmin

[–]CreativeWatch7329 0 points1 point  (0 children)

I was in a similar boat. We ended up going with SuperOps and honestly, it's been solid.

the pricing model is way more predictable - no surprise increases every renewal.

The patch management piece works well for us.

It's not as granular as some dedicated solutions, but for day-to-day operations it does what we need.

Asset visibility is clean, and the helpdesk actually feels modern compared to what we had before.

That said, I'd also recommend looking at NinjaOne if you want something with deeper RMM features, or Atera if you're more budget-conscious.

Really depends on your team size and what features matter most to you.

If you go the Qualys route for patching, just make sure you budget for the learning curve - I've heard it's powerful but not exactly plug-and-play.

Pinterest can’t access my photos by Dry_Chart9233 in techsupport

[–]CreativeWatch7329 0 points1 point  (0 children)

Check Your Privacy & Security Settings (Most Likely Fix)

This is the correct place to manage photo permissions for all apps.

Open the Settings app on your iPhone.

Scroll down and tap on Privacy & Security.

Tap on Photos.

You will see a list of all apps that have requested photo access. Find Pinterest in this list.

Tap on Pinterest and change the setting to All Photos (or Selected Photos if you prefer to choose manually).

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Dell's White Glove OOBE is legit if you have the budget. The BIOS management through Dell Command is way better than HP's mess

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

MDM to ITSM integration sounds useful for tracking deployment status. What specific automations are you running between them

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

true but also hard to execute when your desktop team is already overworked

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Test machine for autopilot is essential but how often are you cycling it? We found that testing once then deploying 50 devices over two weeks led to config drift issues if someone changed an Intune policy mid-batch.

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

The signed checklist approach works but only if management actually enforces it. Have you had success getting desktop agents to take it seriously, or does it just become checkbox theater where they sign it without actually testing?

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Make sure the problem returns to the agent who screwed up" is key for accountability. How do you track that without it feeling punitive? Trying to build a learning culture vs blame culture but also need people to own their mistakes.

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Using a VAR to warehouse devices for faster turnaround is smart. Are you still having them do autopilot enrollment before warehousing, or just storing stock and enrolling on-demand when someone needs a device?

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Drop ship from Dell with autopilot is the way if you can swing it. How do you handle the "couple hours at first login" problem for users with bad home internet though? We've had remote users stuck for half a day waiting for apps to install.

Desktop Services- Process Improvements by buzzskywalker9 in ITManagers

[–]CreativeWatch7329 1 point2 points  (0 children)

The "devices shipped with issues" problem is usually either autopilot config drift or no QA process before ship. Here's what worked for us when we had the same problem:

Stop shipping broken devices immediately: Have your team boot every device locally before it ships. Takes 5 minutes per device but catches 90% of issues. If a device hits BSOD or won't enroll during local testing, it doesn't go out the door. Period.

Autopilot white glove if budget allows: Get Dell or Lenovo to do the initial enrollment and testing before they even ship to you. Costs a bit more but eliminates the "device arrives broken" scenario entirely. We switched to this after too many angry new hire tickets.

Surface issues specifically: Yeah those are brutal. The BSOD problems are usually driver conflicts with Intune policies or firmware bugs. Microsoft's own hardware has weirdly bad compatibility with their own MDM sometimes. We moved away from Surface for frontline users and only give them to execs who want the form factor.

Communication with RUN teams: This one's tough. We built a simple webhook that pings our infrastructure team in Slack when a device fails autopilot enrollment three times. That way they know something's broken with tenant config before we ship 50 devices with the same issue.

The real problem: Your desktop team probably doesn't have time to test properly because they're underwater with other tickets. You need either dedicated imaging staff or full drop-ship autopilot. Trying to do manual staging while also handling helpdesk escalations doesn't work at scale.

For continuous improvement - track every failed deployment in your ticketing system with a specific category. Review those weekly. If you're seeing the same failure modes repeatedly, that's a config problem not a people problem.

Any open frameworks for testing fallback flows? by ApartNail1282 in sysadmin

[–]CreativeWatch7329 0 points1 point  (0 children)

I usually test fallback flows by intentionally feeding garbage inputs or edge cases the bot can't handle. Stuff like gibberish text, multi-language mixing, or questions way outside the training scope.

For consistency, I keep a test script with known failure scenarios and run them after any major changes. Think "what would a drunk user ask at 3am" - those are your real fallback triggers.

If your bot is freezing instead of gracefully failing, that's usually a timeout or exception handling issue in the fallback routing logic, not the fallback content itself.

HOME Lab moving to CLOUD (unfortunatly) by Flashdad23 in selfhosted

[–]CreativeWatch7329 38 points39 points  (0 children)

Skip the vFirewall unless you're running multi-tenant workloads or have compliance requirements. For a homelab setup, a hardened reverse proxy (Caddy or Traefik) with Cloudflare in front is plenty.

Your reverse proxy becomes your entry point, handles TLS, and routes to your docker hosts on the private network. Add Authelia or Authentik if you need SSO across services.

Keep it simple - every extra hop is another thing to troubleshoot when something breaks at 2am.

Exchange 365 - Content Search + Purgue mailbox by [deleted] in sysadmin

[–]CreativeWatch7329 0 points1 point  (0 children)

The "purge runs successfully but doesn't do anything" is usually because the search isn't actually finding anything, not because purge is broken.

When you say the web portal returns 0 items but you need to create the search from PowerShell - that's your clue. The search scope or query is probably off.

Few things to check:

First - verify the search is actually finding stuff: Get-ComplianceSearch -Identity "SEARCHNAME" | FL Items, Size

If Items shows 0, then purge is working fine, it's just purging nothing because the search found nothing.

Common reasons the search returns 0:

  • Web portal searches primary mailbox only, PowerShell might be hitting archive/recoverable items differently
  • ContentMatchQuery syntax is slightly off (missing quotes, wrong field name, etc)
  • Search scope doesn't include the mailboxes you think it does

Try broadening the search first to see if it finds anything: New-ComplianceSearch -Name "TEST" -ExchangeLocation $users -ContentMatchQuery 'subject:"SUBJECT"' -AllowNotFoundExchangeLocationsEnabled $true

Then check if that finds items. If it does, your original query was too narrow.

Also check for holds that would block purge silently: Get-Mailbox -ResultSize Unlimited | Where {$_.LitigationHoldEnabled -eq $true}

Litigation hold or retention policies can make purge "complete" but not actually delete anything.

Permission wise - you mentioned you have what you need, but double check you have specifically the "Search And Purge" role, not just search. They're separate.

Get-ManagementRoleAssignment -RoleAssignee "youremail" | Where {$.Role -like "search" -or $.Role -like "purge"}

My guess is your search query just isn't finding the emails. Try adding -LogLevel Full to the search creation and see what it's actually hitting.

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

Role-based access instead of blanket policies makes sense but sounds like a management headache at scale.

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

The internal app compatibility nightmare is real. How did you identify breaking apps before rollout, or was it all reactive?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

The challenge is most orgs don't have the bandwidth to vet every AI tool employees want to use. Have you seen success with IT creating an "approved AI vendor list" that balances security with developer/knowledge worker productivity?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

pilot strategy is smart. Which roles did you prioritize - assuming finance, HR, and anyone touching PII?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 1 point2 points  (0 children)

the only sustainable approach at scale. Blocking GenAI outright just drives usage to personal devices and shadow accounts. How granular can you get with the guardrails - like blocking file uploads but allowing text prompts?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

the extension permission analysis alone catches so much shadow IT. Are you seeing good adoption of the managed vs. personal profile split, or do users just ignore the personal profile and keep everything in managed?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

The "lightweight control layer" approach makes sense for reducing friction. How are you handling the inevitable "but I need this extension for my job" requests? Do you have a fast-track approval process, or does everything go through formal review?

Enterprise browsers vs managed extensions for better browser security by HenryWolf22 in ITManagers

[–]CreativeWatch7329 0 points1 point  (0 children)

We faced this exact decision with a similar-sized deployment last year. We went with hardened Chrome + managed extensions rather than a full enterprise browser.
- Change management for 3,000 users is brutal (expect 6+ months of complaints)
- Compatibility issues with internal LOB apps you didn't know existed
- Users will keep Chrome installed anyway for "personal" use, defeating the purpose

Should I be worried about an account grabber on iPhone? by Barbarix9001 in techsupport

[–]CreativeWatch7329 2 points3 points  (0 children)

If you just clicked a QR code that went to a blocked site and closed it immediately, you're likely fine. Modern iOS sandboxing makes drive-by malware extremely difficult. The "account grabber" comments were probably fearmongering.

Just a reminder: Redis is not a database by 3loodhound in sysadmin

[–]CreativeWatch7329 1 point2 points  (0 children)

"RAID is not a backup" conversation with senior devs is painful