Please enter search query.
Search <book_title>...
Veritas Data Insight Administrator's Guide
Last Published:
2023-02-01
Product(s):
Data Insight (6.4)
Platform: Windows
- Section I. Getting started
- Introduction to Veritas Data Insight administration
- Configuring Data Insight global settings
- About scanning and event monitoring
- About filtering certain accounts, IP addresses, and paths
- About archiving data
- About Data Insight integration with Symantec Data Loss Prevention (DLP)
- Configuring advanced analytics
- About open shares
- About user risk score
- About bulk assignment of custodians
- Configuring Metadata Framework
- Section II. Configuring Data Insight
- Configuring Data Insight product users
- Configuring Data Insight product servers
- About node templates
- About automated alerts for patches and upgrades
- Configuring saved credentials
- Configuring directory service domains
- Adding a directory service domain to Data Insight
- Configuring containers
- Section III. Configuring native file systems in Data Insight
- Configuring NetApp 7-mode file server monitoring
- Configuring clustered NetApp file server monitoring
- About configuring secure communication between Data Insight and cluster-mode NetApp devices
- Configuring EMC Celerra or VNX monitoring
- Configuring EMC Isilon monitoring
- Configuring EMC Unity VSA file servers
- Configuring Hitachi NAS file server monitoring
- Configuring Windows File Server monitoring
- Configuring Veritas File System (VxFS) file server monitoring
- Configuring monitoring of a generic device
- Managing file servers
- Adding filers
- Adding shares
- Renaming storage devices
- Configuring NetApp 7-mode file server monitoring
- Section IV. Configuring SharePoint data sources
- Configuring monitoring of SharePoint web applications
- About the Data Insight web service for SharePoint
- Adding web applications
- Adding site collections
- Configuring monitoring of SharePoint Online accounts
- About SharePoint Online account monitoring
- Adding SharePoint Online accounts
- Adding site collections to SharePoint Online accounts
- Configuring monitoring of SharePoint web applications
- Section V. Configuring cloud data sources
- Configuring monitoring of Box accounts
- Configuring monitoring of cloud sources in Data Insight
- Configuring OneDrive account monitoring
- Managing cloud sources
- Configuring monitoring of Box accounts
- Section VI. Configuring Object Storage Sources
- Section VII. Health and monitoring
- Section VIII. Alerts and policies
- Section IX. Remediation
- Configuring remediation settings
- Section X. Reference
- Appendix A. Data Insight best practices
- Appendix B. Migrating Data Insight components
- Appendix C. Backing up and restoring data
- Appendix D. Data Insight health checks
- About Data Insight health checks
- About Data Insight health checks
- Appendix E. Command File Reference
- Appendix F. Data Insight jobs
- Appendix G. Troubleshooting
- Troubleshooting FPolicy issues on NetApp devices
Configuring application without user impersonation for Office 365
Setting DisableCustomAppAuthentication property for the tenant
To set the property DisableCustomAppAuthentication,
- Install Module Pnp.Powershell using command in PowerShell Install-Module -Name PnP.PowerShell
- Run the command Register-PnPManagementShellAccess and provide credentials of Global Administrator Account
Note:
This step is done to provide PnP PowerShell Authentication with Service Principal. If we do not do this then we will get error : Connect-PnPOnline : AADSTS65001: The user or administrator has not consented to use the application with ID'31359c7f-bd7e-475c-86db-fdb8c937548e' named 'PnP Management Shell'. Send an interactive authorization request for this user and resource
- Copy the following script in Notepad and save it as DisableCustomAppAuthentication.ps1 file.
param ( [parameter(Mandatory=$true)] [string]$Organization) Import-Module PnP.PowerShell $url = 'https://'+$Organization+'-admin.sharepoint.com' Write-Output $url $userCredential = Get-Credential Connect-PnPOnline -Url $url -Credential $userCredential get-PnPTenant Set-PnPTenant -DisableCustomAppAuthentication $false
Note:
From Data Insight 6.4, Application permissions scope will be used instead of Delegated permissions scope for authentication and authorization. Custom app authentication is disabled by default.
If DisableCustomAppAuthentication is set to false, Custom app authentication is enabled.
- Run the script using .\DisableCustomAppAuthentication.ps1
- When prompted, provide organization name.
- In the Windows Powershell Credential Request pop up, provide Global Administrator credentials and click Ok
- In the list of output, verify if the CustomAppAuthentication property is set to False.