├── Add-ons ├── DeviceInfo-Agent │ ├── Proactive Remediation │ │ └── get-clientDataDetection.ps1 │ ├── Runbook │ │ └── azure-automation.ps1 │ └── logic app │ │ └── assign-managed-identity-permissions.ps1 └── readme.md ├── LICENSE.md ├── Module └── IntuneDeviceInventory │ ├── IntuneDeviceInventory.psd1 │ ├── IntuneDeviceInventory.psm1 │ ├── Public │ ├── Add-IDIProperty.ps1 │ ├── Backup-IDI.ps1 │ ├── Connect-IDI.ps1 │ ├── ConvertTo-IDINotes.ps1 │ ├── Get-IDIDevice.ps1 │ ├── Get-IDIDeviceNotes.ps1 │ ├── Get-noneIDIDevice.ps1 │ ├── Get-noneIDIReference.ps1 │ ├── Import-IDIAppConnection.ps1 │ ├── Invoke-IDIDeviceBitLockerRotation.ps1 │ ├── Invoke-IDIDeviceDefenderScan.ps1 │ ├── Invoke-IDIDeviceDefenderSignatures.ps1 │ ├── Invoke-IDIDeviceDelete.ps1 │ ├── Invoke-IDIDeviceRestart.ps1 │ ├── Invoke-IDIDeviceRetire.ps1 │ ├── Invoke-IDIDeviceSync.ps1 │ ├── Invoke-IDIDeviceWipe.ps1 │ ├── Invoke-PagingRequest.ps1 │ ├── New-IDIApp.ps1 │ ├── Remove-IDIAppConnection.ps1 │ ├── Restore-IDI.ps1 │ ├── Save-IDIAppConnection.ps1 │ ├── Set-IDIDevice.ps1 │ ├── Set-IDIDeviceNotes.ps1 │ ├── Start-IDI.ps1 │ └── Test-4IDIDevices.ps1 │ ├── ReleaseNotes.md │ └── readme.md ├── UI ├── .images │ ├── actions.png │ ├── auth.png │ ├── multiDeviceView.png │ ├── singleDeviceView.png │ └── toolView.png ├── Install-IntuneDeviceInventoryUI.ps1 ├── Start-IntuneDeviceInventoryUi.ps1 ├── UI.zip ├── libaries │ ├── ControlzEx.dll │ ├── IntuneDeviceInventory.ico │ ├── IntuneDeviceInventory.lnk │ ├── MahApps.Metro.dll │ └── SimpleDialogs.dll ├── modules │ ├── authHandler.psm1 │ ├── deviceInventoryHandler.psm1 │ ├── uiHandler.psm1 │ └── utility.psm1 ├── readme.md └── xaml │ ├── authSelection.xaml │ ├── authServicePrinciple.xaml │ ├── message.xaml │ └── ui.xaml └── readme.md /Add-ons/DeviceInfo-Agent/Proactive Remediation/get-clientDataDetection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Add-ons/DeviceInfo-Agent/Proactive Remediation/get-clientDataDetection.ps1 -------------------------------------------------------------------------------- /Add-ons/DeviceInfo-Agent/Runbook/azure-automation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Add-ons/DeviceInfo-Agent/Runbook/azure-automation.ps1 -------------------------------------------------------------------------------- /Add-ons/DeviceInfo-Agent/logic app/assign-managed-identity-permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Add-ons/DeviceInfo-Agent/logic app/assign-managed-identity-permissions.ps1 -------------------------------------------------------------------------------- /Add-ons/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Add-ons/readme.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/IntuneDeviceInventory.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/IntuneDeviceInventory.psd1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/IntuneDeviceInventory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/IntuneDeviceInventory.psm1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Add-IDIProperty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Add-IDIProperty.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Backup-IDI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Backup-IDI.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Connect-IDI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Connect-IDI.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/ConvertTo-IDINotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/ConvertTo-IDINotes.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Get-IDIDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Get-IDIDevice.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Get-IDIDeviceNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Get-IDIDeviceNotes.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Get-noneIDIDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Get-noneIDIDevice.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Get-noneIDIReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Get-noneIDIReference.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Import-IDIAppConnection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Import-IDIAppConnection.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceBitLockerRotation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceBitLockerRotation.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDefenderScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDefenderScan.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDefenderSignatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDefenderSignatures.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDelete.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceDelete.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceRestart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceRestart.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceRetire.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceRetire.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceSync.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceWipe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-IDIDeviceWipe.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Invoke-PagingRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Invoke-PagingRequest.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/New-IDIApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/New-IDIApp.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Remove-IDIAppConnection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Remove-IDIAppConnection.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Restore-IDI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Restore-IDI.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Save-IDIAppConnection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Save-IDIAppConnection.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Set-IDIDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Set-IDIDevice.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Set-IDIDeviceNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Set-IDIDeviceNotes.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Start-IDI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Start-IDI.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/Public/Test-4IDIDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/Public/Test-4IDIDevices.ps1 -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/ReleaseNotes.md -------------------------------------------------------------------------------- /Module/IntuneDeviceInventory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/Module/IntuneDeviceInventory/readme.md -------------------------------------------------------------------------------- /UI/.images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/.images/actions.png -------------------------------------------------------------------------------- /UI/.images/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/.images/auth.png -------------------------------------------------------------------------------- /UI/.images/multiDeviceView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/.images/multiDeviceView.png -------------------------------------------------------------------------------- /UI/.images/singleDeviceView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/.images/singleDeviceView.png -------------------------------------------------------------------------------- /UI/.images/toolView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/.images/toolView.png -------------------------------------------------------------------------------- /UI/Install-IntuneDeviceInventoryUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/Install-IntuneDeviceInventoryUI.ps1 -------------------------------------------------------------------------------- /UI/Start-IntuneDeviceInventoryUi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/Start-IntuneDeviceInventoryUi.ps1 -------------------------------------------------------------------------------- /UI/UI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/UI.zip -------------------------------------------------------------------------------- /UI/libaries/ControlzEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/libaries/ControlzEx.dll -------------------------------------------------------------------------------- /UI/libaries/IntuneDeviceInventory.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/libaries/IntuneDeviceInventory.ico -------------------------------------------------------------------------------- /UI/libaries/IntuneDeviceInventory.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/libaries/IntuneDeviceInventory.lnk -------------------------------------------------------------------------------- /UI/libaries/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/libaries/MahApps.Metro.dll -------------------------------------------------------------------------------- /UI/libaries/SimpleDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/libaries/SimpleDialogs.dll -------------------------------------------------------------------------------- /UI/modules/authHandler.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/modules/authHandler.psm1 -------------------------------------------------------------------------------- /UI/modules/deviceInventoryHandler.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/modules/deviceInventoryHandler.psm1 -------------------------------------------------------------------------------- /UI/modules/uiHandler.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/modules/uiHandler.psm1 -------------------------------------------------------------------------------- /UI/modules/utility.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/modules/utility.psm1 -------------------------------------------------------------------------------- /UI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/readme.md -------------------------------------------------------------------------------- /UI/xaml/authSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/xaml/authSelection.xaml -------------------------------------------------------------------------------- /UI/xaml/authServicePrinciple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/xaml/authServicePrinciple.xaml -------------------------------------------------------------------------------- /UI/xaml/message.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/xaml/message.xaml -------------------------------------------------------------------------------- /UI/xaml/ui.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/UI/xaml/ui.xaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlorianSLZ/IntuneDeviceInventory/HEAD/readme.md --------------------------------------------------------------------------------