Search This Blog

Friday, June 7, 2019

PowerShell Script Not Digitally Signed

PowerShell Script Not Digitally Signed

Run the below commands in the powershell


Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
“Bypass” means nothing is blocked and no warnings, prompts, or messages will be displayed.

Thursday, June 6, 2019

Upgrade Dynamics CRM 2016 on-premise to Dynamics 365

The required anti-forgery cookie "__RequestVerificationToken" is not present.

The required anti-forgery cookie "__RequestVerificationToken" is not present.

To solve this issue:
1)Check on the web config file
if you have
<httpCookies  requireSSL="true" httpOnlyCookies="true"/>
then remove the requireSSL=true
<httpCookies  httpOnlyCookies="true"/>

2) Check if you [ValidateAntiForgeryToken] attribute used in Get Method if used then removed it also.