User Profile
mark-derouen
Brass Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Re: Device - Removal
I needed to deleted all personal windows devices from Intune I used the following command to get a list of all personally owned windows 10 devices. Get-IntuneManagedDevice | Get-MSGraphAllPages | Out-GridView Next I took the list of id's for the devices I needed and used the code below to delete them. Connect-msgraph # List of device id's to delete $ids = get-content "C:\temp\ManagedDeviceIDs.txt" Foreach ($id in $ids) { Write-host " Deleting DeviceName: $id" Remove-IntuneManagedDevice –managedDeviceId $id –Verbose –ErrorAction Stop } Pretty simple stuff. Took me forever to figure it out. Hope this helps someone.15KViews0likes0CommentsRe: Allowing Specific USB using Intune CSP
Rudy_Ooms_MVP When you applied this policy was it to all users or all devices? We have a user based requirement to block all mass storage devices but we want to allow specific hardware devices. Microsoft is stating we need to scope the policy to devices and not users. I am wondering why the option is available for both if we need to target devices only.9.7KViews0likes0CommentsRe: 18362 Upgrade failed due to 17763 Microsoft XPS and PDF drivers?
AJP_UK c:\windows\oem0.inf and c:\windows\oem1.inf are causing the issue Fix Delete c$\$WINDOWS.~BT\Sources\Panther\compatscancache.dat if it exists Remove-Printer -Name "Microsoft XPS Document Writer" Remove-Printer -Name "Microsoft Print to PDF" Disable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features Disable-WindowsOptionalFeature -Online -FeatureName Printing-XPSServices-Features pnputil /delete-driver oem0.inf /force pnputil /delete-driver oem1.inf /force13KViews0likes0Comments
Recent Blog Articles
No content to show