<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Writing custom scripts with MDT 2010</title>
	<atom:link href="http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/</link>
	<description>Join Xtreme Consulting&#039;s Microsoft Deployment Toolkit experts for discussion and solution sharing</description>
	<lastBuildDate>Tue, 31 Jan 2012 22:19:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Testing your Wizard files, Gather steps, customsettings.ini, etc - Maik Koster at myITforum.com</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-272</link>
		<dc:creator><![CDATA[Testing your Wizard files, Gather steps, customsettings.ini, etc - Maik Koster at myITforum.com]]></dc:creator>
		<pubDate>Mon, 19 Apr 2010 15:09:07 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-272</guid>
		<description><![CDATA[[...] Xtreme Deployment: Writing custom scripts with MDT 2010 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Xtreme Deployment: Writing custom scripts with MDT 2010 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MDT Web FrontEnd – How To handle Custom Settings/Properties - Maik Koster at myITforum.com</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-188</link>
		<dc:creator><![CDATA[MDT Web FrontEnd – How To handle Custom Settings/Properties - Maik Koster at myITforum.com]]></dc:creator>
		<pubDate>Mon, 01 Feb 2010 17:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-188</guid>
		<description><![CDATA[[...] creating and adding custom scripts isn’t to difficult (have a look on Tim Minters Post about writing custom scripts with mdt 2010 as a reference) handling custom settings can become difficult. But when do you need a custom [...]]]></description>
		<content:encoded><![CDATA[<p>[...] creating and adding custom scripts isn’t to difficult (have a look on Tim Minters Post about writing custom scripts with mdt 2010 as a reference) handling custom settings can become difficult. But when do you need a custom [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tmintner</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-137</link>
		<dc:creator><![CDATA[tmintner]]></dc:creator>
		<pubDate>Thu, 17 Dec 2009 19:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-137</guid>
		<description><![CDATA[Hi Fred,

The toolkit reference document in the MDT documentation does a pretty decent job of going over all of the variables.

Once you have your script template in place you can access any variable using the oEnvironment.Item

For example to access the computer name you would do 
oEnvironment.Item(&quot;OSDComputerName&quot;)

Testing your scripts can be difficult without going through an entire deployment process but it is possible.  You could run ztigather.wsf to get all of the local variables set and stored in variables.dat and then run your custom script.  Ztigather would run through all of the rules in the customsettings.ini and store all of the variables.  This may not work for every script but is a good start.]]></description>
		<content:encoded><![CDATA[<p>Hi Fred,</p>
<p>The toolkit reference document in the MDT documentation does a pretty decent job of going over all of the variables.</p>
<p>Once you have your script template in place you can access any variable using the oEnvironment.Item</p>
<p>For example to access the computer name you would do<br />
oEnvironment.Item(&#8220;OSDComputerName&#8221;)</p>
<p>Testing your scripts can be difficult without going through an entire deployment process but it is possible.  You could run ztigather.wsf to get all of the local variables set and stored in variables.dat and then run your custom script.  Ztigather would run through all of the rules in the customsettings.ini and store all of the variables.  This may not work for every script but is a good start.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-136</link>
		<dc:creator><![CDATA[Fred]]></dc:creator>
		<pubDate>Thu, 17 Dec 2009 04:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-136</guid>
		<description><![CDATA[Wow what a gold mine this site is... Been looking for just this kind of thing.  
Question I have is:  Is there a good way to test my scripts without going through an entire capture/deploy process?
And
How do I &quot;see/access&quot; what variables are out there for me to use?  For example &quot;IsDesktop = True/False&quot;  Where do I go to find these from the script?  I notice some variables are stored in .xml files but, I&#039;m not clear about how to read them properly.]]></description>
		<content:encoded><![CDATA[<p>Wow what a gold mine this site is&#8230; Been looking for just this kind of thing.<br />
Question I have is:  Is there a good way to test my scripts without going through an entire capture/deploy process?<br />
And<br />
How do I &#8220;see/access&#8221; what variables are out there for me to use?  For example &#8220;IsDesktop = True/False&#8221;  Where do I go to find these from the script?  I notice some variables are stored in .xml files but, I&#8217;m not clear about how to read them properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deploywindows7</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-117</link>
		<dc:creator><![CDATA[deploywindows7]]></dc:creator>
		<pubDate>Tue, 08 Dec 2009 20:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-117</guid>
		<description><![CDATA[This is a very helpful post Tim. Thanks for sharing.]]></description>
		<content:encoded><![CDATA[<p>This is a very helpful post Tim. Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Writing custom scripts with MDT 2010 « Xtreme Deployment Scripts Rss</title>
		<link>http://deployment.xtremeconsulting.com/2009/11/03/writing-custom-scripts-with-mdt-2010/comment-page-1/#comment-10</link>
		<dc:creator><![CDATA[Writing custom scripts with MDT 2010 « Xtreme Deployment Scripts Rss]]></dc:creator>
		<pubDate>Wed, 04 Nov 2009 08:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://tmintner.wordpress.com/2009/11/03/writing-custom-scripts-with-mdt-2010/#comment-10</guid>
		<description><![CDATA[[...] the original post: Writing custom scripts with MDT 2010 « Xtreme Deployment          By admin &#124; category: scripts &#124; tags: built, monthly-competitions, still-work, [...]]]></description>
		<content:encoded><![CDATA[<p>[...] the original post: Writing custom scripts with MDT 2010 « Xtreme Deployment          By admin | category: scripts | tags: built, monthly-competitions, still-work, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

