Browsed by
Tag: PowerShell

Redirect and move the Downloads folder to OneDrive

Redirect and move the Downloads folder to OneDrive

Introduction In general, the Downloads folder is intended for temporary files and should not be redirected to OneDrive. However, for the particular use case described in this post, moving Downloads to OneDrive can improve the end user experience by providing better integration between two different environments. Use case Organizations are modernizing their way of working and often implementing Intune with (cloud-native) Azure AD Joined devices. Some of these organizations still have some “Legacy” apps that may not be supported to…

Read More Read More

Why it is important to block access to Azure AD PowerShell

Why it is important to block access to Azure AD PowerShell

In one of my recent blogs, I’ve published a tool to use Intune as your e-mail signature manager for Outlook. This tool uses the AzureAD PowerShell module. Leveraging Single Sign On (SSO) on Azure AD joined devices, it queries for the user’s contact information of the user that’s signed in on the device. In doing so, I found that, as a non-administrative user, I was also able to query the contact information of all other users. Dumping the Azure AD…

Read More Read More

Advanced deployment of shortcuts to web apps with Microsoft Intune – Revamped

Advanced deployment of shortcuts to web apps with Microsoft Intune – Revamped

Back in 2018, I blogged about deploying web links to Windows 10 devices using a PowerShell Script solution in Intune. Because when admins use the web app deployment type in Intune, shortcuts are only created in the start menu with the default browser’s icon. The PowerShell solution I blogged about has added benefits compared to the built-in option in Intune, for example, it enables admins to place shortcuts on the desktop, in the startup folder and provides the option to…

Read More Read More

Managing your modern workplace with Microsoft Intune and Azure Automation

Managing your modern workplace with Microsoft Intune and Azure Automation

If you are looking for a way to simplify your modern workplace management, Microsoft Endpoint Manager (Intune) is your answer. I’m a big fan of deploying Windows 10 devices with Windows Autopilot, enrolling them as Azure AD Joined machines into Microsoft’s cloud-based MDM (Mobile Device Management) solution: Intune. There’s already so much one can do with Microsoft Intune, and it gets better every week. However, there’s something that I feel is missing, namely the ability to remotely manage and troubleshoot…

Read More Read More

Backup and Restore your Microsoft Intune configuration with PowerShell!

Backup and Restore your Microsoft Intune configuration with PowerShell!

6/25/20: BREAKING Update: IntuneBackupAndRestore v2.0.0 released, which relies on the Microsoft.Graph.Intune PowerShell module instead of MSGraphFunctions Thanks to community feedback and with the version 2.0.0 release of the IntuneBackupAndRestore PowerShell Module, the MSGraphFunctions PowerShell Module is now deprecated and will no longer be maintained by me. As of version 2.0.0, the IntuneBackupAndRestore PowerShell Module has migrated from the MSGraphFunctions PowerShell module to the Microsoft.Graph.Intune PowerShell module. This allows you to use what’s already there instead of having to maintaining a seperate custom dependency. If you update to the latest version, please make sure you meet the new prerequisites below. Requires Microsoft.Graph.Intune PowerShell Module Install-Module -Name Microsoft.Graph.Intune Connect to Microsoft Graph using the Connect-MSGraph PSCmdlet first. Do note that the cmdlet…

Read More Read More

Introduction to the Intune PowerShell SDK: Native PowerShell support for the Intune API through Microsoft Graph!

Introduction to the Intune PowerShell SDK: Native PowerShell support for the Intune API through Microsoft Graph!

One of the most requested features on the Microsoft Intune UserVoice is to add PowerShell support to manage the service. Microsoft has now released a preview version of the Intune PowerShell SDK. The new Microsoft.Graph.Intune PowerShell module reduces the complexity significantly in enabling automation scenarios for IT Administrators. Connecting with Intune through Microsoft Graph has never been so easy. The past Before the Intune PowerShell SDK was released, authenticating with Microsoft Graph required that IT Administrators had to create app registrations…

Read More Read More

Advanced deployment of web links with Intune

Advanced deployment of web links with Intune

Update 07/09/2020 This blog post has a revamped blog post available at https://srdn.io/2020/07/advanced-deployment-of-shortcuts-to-web-apps-with-microsoft-intune-revamped/ that contains a more robust and recommended Win32 app solution for deploying your shortcuts to web apps! Original post Intune supports a variety of app types app types, including web apps. Unfortunately, the settings you can configure when deploying a web link to Windows 10 devices with Intune are limited. Fortunately, PowerShell scripts can be also be used with Intune to deploy web links to these devices,…

Read More Read More

Serverless LAPS powered by Microsoft Intune, Azure Functions and Azure Key Vault!

Serverless LAPS powered by Microsoft Intune, Azure Functions and Azure Key Vault!

UPDATE 25 August 2021 Please note that this blog post dates from 2018 and there have been major updates to the Azure components used in this solution. Currently more up-to-date and enhanced community tools are also available. I would suggest looking into CloudLAPS by @NickolajA Original content I’m excited to introduce a Serverless Local Administrator Password Solution (SLAPS 😉) for Windows 10 Intune Managed devices, powered by Microsoft Intune PowerShell scripts, Azure Functions and Azure Key Vault. Building this solution has been quite…

Read More Read More