<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>BoxStarter Wiki Rss Feed</title><link>https://boxstarter.codeplex.com/</link><description>BoxStarter Wiki Rss Description</description><item><title>Updated Wiki: About Boxstarter.Chocolatey</title><link>https://boxstarter.codeplex.com/wikipage?title=About Boxstarter.Chocolatey&amp;version=4</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;TOPIC&lt;/b&gt;&lt;br /&gt;	About&lt;i&gt;Boxstarter&lt;/i&gt;Chocolatey&lt;br /&gt;&lt;br /&gt;&lt;b&gt;SYNOPSIS&lt;/b&gt;&lt;br /&gt;	Describes how to use Boxstarter&amp;#39;s Chocolatey module to setup a new &lt;br /&gt;	environment with your favorite Chocolatey packages.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DESCRIPTION&lt;/b&gt;&lt;br /&gt;	Boxstarter&amp;#39;s Chocolatey module compliments the Boxstarter Bootstrap &lt;br /&gt;	module by augmenting its unattended script execution environment &lt;br /&gt;	with Chocolatey goodness making it easy to setup a new box with &lt;br /&gt;	Chocolatey packages.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Installing Chocolatey&lt;/b&gt;&lt;br /&gt;	Boxstarter will check to ensure if Chocolatey is installed. If &lt;br /&gt;	Chocolatey is not installed it will install it before running any &lt;br /&gt;	Chocolatey commands. Boxstarter will also check to see if the .Net &lt;br /&gt;	4.0 Framework is installed before installing Chocolatey since the &lt;br /&gt;	.Net 4 runtime is a prerequisite.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Chocolatey Boxstarter Packages&lt;/b&gt;&lt;br /&gt;	When calling Invoke-ChocolateyBoxstarter or just Boxstarter, a &lt;br /&gt;	BootstrapperPackage name must be passed to the command. This is a &lt;br /&gt;	special Chocolatey package provided by the user that boxstarter asks &lt;br /&gt;	Chocolatey to install and it contains the script that is intended to &lt;br /&gt;	install all the applications and settings the user wants setup on the &lt;br /&gt;	local machine.&lt;br /&gt;&lt;br /&gt;	This package script has access to all of the Chocolatey helper &lt;br /&gt;	functions as well as all Boxstarter logging, WinConfig and &lt;br /&gt;	Bootstrapper commands. See About&lt;i&gt;Boxstarter&lt;/i&gt;Bootstrapper and &lt;br /&gt;	About&lt;i&gt;Boxstarter&lt;/i&gt;Logging for information regarding those comands.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Creating Packages&lt;/b&gt;&lt;br /&gt;	Boxstarter provides some functions to make creation and deployment of &lt;br /&gt;	packages easy. Use New-BoxstarterPackage to either create a skeleton &lt;br /&gt;	package with a minimal nuspec and ChocolateyInstall.ps1 or to import an &lt;br /&gt;	existing package into boxstarter. This will put the package source files &lt;br /&gt;	in $($Boxstarter.LocalRepo)\&amp;lt;package name&amp;gt;. To pack these source files&lt;br /&gt;	use Invoke-BoxstarterBuild &amp;lt;package name&amp;gt;. You may also pack all package&lt;br /&gt;	in your repo with Invoke-BoxstarterBuild -all. If you would like to make&lt;br /&gt;	your local repo a network share, use Set-BoxstarterShare. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Consuming Boxstarter Packages&lt;/b&gt;&lt;br /&gt;	The primary gateway to kicking off a Boxstarter.Chocolatey installation &lt;br /&gt;	session is Invoke-ChocolateyBoxstarter. While you may use this &lt;br /&gt;	powershell function, you can also call Boxstarter.bat which takes the &lt;br /&gt;	exact same parameters as Invoke-CocolateyBoxstarter. If you installed &lt;br /&gt;	Boxstarter.Chocolatey via Chocolatey or the setup.bat installer, &lt;br /&gt;	boxstarter.bat is placed in your path. Boxstarter.bat will import the &lt;br /&gt;	Boxstarter.Chocolatey module and create a powershell session bypassing &lt;br /&gt;	ExecutionPolicy. Boxstarter.bat is ideal for calling Boxstarter &lt;br /&gt;	remotely. Simply share the Boxstarter base directory and you can access &lt;br /&gt;	it via \\serverName\Boxstarter\Boxstarter.bat.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package Sources&lt;/b&gt;&lt;br /&gt;	Invoke-ChocolateyBoxstarter (or Boxstarter) expects just the name of the&lt;br /&gt;	bootstrapping package - just like CINST or Nuget. Boxstarter will search&lt;br /&gt;	the following locations in this order:&lt;br /&gt;&lt;br /&gt;	- $Boxstarter.LocalRepo: This is the local repository that by default is&lt;br /&gt;	in the BuildPackages directory in the Boxstarter Base Boxstarter Module &lt;br /&gt;	directory ($Boxstarter.BaseDir). You can change the default by adding a &lt;br /&gt;	LocalRepo setting to $($Boxstarter.BaseDir)\Boxstarter.Config.&lt;br /&gt;&lt;br /&gt;	- Chocolatey.org: The public chocolatey feed at http://chocolatey.org/api/v2&lt;br /&gt;&lt;br /&gt;	- Myget: The Boxstarter Community Feed at http://www.myget.org/F/boxstarter/api/v2&lt;br /&gt;&lt;br /&gt;	The last two remote sources can be configured by editing &lt;br /&gt;	$($Boxstarter.BaseDir)\Boxstarter.Config.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reboot Detection&lt;/b&gt;&lt;br /&gt;	Perhaps the most compelling feature of Boxstarter is its way to handle &lt;br /&gt;	reboots during an involved environment setup package. Especially when &lt;br /&gt;	you are running patches, installing services and downloading complex &lt;br /&gt;	applications. Boxstarter intercepts all calls to Chocolatey install &lt;br /&gt;	commands and checks for pending reboots prior to calling Chocolatey. If &lt;br /&gt;	a pending reboot exists, Boxstarter reboots the machine and automatically&lt;br /&gt;	logs on with the credentials you provided providing an unattended &lt;br /&gt;	installation session. After the Chocolatey package completes, if the &lt;br /&gt;	package fails and returns the common MSI reboot needed exit code of &lt;br /&gt;	3010, Boxstarter will reboot which will likely cause the package to &lt;br /&gt;	succeed on the next run. See about&lt;i&gt;boxstarter&lt;/i&gt;bootstrapper for more &lt;br /&gt;	details about the rebooting logic and how you can disable or manually &lt;br /&gt;	invoke them.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package Authoring Considerations&lt;/b&gt;&lt;br /&gt;	Boxstarter can run any Chocolatey package and any valid powershell &lt;br /&gt;	inside that package. However, there are a few things to consider &lt;br /&gt;	that may make a Boxstarter Chocolatey package a better installation &lt;br /&gt;	experience.&lt;br /&gt;&lt;br /&gt;	- Boxstarter Chocolatey packages should be repeatable. This is &lt;br /&gt;	especially true if you anticipate the need to reboot. When Boxstarter &lt;br /&gt;	reboots, it starts running the package from the beginning. So ensure &lt;br /&gt;	that there is nothing that would cause the package to break if run &lt;br /&gt;	twice.&lt;br /&gt;&lt;br /&gt;	- If you have several Chocolatey packages that you want to install &lt;br /&gt;	during the Boxstarter session, it is preferable to call CINST &lt;br /&gt;	directly from inside your ChocolateyInstall instead of declaring &lt;br /&gt;	them as dependencies. This is because Boxstarter cannot intercept &lt;br /&gt;	Chocolatey dependencies so those packages will not have any reboot &lt;br /&gt;	protections.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;SEE ALSO&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;Invoke-Reboot&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;New-BoxstarterPackage&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20the%20%24boxstarter%20variable%20in%20bootstrapper&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;about the &amp;#36;boxstarter variable in bootstrapper&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20the%20%24boxstarter%20variable%20in%20chocolatey&amp;referringTitle=About%20Boxstarter.Chocolatey"&gt;about the &amp;#36;boxstarter variable in chocolatey&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gep13</author><pubDate>Thu, 16 May 2013 10:31:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: About Boxstarter.Chocolatey 20130516103132A</guid></item><item><title>Updated Wiki: Invoke-ChocolateyBoxstarter</title><link>https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;version=4</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Invoke-ChocolateyBoxstarter&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Invokes the installation of a Boxstarter package&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Invoke-ChocolateyBoxstarter &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-bootstrapPackage&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;&amp;#91;-bootstrapPackage&lt;/a&gt; &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-localRepo&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;&amp;#91;-localRepo&lt;/a&gt;&lt;br /&gt;    &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=-DisableReboots&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;-DisableReboots&lt;/a&gt; &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;This essentially wraps Chocolatey Install and provides these additional features
&lt;ul&gt;&lt;li&gt;Installs chocolatey if it is not already installed&lt;/li&gt;
&lt;li&gt;Installs the .net 4.0 framework if it is not installed which is a chocolatey requirement&lt;/li&gt;
&lt;li&gt;Turns off the windows update service during installation to prevent installation conflicts and minimize the need for reboots&lt;/li&gt;
&lt;li&gt;Imports the Boxstarter.WinConfig module that provides functions for customizing windows&lt;/li&gt;
&lt;li&gt;Provides Reboot Resiliency by ensuring the package installation is immediately restarted up on reboot if there is a reboot during the installation.&lt;/li&gt;
&lt;li&gt;Ensures everything runs under admin&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt; The .nupkg file for the provided package name is searched in the following locations and order:
&lt;ul&gt;&lt;li&gt;.\BuildPackages relative to the parent directory of the module file&lt;/li&gt;
&lt;li&gt;The chocolatey feed&lt;/li&gt;
&lt;li&gt;The boxstarter feed on myget&lt;/li&gt;&lt;/ul&gt;
 This can be configured by editing $($Boxstarter.BaseDir)\Boxstarter.Config&lt;br /&gt;&lt;br /&gt; &lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;BootstrapPackage&lt;/h3&gt; The package to be installed.&lt;br /&gt; The .nupkg file for the provided package name is searched in the following locations and order:
