scripts
10 TopicsCreating a website to display Powershell Script Output
Hi all, I have a quick query, thatI'mhoping someone might be able to help me with. I run a number of powershell scripts weekly (Inactive accounts,DA memebers, etc)and the output of each scriptis emailed tomy IT colleagues in either EXCEL or html format. I want to try and create a website, where the output of all these scripts are displayed onone or morepages. Where should I start with this? and how can I integrate powershell into HTML? Should i be looking at ASP.NET? Thanks BrendanSolved14KViews2likes3CommentsUpdated Automatic Australian RGS/Response Groups Holiday Sets v.2.20
Update19/05/2018 Released Version 2.2 to fix an issue with multiple pool selection, typos and even cleaning up my code with ISESteriods Aboutthe tool For those that don't know, I've been writing and maintaining this script for a few years over on TechNet This is a script that adds/maintains the relevant Australian Holidays to your Skype4B / Lync environment for the next 12 months based on data available from the Australian Government Website. I re-wrote most of the script from scratch and added a whole bunch of code to try and catch a lot of the errors etc that happened in the older versions.I’ve also tried to make it alot simpler to use for everyone that’s not me. Data is taken fromhttp://www.australia.gov.au/about-australia/special-dates-and-events/public-holidaysand I have done my best to be as error free as possible. Shout of toGreig in Sydneyfor beta testing and providing the red pen. That guy would have made a brilliant English teacher. Instructions Download, and run on a Frontend or any machine with the Lync / Skype4B management tools installed The script will attempt to detect your Skype4B Setup and proceed accordingly If it only detects a single FrontEnd it will prompt you to confirm the selected pool and then configure new Holiday sets Should it detect multiple pools it will ask you to confirm which pool to use and configure new Holiday sets If it finds Holiday sets with the same name they will automatically have any existing entriesremoved If you already have holiday sets with the name names or you need to add a country code. You can specify a string with the-RGSPrependparameter to prepend to the Holiday set names. Unattended (Scheduled Task) execution You can also use the script on a scheduled task to automatically pull and update the latest holidays on a monthly basis if your server has internet access. Simply specify -FrontEndPool <FEPoolFQDN> and -Unattended in the scheduled task. You can also still specify the-ServiceID and -Unattendedparameters at the commandline if you want to specify the ServiceID directly. UseGet-CsRgsConfiguration -Identity Frontend.Skype4bAdmin.comto see valid service id’s Note either of these options will disable script update checking. So it pays to check manually every now and again. Applying the Holiday sets After you have run the script, you can find the time frames in the Response Groups Editor, Simply tick the states you want the workflow closed for. Note: each of the states already includes the National holiday set, so there is no need to tick both. Fork Me As alot of my code is open source, I’ve moved from storing my Git repo on VSTS over to GitHub. Feel free to fork the code for your own purposes over here https://github.com/Atreidae/New-CsRgsAustralianHolidayList Advanced The default holiday set names are “National”,”Victoria”,”New South Wales”,”Queensland”,”ACT”,”Northern Territory”,”South Australia”,”Western Australia”,”Tasmania” If you need to change these for whatever reason update the following lines in the script 1 2 3 4 5 6 7 8 9 $National = $RGSPrepend+"National" $Vic = $RGSPrepend+"Victoria" $NSW = $RGSPrepend+"New South Wales" $QLD = $RGSPrepend+"Queensland" $ACT = $RGSPrepend+"ACT" $NT = $RGSPrepend+"Northern Territory" $SA = $RGSPrepend+"South Australia" $WA = $RGSPrepend+"Western Australia" $Tas = $RGSPrepend+"Tasmania" Version history Update19/05/2018 Released Version 2.2 Fixed a bug with logging system culture Removed some old redundant code Passed script through ISESteriods PSSharper and applied corrections Fixed a few typos Fixed a few bugs introduced cleaning up my dodgy code Fixed a bug with multiple pools using the same holiday set names Deprecated the ServiceID parameter, Specify the pool FQDN instead Added warning for deprecated ServiceID Updated Pat Richard's website Removed PowerShell 5.1 cmdlet (Get-Timezone), now using a WMI query instead Update11/05/2018 Released Version 2.1 with TLS 1.2 support Added Script logging Updated to use my new autoupdate code Added ability to switch between devel/master branches Added timezone offset detection / warning Added TLS 1.2 support for the new Govt website requirements Update09/10/2017 Released Version 2.0 with a Massive Overhaul, updated for 2018! Added Autodetecton of single RGS pool: Added Autodetecton of single RGS pool Complete Rewrite of existing rule rewrite code , Should make for alot less red text! More User friendly and better instructions Fixed a few typo’s causing dates to be incorrect. You no longer need to “Reassign” the holiday sets to response groups anymore. Update2/11/2016: Released Version 1.1 of the script. Fixed Onedrive download link Fix for Typo in Victora Holiday set causing import to fail Fix ForEach loop not correctly removing old time frames Fix Documentation not including the SID for ServiceID parameter Update26/09/2016: Fixed some Typo’s. ThanksGrieg6.7KViews1like1Comment