Notes.ini setting

We are getting ready to roll out 6.5.3 to all our users “2300”, and management don’t the user to get prompted for Sametime server login. There is a ini setting will disable all IM fuction within the notes client. I been working with a formula because the roll out will be don eusing a script to excute the setup.exe.

The formula I am trying to get to work is “@If(@Environment(IM_DISABLED)=”“; @SetEnvironment(“IM_DISABLED”;“1”); @Return(@Environment(“IM_DISABLED”)))”

but a $ get added to the setting. how can I make it so it does not add the $?

Thanks

Subject: Notes.ini setting

I don’t know that you can in formula. It was my understanding that any environment variable that was set via script or formula did get the $ prefix. It’s to differentiate user variables from system variables.

In script there are ways around that, via the issystemvar param of SetEnvironmentVar.

Subject: Thanks