Posts

Showing posts from March, 2022

Configure Google Chrome with Microsoft Intune

Image
With the arrival of Microsoft Intune release 2203 , Microsoft is providing us with new administrative templates for Google Chrome so that MEM administrators can manage Google browser settings. Source :  What's new in Microsoft Intune | Microsoft Docs Let's take a look at how to use Google Chrome Administrative Templates in Microsoft Intune. Create a configuration profile To do this, go to the Microsoft Intune console  https://endpoint.microsoft.com/  then perform the following actions: Go to Devices  / Windows / Configuration Profiles  and select option Create profile Choose the following options for create your profile   : Windows 10 and later Templates Administrative Templates Then click on the button Create Then complete the Name and designation fields and click on Next Sélect  Google Select  Google Chrome and Google Chrome Select the options you want to apply to user's workstations. In my case, I put the Bing url as the homepage and added the Evernote Clipper exte

Intune - Deployer Dot Net Framework 3.5

Image
1. Script d'installation Param ( [Parameter(Mandatory= $true )] [ValidateSet( "Install" , "Uninstall" )] [String[]] $Choose ) If ( $Choose -eq "Install" ) { DISM /Online /Enable-Feature /FeatureName:NetFx3 /All } If   ( $Choose -eq "Uninstall" ) { Disable-WindowsOptionalFeature -Online -FeatureName 'NetFx3' -Remove -NoRestart } Script PowerShell disponible ici :   https://github.com/ChrisMogis/Scripts/blob/main/Install_DotNet35.ps1 2. Conversion du package au format .intunewin L'intégration du script Powershell dans Microsoft Intune nécessite que celui-ci soit au préalable converti au format .intunewin .  Procédure complète disponible ici :   https://www.ccmtune.fr/2022/01/intune-creer-un-package-intunewin.html Lancer l'utilitaire  IntuneWinAppUtil.exe Spécifier  le chemin qui contient les sources  puis  appuyer sur Entrée Entrer le nom de l’exécutable , ici c'est notre script PowerShell puis appuyer sur Entrée Indique

Microsoft Teams Room - Création d'un compte

Image
Création d'un compte Microsoft Teams Room Dans un précedent article, je vous présentais la solution Microsoft Teams Room. (https://www.ccmtune.fr/2022/01/microsoft-teams-room-presentation-de-la.html) Ici, nous allons voir comment créer un compte Microsoft Teams Room et lui affecter une licence. Création du compte Ouvrez dans la console de gestion puis allez dans Active Teams & Groups Ensuite cliquer sur Add Ressource Compléter les champs requis pour la création du compte Votre compte est maintenant créer. Affectation d'une licence Allez dans Users puis Active Users Faites une recherche du compte précédemment créé  puis dans les propriétés de celui-ci cliquez sur Licences and Apps, renseignez la section Location Puis sélectionnez la licence à affecter  Votre compte possède maintenant sa licence. il est prêt à être configurer sur votre équipement de salle de réunion. Réinitialiser le mot de passe de votre compte Microsoft Teams Room Ci-dessous la procédure pour reinitial

PowerShell - Activation OEM de Windows 10

Image
  Après une réinstallation complète de Windows 10, il se peut que vous soyez contraint de réactiver votre licence Windows 10 OEM qui est fournie avec votre PC lors de votre achat. Prérequis :  Cette manipulation nécessite une connexion internet. Script : lien Github :   https://github.com/ChrisMogis/Scripts/blob/main/Win10Activation.ps1 Entrer les lignes de commande suivantes via un invit de commande Powershell $keyW10 = ( Get-WmiObject -query 'select * from SoftwareLicensingService' ).OA3xOriginalProductKey cscript c:\Windows\System32\slmgr.vbs -ipk $keyW10 cscript c:\Windows\System32\slmgr.vbs -ato