Tags

,


Now we don’t require Intune installer in our windows 7 or windows 10 client. It will automatically connect to intune once is joined to Azure AD. If the system already has Intune client it will not allow this system as MDM. So we need to uninstall this client

Here i am introducing batch file which can completely delete the Intune installed file from your PC. Just copy this contents  and save in Notepad and save as batch file it will automatically remove all the files.

 

 

wmic product where name=”Microsoft Endpoint Protection Management Components” call uninstall
wmic product where name=”Microsoft Intune Notification Service” call uninstall
wmic product where name=”System Center 2012 – Operations Manager Agent” call uninstall
wmic product where name=”Microsoft Online Management Policy Agent” call uninstall
wmic product where name=”Microsoft Policy Platform” call uninstall
wmic product where name=”Microsoft Security Client” call uninstall
wmic product where name=”Microsoft Online Management Client” call uninstall
wmic product where name=”Microsoft Online Management Client Service” call uninstall
wmic product where name=”Microsoft Easy Assist v2″ call uninstall
wmic product where name=”Microsoft Intune Monitoring Agent” call uninstall
wmic product where name=”Windows Intune Endpoint Protection Agent” call uninstall
wmic product where name=”Windows Firewall Configuration Provider” call uninstall
wmic product where name=”Microsoft Intune Center” call uninstall
wmic product where name=”Microsoft Online Management Update Manager” call uninstall
wmic product where name=”Microsoft Online Management Agent Installer” call uninstall
wmic product where name=”Microsoft Intune” call uninstall
wmic product where name=”Windows Endpoint Protection Management Components” call uninstall
wmic product where name=”Windows Intune Notification Service” call uninstall
wmic product where name=”System Center 2012 – Operations Manager Agent” call uninstall
wmic product where name=”Windows Online Management Policy Agent” call uninstall
wmic product where name=”Windows Policy Platform” call uninstall
wmic product where name=”Windows Security Client” call uninstall
wmic product where name=”Windows Online Management Client” call uninstall
wmic product where name=”Windows Online Management Client Service” call uninstall
wmic product where name=”Windows Easy Assist v2″ call uninstall
wmic product where name=”Windows Intune Monitoring Agent” call uninstall
wmic product where name=”Windows Intune Endpoint Protection Agent” call uninstall
wmic product where name=”Windows Firewall Configuration Provider” call uninstall
wmic product where name=”Windows Intune Center” call uninstall
wmic product where name=”Windows Online Management Update Manager” call uninstall
wmic product where name=”Windows Online Management Agent Installer” call uninstall
wmic product where name=”Windows Intune” call uninstall

 

After copying this file to notepad and save as batch file and run on the pc which has intune client installed. It may take sometime to remove.

After running the batch file you run the below command in command prompt for removing the complete folder.

“rd /s /q %ProgramFiles%\Microsoft\OnlineManagement”