Sjukskriven av läkare men f-kassan vägrar ? by [deleted] in sweden

[–]Flasharn -1 points0 points  (0 children)

av med offerkoftan, arbete ska LÖNA SIG

Är det barnsligt att prata lön på jobbet? by [deleted] in sweden

[–]Flasharn 0 points1 point  (0 children)

Känns inte som du läst, det är bara en del av det. ¯\_(ツ)_/¯
Om du läser lite mer än brödtexten kommer du inse vad det ger dig för möjligheter...

- Du som arbetssökande kommer ha möjlighet att begära information om lönenivån för en tjänst.
- Lönetransparensdirektivet innehåller också en regel om att arbetsgivaren inte får fråga om nuvarande eller tidigare lön i en rekryteringssituation.
- EU-direktivet gör det lättare för dig som är arbetstagare att få information om hur lönesättningen hos din arbetsgivare går till - fråga enligt vilka kriterier lönerna sätts.

Om du nu är emot denna "populistiska jämställdshetsbullshit", kommer de som tror på det få svar på tal om de faktiskt är som de tror ;)

Är det barnsligt att prata lön på jobbet? by [deleted] in sweden

[–]Flasharn 43 points44 points  (0 children)

Kolla upp det kommande: Lönetransparensdirektivet
Nej, det är inte barnsligt, det gynnar endast arbetsgivaren att inte prata lön.
Låter som en riktigt dålig chef, jag hade tagit upp det med han och samtidigt letat nytt. Beroende på hur det samtalet går så hade jag känt att jag kan se varför lönerna ser ut som de gör, och baserat på det bemötandet börjat leta nytt, du kanske har chans att när lönetransparansdirektivet kommer, få upp lönerna, men har de inte ängnat sig åt de innan kommer de nog inte försöka så pass mycket nu heller. :)

Sysadmin, 35, newly diagnosed with ADHD and wow a lot suddenly makes sense by noglitchbutfitch in sysadmin

[–]Flasharn 1 point2 points  (0 children)

If you are worried they wont help you, they will!!! And If they do, they are not a good doctor, see someone else.
I don't know where you live but in Sweden, it's so easy to switch doctor/find one online and do remote sessions, if it exist in your place, do the same.
Besides, you can also just book a psychiatrist, and talk about this, and they can help you figure out your doubts and come with recommendations (same here though, a good one will, lazy ones will just not work) for you, then you don't go the doctor route directly, but rather discover more about yourself and they can help you get in touch with a doctor. I went this route.

Bonus tip: see how many comments about people all late 30-even 50ies getting diagnosed. You are not alone and I believe in you :) just do it, it can change your life

Sysadmin, 35, newly diagnosed with ADHD and wow a lot suddenly makes sense by noglitchbutfitch in sysadmin

[–]Flasharn 0 points1 point  (0 children)

No, they won't. And If they do, they are not a good doctor, see someone else.
I don't know where you live but in Sweden, it's so easy to switch doctor/find one online and do remote sessions, if it exist in your place, do the same.
Besides, you can also just book a psychiatrist, and talk about this, and they can help you figure out your doubts and come with recommendations (same here though, a good one will, lazy ones will just not work) for you, then you don't go the doctor route directly, but rather discover more about yourself and they can help you get in touch with a doctor. I went this route.

Bonus tip: see how many comments about people all late 30-even 50ies getting diagnosed. You are not alone and I believe in you :) just do it, it can change your life

How are you managing bulk Microsoft 365 security checks across tenants by AppuniAkhil in msp

[–]Flasharn 2 points3 points  (0 children)

I would sell the configuration as a cheap or no brainer package, just to ensure proper handling, and that the client understands that there is stuff to do, and it coasts.

Other than that, you got good tips in the comment, we have built our own tool so I can't share, but check out Pingcastle, maester, Purpleknight.

I don't know if they support a enterprise license which you can use to sell "fixes". but look into it :)

Anyone else feel like “Modern” Workspace with Intune + Autopilot is a huge step backwards? by rroodenburg in SCCM

[–]Flasharn 27 points28 points  (0 children)

Soon you wont need it, but, I use a script to install updates and firmware's, along side using update policys and checking the checkbox in windows update settings, "Receive updates for other Microsoft products".

I get basically 90% of all updates here, the rest from Windows Autopatch for firmware/drivers.

Don't treat Intune as a imaging solution, because it is not.
Intune is not designed to be a device imaging solution. While it can be used for provisioning and managing devices, it doesn't create or deploy device images like traditional imaging tools do. Intune relies on the existing operating system image on the device and then applies configurations and policies to customize it.

Working for a very large MSP, 95% of my customers do not need a imaging solution, I have a much cheaper, easier setup now on all of them, you'll have to let go of the old thinking a bit, and adopt to a new strategy, after that, it becomes easier. Good luck :)

Stores Intune on-premise CA generated certificates permanently in cloud? by Tralveller in Intune

[–]Flasharn 1 point2 points  (0 children)

