Questions tagged [azure-information-protection]

Azure Information Protection (AIP) is a cloud-based solution that helps an organization to classify and optionally, protect its documents and emails by applying labels. Labels can be applied automatically by administrators who define rules and conditions, manually by users, or a combination where users are given recommendations.

73 questions
2
votes
0 answers

MIP SDK Java Wrapper Sample Crashed With Core Dump

I'm trying out this sample application in a Ubuntu 20.04 VM to decrypt an AIP protected office file using MIP SDK. For the application's dependency, I'm using MIP SDK Java Wrapper version 1.12.101 as that seems to be the only version available on…
2
votes
1 answer

What are the tradeoffs between the different MIP SDK options for the bulk assignment of sensitivity labels?

Given the current status of the MIP SDK, and the fact that assigning sensitivity labels with the Graph SDK is in a sort of "public preview" state, what are the current limitations around bulk assigning sensitivity labels with the Graph SDK? Some…
2
votes
0 answers

Azure information protection in Python

I am using win32com to create emails, but with Azure Information Protection now enabled how do I select the classification from within python. I have 2 solutions so far: turn off AIP or manually select the classification, is there any way to…
2
votes
0 answers

Can I use Set-AIPFileLabel to apply a sensitivity label to a file directly in SharePoint?

I am wondering if Set-AIPFileLabel can be used to apply sensitivity label to a file on SharePoint Online directly (without having to download the file to a local drive - apply label - reupload). I can't seem to find any information on this. Ideally…
2
votes
1 answer

Get sensitivity labels error - Compliance policy not configured: missing tag

In Azure aip I have created an app, given all required permission and admin consent like described here in MIP sdk prerequisite section. Here is the code as per the sdk to create the file engine. public static IFileEngine CreateFileEngine(Identity…
2
votes
2 answers

Reading internet headers set in an Outlook email by Azure Information Protection Unified Labeling Client

I am using Azure Information Protection Unified Labeling client to label emails. We are still using PGP in our environment and emails classified strictly confidential must be PGP encrypted. When the email is sent, I try to find out, how the email is…
2
votes
1 answer

Adding Azure Information Protection to email in Powershell Script

I've written a Powershell script that sends out an email, but I'm trying figure out a way to add an AIP classification to it. My organization uses general classifications of: Public Internal Secret Since in this case the classification is Internal…
hamim
  • 21
  • 3
2
votes
1 answer

C# Microsoft InformationProtection decryption error when invoking AzureInformationProtection powershell commands

I'm in the process of developing a C# tool that automates PowerShell calls to the AzureInformationProtection client. The code in the main function is as follows: if (Path.GetExtension(f) != ".msg") { VerboseOutput("Info",…
1
vote
0 answers

What is the behaviour if sensitivity label for all users is published (via policy) for a subset of users?

Suppose I create a sensitivity label with encryption so that only organizational users can access the file. Say there are 100 users in the organization. And then I create a policy that publishes this label to only a subset of organizational users.…
1
vote
0 answers

Label ID was not found in the policy error in MIP SDK (C++)

I am implementing a MIP Server to apply labels to pdf files. I have created a setLabel function that gets the label from the portal and applies it to the file. The following code snippet explains my implementation. MayBeValue
1
vote
1 answer

What are my credentials for Microsoft AIP on-premises scanner?

I'm currently trying to implement a AIP on-premises scanner for a local folder. Here are the documentation/tutorial I followed: Youtube tutorial Scanner requirements Microsoft getting started on scanner I've fulfilled all the requirements for the…
1
vote
1 answer

API to get MIP label from a file residing on remote share

I need to read the MIP label(If it is there) from a file residing on a remote shares like SMB\DFS or NFS share. One option is to download the file locally and then read file label using MIP SDK. But considering there could be very big data files, I…
1
vote
2 answers

How to display and change SensitivityLabel for a Word document (desktop)?

I would like to know the sensitivity label of my current Word file, change it with a new value and save my file I start by opening a Word file # Opening a MS Word file in pywin32 from win32com.client import Dispatch myWord =…
1
vote
2 answers

PowerShell - Set Azure Information Protection (AIP) while sending email using outlook & PowerShell

I am trying to send an email using PowerShell and outlook. $Outlook = New-Object -ComObject Outlook.Application While sending an email AIP box pops up for selecting a label. Is there a way to set labels programmatically using PowerShell? Thanks.
1
vote
1 answer

Parsing a restricted Word file

I am working on a Windows standalone application. [ I can not disclose the name as per our company policy] I installed Azure Information Protection Client. Then I protected the Word file with the below steps: Go to File ribbon > Info tab "Protect…
1
2 3 4 5