How to open a file using lotusscript in windows

Simply use command prompt command.
This is an example of how you open the file named temp.txt that is located in the C drive:
Dim shellresult as Variant shellresult = Shell (“cmd /c start C:\temp.txt”)

Manipulating windows Registry by lotusscript

I have seen many posts in Lotus Notes 6 and 7 forum and other places asking how to add or remove values in windows registry using lotusscript. The solutions suggested usually involve many lines of code and knowledge of windows APIs. After some thought, I found a simpler way to achieve the same thing and [...]