&lt;ul&gt;&lt;li&gt;.\BuildPackages relative to the parent directory of the module file&lt;/li&gt;
&lt;li&gt;The chocolatey feed&lt;/li&gt;
&lt;li&gt;The boxstarter feed on myget&lt;/li&gt;&lt;/ul&gt;

&lt;h3&gt;Localrepo&lt;/h3&gt;This is the path to the local boxstarter repository where boxstarter &lt;br /&gt;should look for .nupkg files to install. By default this is located &lt;br /&gt;in the BuildPackages directory just under the root Boxstarter &lt;br /&gt;directory.&lt;br /&gt;
&lt;h3&gt;DisableReboots&lt;/h3&gt;If set, reboots are suppressed.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Invoke&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyBoxstarter example
&lt;/pre&gt;&lt;/div&gt;This invokes boxstarter and installs the example .nupkg. In pending &lt;br /&gt;reboots are detected, boxstarter will restart the machine. Boxstarter&lt;br /&gt;will prompt the user to enter a password which will be used for &lt;br /&gt;automatic logins in the event a restart is required.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Invoke&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyBoxstarter win8Install &lt;span style="color:Gray;"&gt;-&lt;/span&gt;LocalRepo \\server\share\boxstarter
&lt;/pre&gt;&lt;/div&gt;This installs the Win8Install .nupkg and specifies that it is ok to &lt;br /&gt;reboot the macine if a pending reboot is needed. Boxstarter will look &lt;br /&gt;for the Win8Install .nupkg file in the \\serer\share\boxstarter &lt;br /&gt;directory.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter.chocolatey&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;about boxstarter.chocolatey&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Invoke-ChocolateyBoxstarter"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gep13</author><pubDate>Thu, 16 May 2013 10:24:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Invoke-ChocolateyBoxstarter 20130516102417A</guid></item><item><title>Updated Wiki: Set-BoxstarterShare</title><link>https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;version=3</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Set-BoxstarterShare&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Shares the Boxstarter root directory - $Boxstarter.BaseDir&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Set-BoxstarterShare &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-shareName&amp;referringTitle=Set-BoxstarterShare"&gt;&amp;#91;-shareName&lt;/a&gt; &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-accounts&amp;referringTitle=Set-BoxstarterShare"&gt;&amp;#91;-accounts&lt;/a&gt; &amp;lt;String[]&amp;gt;]&lt;br /&gt;    &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Set-BoxstarterShare"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Shares the Boxstarter root directory - $Boxstarter.BaseDir - so that &lt;br /&gt;it can be accessed remotely. This allows remote machines to Invoke &lt;br /&gt;ChocolateyBoxstarter via \\server\shareName\Boxstarter.bat. Unless &lt;br /&gt;specified otherwise, the share name is Boxstarter and Everyone is &lt;br /&gt;given Read permisions.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;ShareName&lt;/h3&gt;The name to give to the share. This is the name by which other &lt;br /&gt;machines can access it. Boxstarter is he default.&lt;br /&gt;
&lt;h3&gt;Accounts&lt;/h3&gt;A ist of accounts to be given read access to the share. Everyone is &lt;br /&gt;the default.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterShare
&lt;/pre&gt;&lt;/div&gt;Shares the Boxstarter root as Boxstarter to everyone.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterShare BuildRepo
&lt;/pre&gt;&lt;/div&gt;Shares the Boxstrarter Root as BuildRepo to everyone.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterShare &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Accounts &lt;span style="color:#A31515;"&gt;&amp;quot;corp\mwrock&amp;quot;&lt;/span&gt;,&lt;span style="color:#A31515;"&gt;&amp;quot;corp\gmichaels&amp;quot;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;Shares the Boxstarter root as Boxstarter to mwrock and gmichaels in the corp domain.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter.chocolatey&amp;referringTitle=Set-BoxstarterShare"&gt;about boxstarter.chocolatey&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Set-BoxstarterShare"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Set-BoxstarterShare"&gt;New-BoxstarterPackage&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Set-BoxstarterShare"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gep13</author><pubDate>Thu, 16 May 2013 10:23:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Set-BoxstarterShare 20130516102353A</guid></item><item><title>Updated Wiki: Home</title><link>https://boxstarter.codeplex.com/wikipage?version=29</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;BoxStarter&lt;/h1&gt;Creates a fresh .Net developer environment from a bare OS utilizing powershell and chocolatey.&lt;br /&gt;
&lt;h2&gt;Windows development environment creation made easy!&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;100% Unattended Install with pending reboot detection and automatic logon.&lt;/li&gt;
&lt;li&gt;Lots of Windows configuration utilities including installing critical updates, changing windows explorer options, and more.&lt;/li&gt;
&lt;li&gt;Easily installs to a Thumb drive or Set-BoxstarterShare to share it on your network.&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Build your Uber Geek Environment&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Green;"&gt;#After extracting Boxstarter.1.0.0.zip on MYCOMPUTER&lt;/span&gt;
.\setup.bat
Import&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Module &lt;span style="color:OrangeRed;"&gt;$env:appdata&lt;/span&gt;\boxstarter\Boxstarter.Chocolatey\Boxstarter.Chocolatey.psd1
&lt;span style="color:Green;"&gt;#Create minimal nuspec and chocolateyInstall&lt;/span&gt;
New&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterPackage MyPackage
&lt;span style="color:Green;"&gt;#Edit Install script to customize your environment&lt;/span&gt;
Notepad (Join&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Path &lt;span style="color:OrangeRed;"&gt;$Boxstarter&lt;/span&gt;.LocalRepo &lt;span style="color:#A31515;"&gt;&amp;quot;MyPackage\tools\ChocolateyInstall.ps1&amp;quot;&lt;/span&gt;)
&lt;span style="color:Green;"&gt;#Pack nupkg&lt;/span&gt;
Invoke&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterBuild MyPackage

