need a psh cmdlet

  • Thread starter William Stacey [C# MVP]
  • Start date
W

William Stacey [C# MVP]

Would be coolness to have a powershell cmdlet go against the object model so
you get typed params etc. And input files of known types without need fro
some crazy xml input file (i.e. word docs, excel, pictures, etc)

PS c:\> Out-OneNote -file mypic.jpg -folder MyFolder
PS c:\> Out-OneNote -clipboard
PS c:\> dir *.doc | out-onenote
 
J

Josh Einstein

OneNote doesn't really have much of an object model. It's mostly XML schema
in which case it's pretty easy to leverage the existing .NET classes
XmlDocument, XmlNamespaceManager, etc.

How about you write a cmdlet? :)

I'd like to see one that merges two OneNote notebooks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top