Notes Page / Import Existing Data from CSV

Hi Folks,

i was playing with Importing a several hundert Objects. RTS should repalce a bunch of Password Collections. So far with the powershell Module so far it was going well.

Now a have additional Information in Text Format which ich would store in the “Notes Page” (in my case a parent Folder.

so long i did not find out howto manage that. Is there a way to do that?

kind regarts Andreas

Hi Andreas!

You should be able to set the “Notes” property of the object/folder. Did you try that?

Regards,
Stefan

Hi Stefan, thx for replay.

Yes, I just gave em a try. Nothing will be Imported, there is also no error from ps. Within the Royal Reference the Royal Folder Object is a Bool object not a string one..

Royal Object prperties

Andreas

Hi Andreas!

The “Notes” property is missing in the docs. The “NotesFromParent” property is a boolean which only indicates if the notes from the parent folder will be inherited. So to write to the actual “Notes” property of the parent folder, you need to have a reference of that folder in a variable (assuming it is called $parentFolder):

$parentFolder.Notes = "Your notes in HTML goes here"

Regards,
Stefan

thx for this hint,

Problems solved..

Andreas

You’re welcome!

cheers,
Stefan