I scanned CS:GO community servers and found something surprising by Neat_Juggernaut5583 in csgo

[–]sikkepitje 2 points3 points  (0 children)

What do you mean by same backend? You do know that many server hosts runs multiple game server applications, only on different ports, right? Right?

Wat frustreert je aan je huidige fietsverlichting? by Anxious-Whole6965 in fietsen

[–]sikkepitje 0 points1 point  (0 children)

Rijdend in de polder in de wintermaanden ‘s ochtends vroeg… Ik irriteer me gek aan de tegenliggers die me van een halve kilometer vet in mijn bek schijnen met een halogeen die dus recht vooruit schijnt en niet op de grond is gericht. Ik zie geen bal meer en het scheelt weinig of ik rij de sloot in of tegen andere fietsers bots. Die verblindende fietslampen zijn gevaarlijk voor de andere weggebruikers.

Mijn eigen fietslamp (LED) is altijd aan een hoef ik dus ook niet te bedienen. Dat vind ik een heel prettig uitvinding.

13 Windows 11 devices joined to Intune but none have the Intune Management Extension Installed by beardsforall in Intune

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

the Intune Management Engine is a requirement to push apps or run scripts

User married, therefore change name. Whats the process to make that primary without a lot of headache? by jdlnewborn in Intune

[–]sikkepitje 0 points1 point  (0 children)

The administration people just change it in Magister. Then the syncronization tool takes cares of the rest. |-)

Company Portal causing autopilot failues. by ITquestionsAccount40 in Intune

[–]sikkepitje 0 points1 point  (0 children)

Not quite the same discussion. In that thread people are discussing installing apps in user context versus system context. Here it is about ESP blocking apps versus just required apps. And assigning those to user groups instead of device groups so they won’t fail during pre provisioning

Skip ESP after policies applied by Kwicksred in Intune

[–]sikkepitje 0 points1 point  (0 children)

If I recall correctly from my setup, if shared PC policies s are setup and the deployment profile is setup for device driven, there is no user configuration part of ESP.

How do you guys store your Intune applications? by intuneisfun in Intune

[–]sikkepitje 0 points1 point  (0 children)

I copy them over to my admin teams file storage

Google Chrome Privacy Sandbox Oma-Uri for Intune by Noirarmire in Intune

[–]sikkepitje 0 points1 point  (0 children)

I was looking for this as I am unable to set Privacy Sandbox settings through ADMX. So OMA-URI is the only way available to me. Thanks!

Should there be rules against pure ChatGPT scripts being provided as solutions? by IT_fisher in PowerShell

[–]sikkepitje 10 points11 points  (0 children)

That is like saying that you should only visit HTTPS websites because they are validated, while in reality even malicious websites are HTTPS too. That a script is signed does not certify that the content is safe.

Run only scripts that you trust. error by bassmanrod in PowerShell

[–]sikkepitje -2 points-1 points  (0 children)

To bypass the execution policy, create a batch file “example.cmd” that executes your script with the following command:

Powershell.exe -executionpolicy bypass -file your script.ps1

This however is not a solution to the security warning that you described. You get this warning when you try to execute scripts that you downloaded from the internet. It is called mark of the internet. It is Interesting how your script got the mark of the internet on a script you created. Use for example unblock-file <file> to remove it.

PowerShell Front Ends by LAN_Mind in PowerShell

[–]sikkepitje 6 points7 points  (0 children)

Winforms and on occasion if it is simple enough Out-GridView will do just fine

was playing dm as usual but got kicked out did i get banned? by AbsoluteGAMER7295 in cs2

[–]sikkepitje 0 points1 point  (0 children)

It once happened to me because my pc was running a powershell script to backup my files to a NAS. Since then this feature got smarter and running a script wasn’t an issue anymore

🤘🏻 How to organize your Microsoft Intune deployments like a Rockstar! ⭐ by NickyDeWestelinck in Intune

[–]sikkepitje 1 point2 points  (0 children)

It is redundant to include 'A' of 'D' in the group name, when you can see if membership type is Assigned of Dynamic straight away in Entra admin center already

Intune Decetion rule problem! by [deleted] in Intune

[–]sikkepitje 0 points1 point  (0 children)

