Posts

How to remove Azure Access Package User assignments using Graph API?

Image
Are you looking to remove Access Package User assignments programmatically? You have come to the right place. I will walk you through the steps to remove a User assignment from the Access Package. Before we get into the procedure, I assume that you have an understanding of the following items. If not, please follow the links to learn. Azure Entitlement Management Microsoft Graph API for Entitlement Management Alright, straight to the point. How can I remove the user assignment? All you need is an A ssignment id . That's it. Use the below Graph API endpoint using the HTTP POST method with a request body as provided below. Make sure that you are feeding assignment id in the body. Http Method: POST Endpoint:  https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageAssignmentRequests Headers: content-type: application/json Body: { "accessPackageAssignment" : { "id" : " <<assignment

Nintex Forms (on-prem) Web Request Control Internals

Image
I would like to share my experience with Nintex Forms Web Request Control . It's a great Form control that everybody loves to use. However, I tried to do complex tasks based on that control and that is when it’s boundaries were revealed. In this post, I will explain what my objective was, how this control limited me and how I got around its limitations. Before that some nice things about this control Advantages This opens up the way to fetch the data from external data sources via HTTP protocol. Not only it provides the comfort of not having to write ajax code but also deals with the CORS issue that every ajax code has to face. How does it overcome CORS? Because it doesn’t request the external web service from the client/browser but rather requests the Nintex REST service ( /_vti_bin/NintexFormsServices/NfRestService.svc ) that is local to the current domain. Apparently, Nintex REST service does the talking with external web services behalf of the web request control. Amazing! Isn

npm ERR! self signed certificate in certificate chain

Run the below command to overcome this error. npm config set strict - ssl false

Nintex Forms - People control display issue in repeater section

Issue : When a People control is added in a repeater section, user suggestions drop down would be buried within repeater section instead of overlaying it. Resolution : Add the following CSS to the form. div .nf-repeater.nf-droppable-container { overflow : visible !important ; } NOTE: This issue seems to be fixed in Nintex Forms 2.10.1.0

List of SharePoint 2010 Services

Forms Service Access Services Secure Store Service State Service Microsoft SharePoint Foundation Web Application Central Administration SSP Job Control Service PerformancePoint Service Visio Graphics Service Managed Metadata Web Service Microsoft SharePoint Foundation Administration User Profile Synchronization Service Web Analytics Web Service Microsoft SharePoint Foundation Database Portal Service Microsoft SharePoint Foundation Sandboxed Code Service Microsoft SharePoint Server Diagnostics Service Microsoft SharePoint Foundation Tracing SharePoint Server Search Microsoft SharePoint Foundation Timer Document Conversions Load Balancer Service Excel Calculation Services Security Token Service Application Discovery and Load Balancer Service Microsoft SharePoint Foundation Usage Microsoft SharePoint Foundation Subscription Settings Service Search Administration Web Service SharePoint Foundation Search Word Automation Services Claims to Windows Token Serv

SharePoint 2010 Search - search by enterprise keywords

Image
SharePoint 2010 search has the capability to maintain enterprise tagging centrally with managed metadata service. We can have enterprise keywords hanging in the search centre refinement panel to improve the search experience. However, I was stuck in searching the capability to add query term for enterprise keywords in search centre. So I've dug into metadata properties and found out the suitable metadata property. i.e. TaxKeyword Now go to search centre and type the following query phrase http://searchcentre/pages/default.aspx?k= TaxKeyword:"Microsoft" Now you can get the results by the tag "Microsoft". Have a happy tag searching!!
Error while running the power shell script file You may be facing the following error while running the power shell script file. xxx.ps1 cannot be loaded because the execution of scripts is disabled on this system Resolution: Run the following command on your power shell script console and enjoy running the script file. Set-ExecutionPolicy “bypass” *If you get “ Access denied or unauthorized error ” make sure that you are running power shell console in administration mode.