<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ravnda.net</title>
	<atom:link href="http://ravnda.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://ravnda.net</link>
	<description>Some of this shit must be right</description>
	<lastBuildDate>Wed, 28 Mar 2012 13:24:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Remove KMS Server</title>
		<link>http://ravnda.net/remove-kms-server/</link>
		<comments>http://ravnda.net/remove-kms-server/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 13:24:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravnda.net/?p=60</guid>
		<description><![CDATA[NB: CMD.exe m&#229; &#229;pnes som administrator. &#160; For &#229; fjerne lisens fra Server/maskin bruker man f&#248;lgene kommando: cscript.exe slmgr.vbs /upk Siden det er veldig mange KMS Servere s&#229; bruker vi f&#248;lgende kommando for &#229; sette hvilken KMS server man skal koble til: cscript.exe slmgr.vbs /skms adc02 S&#229; f&#229;r &#229; installere Default KMS key fra MS, [...]]]></description>
			<content:encoded><![CDATA[<p>NB: <strong>CMD.exe m&aring; &aring;pnes som administrator.</strong></p>
<p>&nbsp;</p>
<ol>
<li>For &aring; fjerne lisens fra Server/maskin bruker man f&oslash;lgene kommando:
<ol style="list-style-type:lower-alpha;">
<li><strong>cscript.exe slmgr.vbs /upk</strong></li>
</ol>
</li>
<li>Siden det er veldig mange KMS Servere s&aring; bruker vi f&oslash;lgende kommando for &aring; sette hvilken KMS server man skal koble til:
<ol style="list-style-type:lower-alpha;">
<li><strong>cscript.exe slmgr.vbs /skms adc02</strong></li>
</ol>
</li>
<li>S&aring; f&aring;r &aring; installere Default KMS key fra MS, s&aring; bruke f&oslash;lgende:
<ol style="list-style-type:lower-alpha;">
<li>Server 2008 R2 Standard: <strong>cscript.exe slmgr.vbs /ipk yc6kt-gkw9t-ytkyr-t4x34-r7vhc</strong></li>
<li>Windows 7 Professional: <strong>cscript.exe slmgr.vbs /ipk FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</strong></li>
<li>Windows 7 Enterprise: <strong>cscript.exe slmgr.vbs /ipk 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH</strong></li>
<li>Server 2008 R2 Enterprise:<strong> cscript.exe slmgr.vbs /ipk 489J6-VHDMP-X63PK-3K798-CPX3Y</strong></li>
</ol>
</li>
<li>Aktivere server mot KMS med det samme.
<ol style="list-style-type:lower-alpha;">
<li><strong>cscript.exe slmgr.vbs /ato</strong></li>
</ol>
</li>
<li>Til slutt sletter man <strong>_vlmcs</strong> fra DNS. Slik at andre klienter ikke pr&oslash;ver &aring; koble seg til disse, da dem ikke fungerer lenger.
<ol style="list-style-type:lower-alpha;">
<li>Man finner disse under <strong>_tcp</strong> i DNS konsollet for domenet.</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ravnda.net/remove-kms-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring OSD Deployment like we did in 2007!</title>
		<link>http://ravnda.net/monitoring-osd-deployment-like-we-did-in-2007/</link>
		<comments>http://ravnda.net/monitoring-osd-deployment-like-we-did-in-2007/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 19:18:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ConfigMgr 2012]]></category>

		<guid isPermaLink="false">http://ravnda.net/?p=45</guid>
		<description><![CDATA[Create a new &#34;Status message Queries&#34; and add this: select stat.*, ins.*, att1.*, att1.AttributeTime from SMS_StatusMessage as stat left join SMS_StatMsgInsStrings as ins on stat.RecordID = ins.RecordID left join SMS_StatMsgAttributes as att1 on stat.RecordID = att1.RecordID inner join SMS_StatMsgAttributes as att2 on stat.RecordID = att2.RecordID where att2.AttributeID = 401 and att2.AttributeValue = &#34;P01200ED&#34; and stat.SiteCode [...]]]></description>
			<content:encoded><![CDATA[<p>Create a new &quot;Status message Queries&quot; and add this:</p>
<blockquote>
<p>select stat.*, ins.*, att1.*, att1.AttributeTime from SMS_StatusMessage as stat left join SMS_StatMsgInsStrings as ins on stat.RecordID = ins.RecordID left join SMS_StatMsgAttributes as att1 on stat.RecordID = att1.RecordID inner join SMS_StatMsgAttributes as att2 on stat.RecordID = att2.RecordID where att2.AttributeID = 401 and att2.AttributeValue = &quot;P01200ED&quot; and stat.SiteCode = &quot;P01&quot; and att2.AttributeTime &gt;= ##PRM:SMS_StatMsgAttributes.AttributeTime## order by att1.AttributeTime desc</p>
</blockquote>
<p><strong>Remember to change: P01200ED and P01.</strong></p>
<p>&nbsp;</p>
<p>Source: <a href="http://www.ronnipedersen.com/2012/03/monitoring-configmgr-2012-os-deployment-using-state-messages/" target="_blank">http://www.ronnipedersen.com/2012/03/monitoring-configmgr-2012-os-deployment-using-state-messages/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ravnda.net/monitoring-osd-deployment-like-we-did-in-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

