Which IIQ version are you inquiring about?
Version 8.3
Share all details related to your problem, including any error messages you may have received.
Hi,
I have a Rule which executes some PowerShell scripts. That that I have first added the Utils.dll path. This path is working correctly when I write below line in the rule:
Add-type -path D:\IQService\Utils.dll
But for the purpose of Tokenization I created targe.properties file for Stage and Prod with below content in stage target.properties file:
%%RulePowerShellMailboxCreation-DLL%%=D:\IQService\Utils.dll
In the rule, I added token as shown below:
Add-type -path %%RulePowerShellMailboxCreation-DLL%%;
Now when I run the CICD Build process, the deployed Rule shows the path like:
Add-type -path D:IQServiceUtils.dll;
Means after the deployment back slash () is removed.
Then I thought to add double slash (\) in the path like below:
%%RulePowerShellMailboxCreation-DLL%%=D:\IQService\Utils.dll
But still the deployed rule is not showing the correct path.
What is the correct way to write target.properties file show that the backslash appear in the deployed rule.
Thanks