&lt;span style="color:Green;"&gt;#share Repo&lt;/span&gt;
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterShare
&lt;span style="color:Green;"&gt;#Or Copy to thumb drive G&lt;/span&gt;
Copy&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Item &lt;span style="color:OrangeRed;"&gt;$Boxstarter&lt;/span&gt;.BaseDir G:\ &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Recurse

&lt;span style="color:Green;"&gt;#on new bare os&lt;/span&gt;
\\MYCOMPUTER\Boxstarter\Boxstarter Mypackage
 
&lt;span style="color:Green;"&gt;#Enter password when prompted and come back later to new box&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h2&gt;Here is an example developer chocolateyInstall.ps1:&lt;/h2&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;WindowsUpdate &lt;span style="color:Gray;"&gt;-&lt;/span&gt;AcceptEula
Update&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ExecutionPolicy Unrestricted
Move&lt;span style="color:Gray;"&gt;-&lt;/span&gt;LibraryDirectory &lt;span style="color:#A31515;"&gt;&amp;quot;Personal&amp;quot;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;quot;$env:UserProfile\skydrive\documents&amp;quot;&lt;/span&gt;
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ExplorerOptions &lt;span style="color:Gray;"&gt;-&lt;/span&gt;showHidenFilesFoldersDrives &lt;span style="color:Gray;"&gt;-&lt;/span&gt;showProtectedOSFiles &lt;span style="color:Gray;"&gt;-&lt;/span&gt;showFileExtensions
Set&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TaskbarSmall
Enable&lt;span style="color:Gray;"&gt;-&lt;/span&gt;RemoteDesktop