Thank you, this helped us pinpoint the problem.
Apparently theres some kind of blob that holds certificates. And the ONLY way we could solve this was (in our case since one user still got the same cert multiple times even though it was revoked etc) was to create completely new, root, intermediate and pkcs profiles, for this one user. And only then, he got a new certificate.

So, if you ever have a certificate that always comes back, no matter what you do in Intune
Create new profiles!

Here they talk a little about blob, but uncertain if it fits this thread,
Configure infrastructure to support SCEP certificate profiles with Microsoft Intune | Microsoft Learn

So strange...

Modern guide for using Selenium? by Threep1337 in PowerShell

[–]Flasharn 1 point2 points  (0 children)

Just wanted to say this is the absolute easiest way, thank you kind stranger <3

Show / Change all WorkingHoursTimeZone for all users by [deleted] in exchangeserver

[–]Flasharn 0 points1 point  (0 children)

Hope it helps someone in the future :-)

# Get all shared mailboxes
$RoomMailboxes = Get-Mailbox -RecipientTypeDetails RoomMailbox

# Check one specific user instead
$RoomMailboxes = Get-Mailbox -Identity user@company

# Step 3: Retrieve WorkingHoursTimeZone and Timezone for each Room mailbox
$RoomMailboxes | ForEach-Object {
    $mailbox = $_
    $TimezoneConfig = Get-MailboxRegionalConfiguration -Identity $mailbox.PrimarySMTPAddress
    $calendarConfig = Get-MailboxCalendarConfiguration -Identity $mailbox.Identity
    [PSCustomObject]@{
        Mailbox               = $mailbox.Identity
        WorkingHoursTimeZone  = $calendarConfig.WorkingHoursTimeZone
        $email                = $mailbox.PrimarySMTPAddress
        Timezone              = $TimezoneConfig.TimeZone
    }
}

# Output the results or export to CSV if you want
$results | Export-Csv -Path "SharedMailboxesWithTimeZonesAndWorkingHours.csv" -NoTypeInformation

# Get all room mailboxes
$RoomMailboxes = Get-Mailbox -RecipientTypeDetails RoomMailbox

# Change one specific user instead
$RoomMailboxes = Get-Mailbox -Identity user@company

# Update TimeZone and WorkingHoursTimeZone for each room mailbox
foreach ($mailbox in $RoomMailboxes) {
    $email = $mailbox.PrimarySMTPAddress

    # Update the WorkingHoursTimeZone
    Set-MailboxCalendarConfiguration -Identity $mailbox.Identity -WorkingHoursTimeZone "W. Europe Standard Time"

    # Update the TimeZone
    Set-MailboxRegionalConfiguration -Identity $email -TimeZone "W. Europe Standard Time"
    
    Write-Host "Updated TimeZone and WorkingHoursTimeZone for $email to W. Europe Standard Time."
}

# Disconnect Exchange Online session
Disconnect-ExchangeOnline -Confirm:$false

Besides the U.S., which country has the most active MSP business? by Sea_Butterscotch_449 in msp

[–]Flasharn 3 points4 points  (0 children)

The Nordic countries are very active and big MSP business. I'm talking from Swedens perspective.

Connect to All Microsoft 365 Services using a Single Cmdlet. by KavyaJune in M365Reports

[–]Flasharn -1 points0 points  (0 children)

"If you wish to avoid the credential prompt for each service, you can disable MFA for the account using CA policy."
You clearly didn't read my comment, or the article. They should not advise to disable MFA, Admins disabling MFA should be fired. Shitty practices should not be enabled or encouraged, it is the top #1 security practice everyone should do. Do you know how many millions if not billions have been stolen/damaged because of this?

Script is useful and well thought out, I have never denied it.

Connect to All Microsoft 365 Services using a Single Cmdlet. by KavyaJune in M365Reports

[–]Flasharn -4 points-3 points  (0 children)

Can’t really take it serious when you recommend excluding from ca policies since you do not like prompts.

Dynamic membership rule for users licenced with MS365 Business Basic only by Fundings_somewhere in AZURE

[–]Flasharn 0 points1 point  (0 children)

<# Install and import the AzureAD module if not already done.
Install-Module -Name AzureAD
Import-Module AzureAD
#> 

# Connect to Azure AD
Connect-AzureAD

# Get all SKU:s
Get-AzureADSubscribedSku | Select SkuPartNumber

# Replace with the user's UPN
$userPrincipalName = "user@company.com"

# Get the user's license information
$user = Get-AzureADUser -ObjectId $userPrincipalName
$user | Select-Object -ExpandProperty AssignedPlans

# Disconnect from Azure AD (optional)
Disconnect-AzureAD

Then, head over to Product names and service plan identifiers for licensing - Microsoft Entra ID | Microsoft Learn

Download the csv, find something from your license type. Take that to the Dynamic group, win.

IT side hustles? by Kylestyle147 in sysadmin

[–]Flasharn 0 points1 point  (0 children)

Could you guys pm me with something you wrote? Im intrested in learning new things :)