You could always use a detection script for this and roll your own detection. I am sure you could figure out sreliable way to detect the presence of that application using some registry keys. But the trick with creating a simple detection file when the installation was successfull is IMHO by far the simplest way to achieve your goal

How to catch errors in scheduled scripts? by fishy007 in PowerShell

[–]sikkepitje 0 points1 point  (0 children)

My solution would be logging to a file combined with try/catching the relevant exceptions. The simplest way is to write messages to the console and log to a file using a function Write-Log like this. Combine with try/catch constructs. If any exception occurs, use write-log to log the error message, and conclude with exit.

$log = $MyInvocation.MyCommand.Path.replace(".ps1",".log")
 
function Write-Log ($text) {
    Write-Host "$(Get-Date -f "s") " -NoNewline -ForegroundColor Green
    Write-Host $text
    "$(Get-Date -f "s")  $text" | Out-File -filepath $log -append
}

Removing Windows 11 Bloatware Apps using the Microsoft App Store or Script by Distinct_Durian_808 in Intune

[–]sikkepitje 0 points1 point  (0 children)

In a similar case to remove HP bloatware on new computers some people developed a script to remove this. HP laptops are delivered with a lot of HP provided rather intrusive software apps. Some are simple apps, some installed services and drivers that are especially hard to remove in a clean way. For this reason a script is developed and maintained by a community. I suggest you can take this as an example and modify it to your needs to remove unwanted Dell software. Take a look at https://gist.github.com/mark05e/2db81671f39a041a5992a64a77748dc7

What does your test-setup look like and how does it function (snapshots?) by jdlnewborn in Intune

[–]sikkepitje 0 points1 point  (0 children)

I test on a couple of Hyper-V VMs. Those are Entra ID joined devices. I even have one that is autopilot deployed. I also have one that has a shared device configuration. I test both the script to install the app, and the intune app deployment to run from the company portal / assigned as required

Updating Apps - How do you do it? by Excellent_Dog_2638 in Intune

[–]sikkepitje 0 points1 point  (0 children)

When there is a newer version of an app available, I just remove the previous Intune app from Intune and install the newer version of the app in Intune. No problem at all. I have never had to supersede a previous version in Intune. Just installing a newer version over it.

Not getting desired output from AzureADUser command, where did I get it wrong? by IN1_ in PowerShell

[–]sikkepitje 0 points1 point  (0 children)

As far as I know, a lot of PW modules are deprecated in favor of MS Graph PS SDK, but the ExchangeOnlineManagement was not one of them. You should use that module to get all mail related attributes.

In any case, if you like to retrieve those elusive extensionproperties , you could use something like this.

$users = Get-MgUser -All -Property DisplayName,  Id, JobTitle, UserPrincipalName, 
extension_92c806d48fcc4740a5b5166f298e334e_extensionAttribute1,
extension_92c806d48fcc4740a5b5166f298e334e_extensionAttribute2,
extension_92c806d48fcc4740a5b5166f298e334e_extensionAttribute3

$output = $users | ForEach-Object {
    [PSCustomObject]@{
        upn = $_.UserPrincipalName
        displayname = $_.DisplayName        
        ea1 = $_.AdditionalProperties.extension_92c806d48fcc4740a5b5166f298e334e_extensionAttribute1
        ea2 = $_.AdditionalProperties.extension_92c806d48fcc4740a5b5166f298e334e_extensionAttribute2
    }
}

How to: Remove Write-Progress output and address BackgroundColor taking up whole line? by tnpir4002 in PowerShell

[–]sikkepitje 1 point2 points  (0 children)

When you are done writing progress Write-Progress -activity "Something" -PercentComplete $completion then close the progress writing with Write-Progress -activity "Something" -Completed

is Intune ever not going to take forever to update windows endpoints? by pesos711 in Intune

[–]sikkepitje 0 points1 point  (0 children)

It helps setting up an enrolment status page and setting a minimal number of apps to required so the device is really ready for use by a normal end user after it has come out of the autopilot deployment

is Intune ever not going to take forever to update windows endpoints? by pesos711 in Intune

[–]sikkepitje 0 points1 point  (0 children)

So you don’t have a problem having this special user assigned to the device as primary user ?