I am using TiddlyWiki to concentrate all information about my work with scripting.
Its a reference for the scripts that I have built in Powershell and Command Line. Its all basically text, but... When I was copy pasting some of my Powershell scripts, I noticed that: "...Tiddlers that have links to them but are not defined..." were appearing on the left hand side menu under More|Missing. Here is an example of one of those scripts that created these items I'm talking about: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx $computer = gc env:computername $DT = Get-Date $emailFrom = "[email protected]" $emailTo = "[email protected]" $subject = "Restart initiated for $computer" $body = "The Server $computer is being Restarted at $DT plus 30 seconds" $smtpServer = "exchangeserver" $smtp = new-object Net.Mail.SmtpClient($smtpServer) $smtp.Send($emailFrom, $emailTo, $subject, $body) xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx In this case I get the following under Missing: Get-Date excangeserver SmtpClient Is there a way to put some character or a combination of, to ignore these created "Tiddler" references??? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