cinstm VisualStudio2012Ultimate
&lt;span style="color:Blue;"&gt;if&lt;/span&gt;((Get&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Item &lt;span style="color:#A31515;"&gt;&amp;quot;$($Boxstarter.programFiles86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe&amp;quot;&lt;/span&gt;).VersionInfo.ProductVersion &lt;span style="color:Gray;"&gt;-lt&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;quot;11.0.60115.1&amp;quot;&lt;/span&gt;) {
    &lt;span style="color:Blue;"&gt;if&lt;/span&gt;(Test&lt;span style="color:Gray;"&gt;-&lt;/span&gt;PendingReboot){Invoke&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Reboot}
    Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPackage &lt;span style="color:#A31515;"&gt;&amp;#39;vs update 2 ctp2&amp;#39;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;#39;exe&amp;#39;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;#39;/passive /norestart&amp;#39;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;#39;http://download.microsoft.com/download/8/9/3/89372D24-6707-4587-A7F0-10A29EECA317/vsupdate_KB2707250.exe&amp;#39;&lt;/span&gt;
}
cinstm fiddler
cinstm mssqlserver2012express
cinstm git&lt;span style="color:Gray;"&gt;-&lt;/span&gt;credential&lt;span style="color:Gray;"&gt;-&lt;/span&gt;winstore
cinstm console&lt;span style="color:Gray;"&gt;-&lt;/span&gt;devel
cinstm sublimetext2
cinstm skydrive
cinstm poshgit
cinstm dotpeek
cinstm googlechrome
cinstm Paint.net
cinstm windirstat
cinstm sysinternals
cinstm NugetPackageExplorer
cinstm resharper
cinstm windbg

cinst Microsoft&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Hyper&lt;span style="color:Gray;"&gt;-&lt;/span&gt;V&lt;span style="color:Gray;"&gt;-&lt;/span&gt;All &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsFeatures
cinst IIS&lt;span style="color:Gray;"&gt;-&lt;/span&gt;WebServerRole &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsfeatures
cinst IIS&lt;span style="color:Gray;"&gt;-&lt;/span&gt;HttpCompressionDynamic &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsfeatures
cinst IIS&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ManagementScriptingTools &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsfeatures
cinst IIS&lt;span style="color:Gray;"&gt;-&lt;/span&gt;WindowsAuthentication &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsfeatures
cinst TelnetClient &lt;span style="color:Gray;"&gt;-&lt;/span&gt;source windowsFeatures

&lt;span style="color:OrangeRed;"&gt;$sublimeDir&lt;/span&gt; &lt;span style="color:Gray;"&gt;=&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;quot;$env:programfiles\Sublime Text 2&amp;quot;&lt;/span&gt;

Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPinnedTaskBarItem &lt;span style="color:#A31515;"&gt;&amp;quot;$env:windir\system32\mstsc.exe&amp;quot;&lt;/span&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPinnedTaskBarItem &lt;span style="color:#A31515;"&gt;&amp;quot;$env:programfiles\console\console.exe&amp;quot;&lt;/span&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPinnedTaskBarItem &lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\sublime_text.exe&amp;quot;&lt;/span&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPinnedTaskBarItem &lt;span style="color:#A31515;"&gt;&amp;quot;$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe&amp;quot;&lt;/span&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyPinnedTaskBarItem &lt;span style="color:#A31515;"&gt;&amp;quot;$($Boxstarter.programFiles86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe&amp;quot;&lt;/span&gt;

Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyFileAssociation &lt;span style="color:#A31515;"&gt;&amp;quot;.txt&amp;quot;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;quot;$env:programfiles\Sublime Text 2\sublime_text.exe&amp;quot;&lt;/span&gt;
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyFileAssociation &lt;span style="color:#A31515;"&gt;&amp;quot;.dll&amp;quot;&lt;/span&gt; &lt;span style="color:#A31515;"&gt;&amp;quot;$($Boxstarter.ChocolateyBin)\dotPeek.bat&amp;quot;&lt;/span&gt;

&lt;span style="color:Blue;"&gt;if&lt;/span&gt;(!(Test&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Path(&lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\data&amp;quot;&lt;/span&gt;)){mkdir &lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\data&amp;quot;&lt;/span&gt;}
copy&lt;span style="color:Gray;"&gt;-&lt;/span&gt;item (Join&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Path (Get&lt;span style="color:Gray;"&gt;-&lt;/span&gt;PackageRoot(&lt;span style="color:OrangeRed;"&gt;$MyInvocation&lt;/span&gt;)) &lt;span style="color:#A31515;"&gt;&amp;#39;sublime\*&amp;#39;&lt;/span&gt;) &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Force &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Recurse &lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\data&amp;quot;&lt;/span&gt;
move&lt;span style="color:Gray;"&gt;-&lt;/span&gt;item &lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\data\Pristine Packages\*&amp;quot;&lt;/span&gt; &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Force &lt;span style="color:#A31515;"&gt;&amp;quot;$sublimeDir\Pristine Packages&amp;quot;&lt;/span&gt;
copy&lt;span style="color:Gray;"&gt;-&lt;/span&gt;item (Join&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Path (Get&lt;span style="color:Gray;"&gt;-&lt;/span&gt;PackageRoot(&lt;span style="color:OrangeRed;"&gt;$MyInvocation&lt;/span&gt;)) &lt;span style="color:#A31515;"&gt;&amp;#39;console.xml&amp;#39;&lt;/span&gt;) &lt;span style="color:Gray;"&gt;-&lt;/span&gt;Force &lt;span style="color:OrangeRed;"&gt;$env:appdata&lt;/span&gt;\console\console.xml

Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyVsixPackage xunit http:&lt;span style="color:Gray;"&gt;/&lt;/span&gt;&lt;span style="color:Gray;"&gt;/&lt;/span&gt;visualstudiogallery.msdn.microsoft.com&lt;span style="color:Gray;"&gt;/&lt;/span&gt;463c5987&lt;span style="color:Gray;"&gt;-&lt;/span&gt;f82b&lt;span style="color:Gray;"&gt;-&lt;/span&gt;46c8&lt;span style="color:Gray;"&gt;-&lt;/span&gt;a97e&lt;span style="color:Gray;"&gt;-&lt;/span&gt;b1cde42b9099&lt;span style="color:Gray;"&gt;/&lt;/span&gt;file&lt;span style="color:Gray;"&gt;/&lt;/span&gt;66837&lt;span style="color:Gray;"&gt;/&lt;/span&gt;1&lt;span style="color:Gray;"&gt;/&lt;/span&gt;xunit.runner.visualstudio.vsix
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyVsixPackage autowrocktestable http:&lt;span style="color:Gray;"&gt;/&lt;/span&gt;&lt;span style="color:Gray;"&gt;/&lt;/span&gt;visualstudiogallery.msdn.microsoft.com&lt;span style="color:Gray;"&gt;/&lt;/span&gt;ea3a37c9&lt;span style="color:Gray;"&gt;-&lt;/span&gt;1c76&lt;span style="color:Gray;"&gt;-&lt;/span&gt;4628&lt;span style="color:Gray;"&gt;-&lt;/span&gt;803e&lt;span style="color:Gray;"&gt;-&lt;/span&gt;b10a109e7943&lt;span style="color:Gray;"&gt;/&lt;/span&gt;file&lt;span style="color:Gray;"&gt;/&lt;/span&gt;73131&lt;span style="color:Gray;"&gt;/&lt;/span&gt;1&lt;span style="color:Gray;"&gt;/&lt;/span&gt;AutoWrockTestable.vsix
Install&lt;span style="color:Gray;"&gt;-&lt;/span&gt;ChocolateyVsixPackage vscommands http:&lt;span style="color:Gray;"&gt;/&lt;/span&gt;&lt;span style="color:Gray;"&gt;/&lt;/span&gt;visualstudiogallery.msdn.microsoft.com&lt;span style="color:Gray;"&gt;/&lt;/span&gt;a83505c6&lt;span style="color:Gray;"&gt;-&lt;/span&gt;77b3&lt;span style="color:Gray;"&gt;-&lt;/span&gt;44a6&lt;span style="color:Gray;"&gt;-&lt;/span&gt;b53b&lt;span style="color:Gray;"&gt;-&lt;/span&gt;73d77cba84c8&lt;span style="color:Gray;"&gt;/&lt;/span&gt;file&lt;span style="color:Gray;"&gt;/&lt;/span&gt;74740&lt;span style="color:Gray;"&gt;/&lt;/span&gt;18&lt;span style="color:Gray;"&gt;/&lt;/span&gt;SquaredInfinity.VSCommands.VS11.vsix
&lt;/pre&gt;&lt;/div&gt;&lt;h2&gt;Leveraging Chocolatey Goodness&lt;/h2&gt;The BoxStarter code base has undergone a major reorganization over the past few months in collaboration with Rob Reynolds&amp;#39; awesome Windows Package manager: &lt;b&gt;&lt;a href="http://chocolatey.org"&gt;Chocolatey&lt;/a&gt;&lt;/b&gt;. Much of BoxStarter&amp;#39;s functionality has been improved and ported over directly into the Chocolatey repository as of release 0.9.8.20.&lt;br /&gt;
&lt;h3&gt;Functionality now in Chocolatey includes:&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Creating task bar shortcuts, file associations and windows explorer context menu items.&lt;/li&gt;
&lt;li&gt;Adding any &amp;quot;windows feature&amp;quot; available to the OS&lt;/li&gt;
&lt;li&gt;Installing Visual Studio extensions&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;You can create and save BoxStarter packages for different types of installations to suit your distinct needs. The package format follows the Nuget specification so you can save them on your favorite public or private feed. By default, boxstarter searches the local &amp;quot;BuildPackages&amp;quot; folder in the Boxstarter repo, the Chocolatey Nuget Feed, and the MyGet Boxstarter feed.&lt;br /&gt;
&lt;h2&gt;Get More Information&lt;/h2&gt;See the &lt;a href="https://boxstarter.codeplex.com/documentation?referringTitle=Home"&gt;Documentation&lt;/a&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Import&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Module Boxstarter.Chocolatey
Get&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Help Boxstarter
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Sun, 12 May 2013 04:57:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130512045753A</guid></item><item><title>Updated Wiki: Test-PendingReboot</title><link>http://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;version=3</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Test-PendingReboot&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Checks to see if Windows is pending a reboot&lt;br /&gt;&lt;br /&gt;!!SYNTAX&lt;br /&gt;    Test-PendingReboot &lt;a href="http://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Test-PendingReboot"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Uses a script from Brian Wilhite &lt;br /&gt;&lt;a href="http://boxstarter.codeplex.com/wikipage?title=http%3a%2f%2fgallery.technet.microsoft.com%2fscriptcenter%2fGet-PendingReboot-Query-bdb79542&amp;referringTitle=Test-PendingReboot"&gt;http&amp;#58;&amp;#47;&amp;#47;gallery.technet.microsoft.com&amp;#47;scriptcenter&amp;#47;Get-PendingReboot-Query-bdb79542&lt;/a&gt; &lt;br /&gt;that queries the registry, Windows Update and System C&lt;br /&gt;onfiguration Manager to determine if a pending reboot is &lt;br /&gt;required.&lt;br /&gt;&lt;br /&gt;One may want to check this before installing software &lt;br /&gt;or doing anything that may fail if there is a pending &lt;br /&gt;reboot. If this command returns $true, one may want to&lt;br /&gt;call Invoke-Reboot to restart the local machine.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="http://boxstarter.codeplex.com/wikipage?title=http%3a%2f%2fgallery.technet.microsoft.com%2fscriptcenter%2fGet-PendingReboot-Query-bdb79542&amp;referringTitle=Test-PendingReboot"&gt;http&amp;#58;&amp;#47;&amp;#47;gallery.technet.microsoft.com&amp;#47;scriptcenter&amp;#47;Get-PendingReboot-Query-bdb79542&lt;/a&gt;&lt;br /&gt;&lt;a href="http://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Test-PendingReboot"&gt;Invoke-Reboot&lt;/a&gt;&lt;br /&gt;&lt;a href="http://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20bootstrapper&amp;referringTitle=Test-PendingReboot"&gt;about boxstarter bootstrapper&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 28 Mar 2013 06:47:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Test-PendingReboot 20130328064758A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=32</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=Documentation"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Out-BoxstarterLog&amp;referringTitle=Documentation"&gt;Out-BoxstarterLog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;referringTitle=Documentation"&gt;Start-TimedSection&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Stop-TimedSection&amp;referringTitle=Documentation"&gt;Stop-TimedSection&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Write-BoxstarterMessage&amp;referringTitle=Documentation"&gt;Write-BoxstarterMessage&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:25:21 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314052521A</guid></item><item><title>Updated Wiki: Write-BoxstarterMessage</title><link>https://boxstarter.codeplex.com/wikipage?title=Write-BoxstarterMessage&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Write-BoxstarterMessage&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Writes a message to the console and the log&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Write-BoxstarterMessage &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-message&amp;referringTitle=Write-BoxstarterMessage"&gt;&amp;#91;-message&lt;/a&gt; &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=-nologo&amp;referringTitle=Write-BoxstarterMessage"&gt;-nologo&lt;/a&gt;&lt;br /&gt;    &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Write-BoxstarterMessage"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Formats the message in green. This message is also logged to the &lt;br /&gt;Boxstarter log file with a timestamp.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;Message&lt;/h3&gt;The string to be logged&lt;br /&gt;
&lt;h3&gt;NoLogo&lt;/h3&gt;If ommited, the message will be preceeded with &amp;quot;Boxstarter: &amp;quot;&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=code%3apowershell%7d%0aWrite-BoxstarterMessage%20%22I%20am%20logging%20a%20message.%22%0a%5bcode%3apowershell%7d%0aThis%20creates%20the%20following%20console%20output%3a%0aBoxstarter%3a%20I%20am%20Logging%20a%20Message%0a%0aThis%20will%20appear%20in%20the%20log%3a%0a%5b2013-02-11T00%3a59%3a44.9768457-08%3a00&amp;referringTitle=Write-BoxstarterMessage"&gt;code&amp;#58;powershell&amp;#125;&lt;br /&gt;Write-BoxstarterMessage &amp;#34;I am logging a message.&amp;#34;&lt;br /&gt;&amp;#91;code&amp;#58;powershell&amp;#125;&lt;br /&gt;This creates the following console output&amp;#58;&lt;br /&gt;Boxstarter&amp;#58; I am Logging a Message&lt;br /&gt;&lt;br /&gt;This will appear in the log&amp;#58;&lt;br /&gt;&amp;#91;2013-02-11T00&amp;#58;59&amp;#58;44.9768457-08&amp;#58;00&lt;/a&gt; Boxstarter: I am Logging a Message&lt;br /&gt;
&lt;h2&gt;NOTES&lt;/h2&gt;If the SuppressLogging setting of the $Boxstarter variable is true, &lt;br /&gt;logging mesages will be suppresed and not sent to the console or the &lt;br /&gt;log.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Write-BoxstarterMessage"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:24:52 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Write-BoxstarterMessage 20130314052452A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=31</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=Documentation"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Out-BoxstarterLog&amp;referringTitle=Documentation"&gt;Out-BoxstarterLog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;referringTitle=Documentation"&gt;Start-TimedSection&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Stop-TimedSection&amp;referringTitle=Documentation"&gt;Stop-TimedSection&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:22:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314052215A</guid></item><item><title>Updated Wiki: Stop-TimedSection</title><link>https://boxstarter.codeplex.com/wikipage?title=Stop-TimedSection&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Stop-TimedSection&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Ends a timed section&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Stop-TimedSection &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-SectionId&amp;referringTitle=Stop-TimedSection"&gt;&amp;#91;-SectionId&lt;/a&gt; &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Stop-TimedSection"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;A timed section is a portion of script that is timed. Used &lt;br /&gt;with Start-TimedSection, the beginning and end of the section &lt;br /&gt;are loged to both the console and the log along with the &lt;br /&gt;amount of time elapsed.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;SectionId&lt;/h3&gt;The guid that was generated by Start-TimedSection and &lt;br /&gt;identifies which section is ending.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My First Section&amp;quot;&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;This creates a block as follows:&lt;br /&gt;&lt;br /&gt;+ Boxstarter starting My First Section&lt;br /&gt;&lt;br /&gt;Some stuff happens here.&lt;br /&gt;&lt;br /&gt;+ Boxstarter finished My First Section 00:00:00.2074282&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;Timed Sections can be nested or staggered. You can have &lt;br /&gt;multiple sections running at once.&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My First Section&amp;quot;&lt;/span&gt;
&lt;span style="color:OrangeRed;"&gt;$innerSession&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My Inner Section&amp;quot;&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$innerSession&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;This creates a block as follows:&lt;br /&gt;&lt;br /&gt;+ Boxstarter starting My First Section&lt;br /&gt;&lt;br /&gt;Some stuff happens here.&lt;br /&gt;&lt;br /&gt;++ Boxstarter starting My Inner Section&lt;br /&gt;&lt;br /&gt;Some inner stuff happens here.&lt;br /&gt;&lt;br /&gt;++ Boxstarter finished My Inner Section 00:00:00.1074282&lt;br /&gt;&lt;br /&gt;Some more stuff happens here.&lt;br /&gt;&lt;br /&gt;+ Boxstarter finished My First Section 00:00:00.2074282&lt;br /&gt;&lt;br /&gt;Note that the number of &amp;#39;+&amp;#39; chars indicate nesting level.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;referringTitle=Stop-TimedSection"&gt;Start-TimedSection&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Stop-TimedSection"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:21:36 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Stop-TimedSection 20130314052136A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=30</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=Documentation"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Out-BoxstarterLog&amp;referringTitle=Documentation"&gt;Out-BoxstarterLog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;referringTitle=Documentation"&gt;Start-TimedSection&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:17:38 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314051738A</guid></item><item><title>Updated Wiki: Start-TimedSection</title><link>https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Start-TimedSection&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Begins a timed section&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Start-TimedSection &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-sectionName&amp;referringTitle=Start-TimedSection"&gt;&amp;#91;-sectionName&lt;/a&gt; &amp;lt;String&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Start-TimedSection"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;A timed section is a portion of script that is timed. Used &lt;br /&gt;with Stop-TimedSection, the beginning and end of the section &lt;br /&gt;are loged to both the console and the log along with the &lt;br /&gt;amount of time elapsed.&lt;br /&gt;&lt;br /&gt;The function returns a guid that is used to identify the &lt;br /&gt;section when stopping it.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;SectionName&lt;/h3&gt;The Title or Label of the section being timed. This string &lt;br /&gt;is used in the logging to identify the section.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My First Section&amp;quot;&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;This creates a block as follows:&lt;br /&gt;&lt;br /&gt;+ Boxstarter starting My First Section&lt;br /&gt;&lt;br /&gt;Some stuff happens here.&lt;br /&gt;&lt;br /&gt;+ Boxstarter finished My First Section 00:00:00.2074282&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;Timed Sections can be nested or staggered. You can have &lt;br /&gt;multiple sections running at once.&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My First Section&amp;quot;&lt;/span&gt;
&lt;span style="color:OrangeRed;"&gt;$innerSession&lt;/span&gt;&lt;span style="color:Gray;"&gt;=&lt;/span&gt;Start&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:#A31515;"&gt;&amp;quot;My Inner Section&amp;quot;&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$innerSession&lt;/span&gt;
Stop&lt;span style="color:Gray;"&gt;-&lt;/span&gt;TimedSection &lt;span style="color:OrangeRed;"&gt;$session&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;This creates a block as follows:&lt;br /&gt;&lt;br /&gt;+ Boxstarter starting My First Section&lt;br /&gt;&lt;br /&gt;Some stuff happens here.&lt;br /&gt;&lt;br /&gt;++ Boxstarter starting My Inner Section&lt;br /&gt;&lt;br /&gt;Some inner stuff happens here.&lt;br /&gt;&lt;br /&gt;++ Boxstarter finished My Inner Section 00:00:00.1074282&lt;br /&gt;&lt;br /&gt;Some more stuff happens here.&lt;br /&gt;&lt;br /&gt;+ Boxstarter finished My First Section 00:00:00.2074282&lt;br /&gt;&lt;br /&gt;Note that the number of &amp;#39;+&amp;#39; chars indicate nesting level.&lt;br /&gt;
&lt;h2&gt;NOTES&lt;/h2&gt;If the SuppressLogging setting of the $Boxstarter variable is true, &lt;br /&gt;logging mesages will be suppresed and not sent to the console or the &lt;br /&gt;log.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Stop-TimedSection&amp;referringTitle=Start-TimedSection"&gt;Stop-TimedSection&lt;/a&gt;&lt;br /&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Start-TimedSection"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:17:02 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Start-TimedSection 20130314051702A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=29</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=Documentation"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Out-BoxstarterLog&amp;referringTitle=Documentation"&gt;Out-BoxstarterLog&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:03:27 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314050327A</guid></item><item><title>Updated Wiki: Out-BoxstarterLog</title><link>https://boxstarter.codeplex.com/wikipage?title=Out-BoxstarterLog&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Out-BoxstarterLog&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Logs provided text or objects to the console and &lt;br /&gt;Boxstarter log.&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Out-BoxstarterLog &lt;a href="https://boxstarter.codeplex.com/wikipage?title=-object&amp;referringTitle=Out-BoxstarterLog"&gt;-object&lt;/a&gt; &amp;lt;Object&amp;gt;  &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Out-BoxstarterLog"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;This is essentially identical to Tee-Object wih the PS 3.0&lt;br /&gt;only parameter -Append. This will work in either PS 2.0 or&lt;br /&gt;PS 3.0.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;object&lt;/h3&gt;Object to log.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Out&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterLog &lt;span style="color:#A31515;"&gt;&amp;quot;This can be seen on the screen and in the log file&amp;quot;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:#A31515;"&gt;&amp;quot;This can be seen on the screen and in the log file&amp;quot;&lt;/span&gt; | Out&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterLog
&lt;/pre&gt;&lt;/div&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Out-BoxstarterLog"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 05:02:54 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Out-BoxstarterLog 20130314050254A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=28</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=Documentation"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:57:20 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314045720A</guid></item><item><title>Updated Wiki: Enter-BoxstarterLogable</title><link>https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Enter-BoxstarterLogable&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Logs the output and error streams of the script to the &lt;br /&gt;console and Boxstarter log.&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Enter-BoxstarterLogable &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-script&amp;referringTitle=Enter-BoxstarterLogable"&gt;&amp;#91;-script&lt;/a&gt; &amp;lt;scriptblock&amp;gt;]&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Boxstarter runs the provided script and redirects the &lt;br /&gt;standard output and standard error streams to the host&lt;br /&gt;console and to the Boxstarter log. This will include both&lt;br /&gt;powershell write-output and errors as well as the output&lt;br /&gt;from any standard commandline executables that use &lt;br /&gt;standard output and error streams.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;script&lt;/h3&gt;The script to execute.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
Enter&lt;span style="color:Gray;"&gt;-&lt;/span&gt;BoxstarterLogable{
    Get&lt;span style="color:Gray;"&gt;-&lt;/span&gt;Process Chrome
    Netstat
}
&lt;/pre&gt;&lt;/div&gt;This sends both the out put of the powershemm Get-Process&lt;br /&gt;cmdlet and the Netstat command line utility to the screen&lt;br /&gt;as well as th boxstarter log.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Enter-BoxstarterLogable"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:55:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Enter-BoxstarterLogable 20130314045532A</guid></item><item><title>Updated Wiki: Enter-BoxstarterLogable</title><link>https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Enter-BoxstarterLogable&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Logs the output and error streams of the script to the &lt;br /&gt;console and Boxstarter log.&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Enter-BoxstarterLogable &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-script&amp;referringTitle=Enter-BoxstarterLogable"&gt;&amp;#91;-script&lt;/a&gt; &amp;lt;scriptblock&amp;gt;]&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Boxstarter runs the provided script and redirects the &lt;br /&gt;standard output and standard error streams to the host&lt;br /&gt;console and to the Boxstarter log. This will include both&lt;br /&gt;powershell write-output and errors as well as the output&lt;br /&gt;from any standard commandline executables that use &lt;br /&gt;standard output and error streams.&lt;br /&gt;
&lt;h2&gt;PARAMETER &lt;/h2&gt;&lt;h3&gt;script&lt;/h3&gt;The script to execute.&lt;br /&gt;
&lt;h2&gt;EXAMPLE&lt;/h2&gt;&lt;span class="codeInline"&gt;code:powershell&lt;/span&gt;&lt;br /&gt;Enter-BoxstarterLogable{&lt;br /&gt;    Get-Process Chrome&lt;br /&gt;    Netstat&lt;br /&gt;}&lt;br /&gt;&lt;span class="codeInline"&gt;code:powershell&lt;/span&gt;&lt;br /&gt;This sends both the out put of the powershemm Get-Process&lt;br /&gt;cmdlet and the Netstat command line utility to the screen&lt;br /&gt;as well as th boxstarter log.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Enter-BoxstarterLogable"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:54:31 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Enter-BoxstarterLogable 20130314045431A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=27</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;referringTitle=Documentation"&gt;Log-BoxStarterMessage&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:51:44 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314045144A</guid></item><item><title>Updated Wiki: Log-BoxStarterMessage</title><link>https://boxstarter.codeplex.com/wikipage?title=Log-BoxStarterMessage&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Log-BoxStarterMessage&lt;/h1&gt;
&lt;h2&gt;SYNOPSIS&lt;/h2&gt;Logs a message to the Boxstarter Log File&lt;br /&gt;
&lt;h2&gt;SYNTAX&lt;/h2&gt;    Log-BoxStarterMessage &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%5b-message&amp;referringTitle=Log-BoxStarterMessage"&gt;&amp;#91;-message&lt;/a&gt; &amp;lt;Object[]&amp;gt;] &lt;a href="https://boxstarter.codeplex.com/wikipage?title=%3cCommonParameters%3e&amp;referringTitle=Log-BoxStarterMessage"&gt;&amp;#60;CommonParameters&amp;#62;&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;DESCRIPTION&lt;/h2&gt;Logs a message to the log. The message does not render on the &lt;br /&gt;console. Boxstarter timestamps the log message so that the file &lt;br /&gt;entry has the time the message was writen. The log is located at &lt;br /&gt;$Boxstarter.Log.&lt;br /&gt;
&lt;h2&gt;Parameter &lt;/h2&gt;&lt;h3&gt;Message&lt;/h3&gt;The message to be logged.&lt;br /&gt;
&lt;h2&gt;LINK&lt;/h2&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=about%20boxstarter%20logging&amp;referringTitle=Log-BoxStarterMessage"&gt;about boxstarter logging&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:51:07 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Log-BoxStarterMessage 20130314045107A</guid></item><item><title>Updated Wiki: Documentation</title><link>https://boxstarter.codeplex.com/documentation?version=26</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Boxstarter Commands&lt;/h1&gt;
&lt;h3&gt;Boxstarter.Chocolatey&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter.Chocolatey&amp;referringTitle=Documentation"&gt;About Boxstarter.Chocolatey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-PackageRoot&amp;referringTitle=Documentation"&gt;Get-PackageRoot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-BoxstarterBuild&amp;referringTitle=Documentation"&gt;Invoke-BoxstarterBuild&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-ChocolateyBoxstarter&amp;referringTitle=Documentation"&gt;Invoke-ChocolateyBoxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=New-BoxstarterPackage&amp;referringTitle=Documentation"&gt;New-BoxstarterPackage&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-BoxstarterShare&amp;referringTitle=Documentation"&gt;Set-BoxstarterShare&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Bootstrapper&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Bootstrapper&amp;referringTitle=Documentation"&gt;About Boxstarter Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20the%20%24Boxstarter%20Variable%20In%20Bootstrapper&amp;referringTitle=Documentation"&gt;About the &amp;#36;Boxstarter Variable In Bootstrapper&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Boxstarter&amp;referringTitle=Documentation"&gt;Invoke-Boxstarter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Invoke-Reboot&amp;referringTitle=Documentation"&gt;Invoke-Reboot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Test-PendingReboot&amp;referringTitle=Documentation"&gt;Test-PendingReboot&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.WinConfig&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-InternetExplorerESC&amp;referringTitle=Documentation"&gt;Disable-InternetExplorerESC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Disable-UAC&amp;referringTitle=Documentation"&gt;Disable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-RemoteDesktop&amp;referringTitle=Documentation"&gt;Enable-RemoteDesktop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enable-UAC&amp;referringTitle=Documentation"&gt;Enable-UAC&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Get-LibraryNames&amp;referringTitle=Documentation"&gt;Get-LibraryNames&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Install-WindowsUpdate&amp;referringTitle=Documentation"&gt;Install-WindowsUpdate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Move-LibraryDirectory&amp;referringTitle=Documentation"&gt;Move-LibraryDirectory&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-ExplorerOptions&amp;referringTitle=Documentation"&gt;Set-ExplorerOptions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Set-TaskbarSmall&amp;referringTitle=Documentation"&gt;Set-TaskbarSmall&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Update-ExecutionPolicy&amp;referringTitle=Documentation"&gt;Update-ExecutionPolicy&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Boxstarter.Common&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://boxstarter.codeplex.com/wikipage?title=About%20Boxstarter%20Logging&amp;referringTitle=Documentation"&gt;About Boxstarter Logging&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:46:45 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130314044645A</guid></item><item><title>Updated Wiki: About Boxstarter Logging</title><link>https://boxstarter.codeplex.com/wikipage?title=About Boxstarter Logging&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;TOPIC&lt;/b&gt;&lt;br /&gt;	About&lt;i&gt;Boxstarter&lt;/i&gt;Logging&lt;br /&gt;&lt;br /&gt;&lt;b&gt;SYNOPSIS&lt;/b&gt;&lt;br /&gt;	Describes how to the different Boxstarter Logging functions to log to &lt;br /&gt;	the console, log file or both.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DESCRIPTION&lt;/b&gt;&lt;br /&gt;	Boxstarter provides several logging logging functions to make it easy &lt;br /&gt;	to deliver messages to script consumers and provide detailed debugging&lt;br /&gt;	information to log files. Here is a description of each of these &lt;br /&gt;	functions:&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Write-BoxstarterMessage&lt;/b&gt;&lt;br /&gt;		Writes a message to both the Boxstarter log file and to the screen. &lt;br /&gt;		These messages are output in Green to make them stand out from &lt;br /&gt;		other messages.&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Log-BoxstarterMessage&lt;/b&gt;&lt;br /&gt;		Only writes a message to the Boxstarter log file. The message is &lt;br /&gt;		not logged to the console.&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Out-BoxtarterLog&lt;/b&gt;&lt;br /&gt;		This is identical to Write-BoxstarterMessage but the text written &lt;br /&gt;		to the screen is not in green. It is formatted normally.&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Enter-BoxstarterLogable&lt;/b&gt;&lt;br /&gt;		This executes a script block and redirects the standard output &lt;br /&gt;		stream and standard error stream to both the console and the &lt;br /&gt;		Boxstarter log file. This is similar to Out-Boxstarterlog but it &lt;br /&gt;		includes the output from standard command line utilities.&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Start-TimedSection and Stop-TimedSection&lt;/b&gt;&lt;br /&gt;		These functions surround all script in between the start and end &lt;br /&gt;		functions with a header and footer message and time the script &lt;br /&gt;		execution. The footer message includes the total elapsed time. &lt;br /&gt;		These sections can be nested.&lt;br /&gt;&lt;br /&gt;SEE ALSO&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Write-BoxstarterMessage&amp;referringTitle=About%20Boxstarter%20Logging"&gt;Write-BoxstarterMessage&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Out-BoxtarterLog&amp;referringTitle=About%20Boxstarter%20Logging"&gt;Out-BoxtarterLog&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Enter-BoxstarterLogable&amp;referringTitle=About%20Boxstarter%20Logging"&gt;Enter-BoxstarterLogable&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Start-TimedSection&amp;referringTitle=About%20Boxstarter%20Logging"&gt;Start-TimedSection&lt;/a&gt;&lt;br /&gt;	&lt;a href="https://boxstarter.codeplex.com/wikipage?title=Stop-TimedSection&amp;referringTitle=About%20Boxstarter%20Logging"&gt;Stop-TimedSection&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>mwrock</author><pubDate>Thu, 14 Mar 2013 04:46:13 GMT</pubDate><guid isPermaLink="false">Updated Wiki: About Boxstarter Logging 20130314044613A</guid></item></channel></rss>