Hi,
I have to create a report for the size's mailbox per user and i succeed to simple result in html. Now, I want to import jquery and add some classes. This is a test i show you..
Now this my script, I'm trying to import bootstrap and i'm thinking that's works but i can't see the changing...
This is my script :
$HTMLHeader = @"
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" media="all" href="css/boostrap.min.css" />
"@
Get-MailboxStatistics -Database "XXXXXX" | select displayname, itemcount, totalItemSize | ConvertTo-Html -head $HTMLHeader | Set-Content c:\bootstrap\test.html
the different folder of bootstrap are located in the root from my C:\bootstrap
As I said, I would like use differents classes like "hero-unit" and so on but my question is how can I import them into my scrip ?
Somebody can help ?
Thank you