Can I exclude specific USBs? You know every device has on ID. I want to give the user a specific usb and I want to exclude it from this policy. So the user can use only a specific one safely.
Hello @dariovernelli ,I hope it works for you.Connect-JCOnline YourAPI
# Put a csv with users in C:\Temp\users.csv Column name should be "username"
$csvPath = "C:\Temp\users.csv"
$exportedUsers = @()
$users = Import-Csv -Path $csvPath
foreach ($us...