<?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>snowland.se &#187; Good-to-have</title>
	<atom:link href="http://www.snowland.se/category/good-to-have/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snowland.se</link>
	<description>Rikard Rönnkvist blogging about Microsoft System Center and other management stuff...</description>
	<lastBuildDate>Tue, 25 Jan 2011 09:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Scandinavian chars in cmd-files</title>
		<link>http://www.snowland.se/2010/03/08/scandinavian-chars-in-cmd-files/</link>
		<comments>http://www.snowland.se/2010/03/08/scandinavian-chars-in-cmd-files/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 05:20:41 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[chcp]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[codepage]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.snowland.se/?p=414</guid>
		<description><![CDATA[Got a scriptingquestion from a colleague, wasn&#8217;t that easy to find on google. But with Windows Search I did find an old cmd-script that had exactly that problem sorted out. So, the question was about scandinavian chars in a cmd-script. Some paths are named with non English letters and when you use them in a [...]]]></description>
			<content:encoded><![CDATA[<p>Got a scriptingquestion from a colleague, wasn&#8217;t that easy to find on google.</p>
<p>But with Windows Search I did find an <strong>old</strong> cmd-script that had exactly that problem sorted out.</p>
<p>So, the question was about scandinavian chars in a cmd-script. Some paths are named with non English letters and when you use them in a script it translates to a strange char instead of the letter.</p>
<p>This works fine:</p>
<pre class="brush: plain; title: ; notranslate">
DEL /F /Q &quot;%USERPROFILE%\Local Settings\Some Directory\*.*&quot;
</pre>
<p>This doesn&#8217;t work since there is a scandinavian letter in the path:</p>
<pre class="brush: plain; title: ; notranslate">
DEL /F /Q &quot;%USERPROFILE%\Lokala inställningar\Some Directory\*.*&quot;
</pre>
<p>To fix it you need to change codepage, like this:</p>
<pre class="brush: plain; title: ; notranslate">
CHCP 850
DEL /F /Q &quot;%USERPROFILE%\Lokala inställningar\Some Directory\*.*&quot;
</pre>
<p>You might need to use different codepage depending on the language you are using.</p>
<p><a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/chcp.mspx?mfr=true">Some more info on MSDN</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2010/03/08/scandinavian-chars-in-cmd-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice PowerShell prompt</title>
		<link>http://www.snowland.se/2010/02/23/nice-powershell-prompt/</link>
		<comments>http://www.snowland.se/2010/02/23/nice-powershell-prompt/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 07:00:47 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Prompt]]></category>

		<guid isPermaLink="false">http://www.snowland.se/?p=407</guid>
		<description><![CDATA[Been playing around with PowerShell the last days, and with nothing else better to do I did a nice looking prompt. This prompt will give you a marker if you run it as Administrator and another mark if you are outside the filesystem. How to: First you need to edit your profile so it autoload [...]]]></description>
			<content:encoded><![CDATA[<p>Been playing around with PowerShell the last days, and with nothing else better to do I did a nice looking prompt. <img src='http://www.snowland.se/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src="http://www.snowland.se/wp/wp-content/uploads/100223_PowershellPrompt.png" alt="" title="100223_PowershellPrompt"  /></p>
<p>This prompt will give you a marker if you run it as Administrator and another mark if you are outside the filesystem.</p>
<p><strong>How to:</strong><br />
First you need to edit your profile so it autoload the new prompt.</p>
<pre class="brush: powershell; title: ; notranslate">
notepad $profile
</pre>
<p>Then paste this code, save and start a new PowerShell command line.</p>
<pre class="brush: powershell; title: ; notranslate">
function prompt
{
	# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	#                                                                              Rikard Ronnkvist / snowland.se
	# Multicolored prompt with marker for windows started as Admin and marker for providers outside filesystem
	# Examples
	#    C:\Windows\System32&gt;
	#    [Admin] C:\Windows\System32&gt;
	#    [Registry] HKLM:\SOFTWARE\Microsoft\Windows&gt;
	#    [Admin] [Registry] HKLM:\SOFTWARE\Microsoft\Windows&gt;
	# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	# New nice WindowTitle
	$Host.UI.RawUI.WindowTitle = &quot;PowerShell v&quot; + (get-host).Version.Major + &quot;.&quot; + (get-host).Version.Minor + &quot; (&quot; + $pwd.Provider.Name + &quot;) &quot; + $pwd.Path

	# Admin ?
	if( (
		New-Object Security.Principal.WindowsPrincipal (
			[Security.Principal.WindowsIdentity]::GetCurrent())
		).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
	{
		# Admin-mark in WindowTitle
		$Host.UI.RawUI.WindowTitle = &quot;[Admin] &quot; + $Host.UI.RawUI.WindowTitle

		# Admin-mark on prompt
		Write-Host &quot;[&quot; -nonewline -foregroundcolor DarkGray
		Write-Host &quot;Admin&quot; -nonewline -foregroundcolor Red
		Write-Host &quot;] &quot; -nonewline -foregroundcolor DarkGray
	}

	# Show providername if you are outside FileSystem
	if ($pwd.Provider.Name -ne &quot;FileSystem&quot;) {
		Write-Host &quot;[&quot; -nonewline -foregroundcolor DarkGray
		Write-Host $pwd.Provider.Name -nonewline -foregroundcolor Gray
		Write-Host &quot;] &quot; -nonewline -foregroundcolor DarkGray
	}

	# Split path and write \ in a gray
	$pwd.Path.Split(&quot;\&quot;) | foreach {
	    Write-Host $_ -nonewline -foregroundcolor Yellow
	    Write-Host &quot;\&quot; -nonewline -foregroundcolor Gray
	}

	# Backspace last \ and write &gt;
	Write-Host &quot;`b&gt;&quot; -nonewline -foregroundcolor Gray

    return &quot; &quot;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2010/02/23/nice-powershell-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off topic: Powershell to rename pictures</title>
		<link>http://www.snowland.se/2010/02/07/off-topic-powershell-to-rename-pictures/</link>
		<comments>http://www.snowland.se/2010/02/07/off-topic-powershell-to-rename-pictures/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 14:53:37 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Rename]]></category>

		<guid isPermaLink="false">http://www.snowland.se/?p=399</guid>
		<description><![CDATA[I&#8217;m trying hard to convert myself from VBScript to Powershell&#8230; so in the need of a powerfull filerenamer I wrote one in Powershell. You need to download the Powershell Pack from http://code.msdn.microsoft.com/PowerShellPack Ending up with something like this: Oh, and you can add -Recurse on the Get-ChildItem row&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying hard to convert myself from VBScript to Powershell&#8230; so in the need of a powerfull filerenamer I wrote one in Powershell.</p>
<p>You need to download the Powershell Pack from <a href="http://code.msdn.microsoft.com/PowerShellPack">http://code.msdn.microsoft.com/PowerShellPack</a></p>
<pre class="brush: powershell; title: ; notranslate">
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#                                                                                           Rikard Ronnkvist / snowland.se
#  Will rename JPG and AVI files, uses EXIF-tag on JPG-images and filedate on AVI-files.
#
#  Files will be named:
#    \some path\YYYYMM\YYYYMMDD_HHMMSS_00.JPG
#               ^^^^^^ - Optional, if you have createSubdir set to True
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
$basePath = &quot;F:\Pictures\Import dir&quot;
$createSubdir = $True
$testMode = $False
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Download from:  http://code.msdn.microsoft.com/PowerShellPack
Import-Module PowerShellPack

# Add \* to use when searching
$searchPath = $basePath + &quot;\*&quot;

# Search for files
Write-Host &quot;           Searching: &quot; -ForegroundColor DarkGray -NoNewline
Write-Host $basePath -ForegroundColor Yellow

$allFiles  = Get-ChildItem -Path $searchPath -Include *.AVI,*.JPG -Exclude folder.jpg

Write-Host &quot;               Found: &quot; -ForegroundColor DarkGray -NoNewline
Write-Host $allFiles.Count -ForegroundColor Yellow -NoNewline
Write-Host &quot; files&quot; -ForegroundColor DarkGray

$fNum = 0
# Loop thru all files
foreach ($file in $allFiles )
{
	$fNum++
	# If it is an jpg use the exif-data, otherwise use date on file
	if ($file.Extension -eq &quot;.JPG&quot;) {
		$imgInfo = $file | Get-Image | Get-ImageProperty
		$fileDate = $imgInfo.dt
	} else {
		$fileDate = $file.LastWriteTime
	}

	if ($createSubdir -eq $True) {
		# Set new filepath
		$fileDir = $basePath + &quot;\&quot; + $fileDate.ToString(&quot;yyyyMM&quot;)

		# Check directory
		if (!(Test-Path($fileDir))) {
			# Create a new subdirectory
			if ($testMode -ne $True) {
				$newDir = New-Item -Type directory -Path $fileDir
				Write-Host &quot;            Creating: &quot; -ForegroundColor DarkGray -NoNewline
				Write-Host $fileDir -ForegroundColor Red
			}
		}
	} else {
		# Use current directory
		$fileDir = $basePath
	}

	# Set new name to current to get &quot;False&quot; on first while
	$newPath = $file.Fullname

	$i = 0
	while (Test-Path $newPath) {
		# Set new filename
		$newPath = $fileDir + &quot;\&quot; + $fileDate.ToString(&quot;yyyyMMdd_HHmmss&quot;) + &quot;_&quot; + $i.ToString(&quot;00&quot;) + $file.Extension
		$i++
	}

	# Write som info
	Write-Host $fNum.ToString().PadLeft(4) -ForegroundColor DarkYellow -NoNewline
	Write-Host &quot; / &quot; -ForegroundColor DarkGray -NoNewline
	Write-Host $allFiles.Count.ToString().PadRight(4) -ForegroundColor Yellow -NoNewline
	Write-Host &quot;   Moving: &quot; -ForegroundColor DarkGray -NoNewline
	Write-Host $file.Name -ForegroundColor Cyan -NoNewline
	Write-Host &quot; -&gt; &quot; -ForegroundColor DarkGray -NoNewline
	Write-Host $newPath -ForegroundColor Green

	# Move and rename the file
	if ($testMode -ne $True) {
		Move-Item $file.Fullname $newPath
	}
}
</pre>
<p>Ending up with something like this:<br />
<img src="http://www.snowland.se/wp/wp-content/uploads/100207_picRenamer.png" alt="" title="100207_picRenamer" /></p>
<p>Oh, and you can add <strong>-Recurse</strong> on the <strong>Get-ChildItem</strong> row&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2010/02/07/off-topic-powershell-to-rename-pictures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Outlook and meeting reminders</title>
		<link>http://www.snowland.se/2009/09/27/outlook-and-meeting-reminders/</link>
		<comments>http://www.snowland.se/2009/09/27/outlook-and-meeting-reminders/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:52:41 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.snowland.se/?p=371</guid>
		<description><![CDATA[I do not like the fact that the person sending a meeting request is the one deciding how long before the meeting a reminder would be set. Since I don&#8217;t like the popup on my phone, I&#8217;m not using reminders. So to get rid of incoming reminders I wrote a small script. Press ALT+F11 and [...]]]></description>
			<content:encoded><![CDATA[<p>I do not like the fact that the person sending a meeting request is the one deciding how long before the meeting a reminder would be set.</p>
<p>Since I don&#8217;t like the popup on my phone, I&#8217;m not using reminders.</p>
<p>So to get rid of incoming reminders I wrote a small script.</p>
<p>Press ALT+F11 and paste this code:</p>
<pre class="brush: vb; title: ; notranslate">
Sub snwRemoveMeetingReminder(Item As Outlook.MeetingItem)
    If TypeOf Item Is Outlook.MeetingItem Then
        Item.ReminderSet = False
        Item.Save

        Set Appt = Item.GetAssociatedAppointment(True)
        If Not Appt Is Nothing Then
            Appt.ReminderSet = False
            Appt.Save
        End If
    End If
End Sub
</pre>
<p>Then add the the script to incoming meeting requests.<br />
<img src="http://www.snowland.se/wp/wp-content/uploads/090927_outlook_rule.png" alt="090927_outlook_rule" title="090927_outlook_rule" class="alignnone size-full wp-image-372" /></p>
<p>Now the script will remove reminders on every incoming meeting request&#8230; It&#8217;s a client side rule, so you need to have Outlook running to get it to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2009/09/27/outlook-and-meeting-reminders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook inbox cleaner</title>
		<link>http://www.snowland.se/2009/03/23/outlook-inbox-cleaner/</link>
		<comments>http://www.snowland.se/2009/03/23/outlook-inbox-cleaner/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 08:29:29 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Cleaner]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.snowland.se/?p=238</guid>
		<description><![CDATA[I like to keep my inbox clean&#8230; so every now and then I sort out mails to different folders. That is boooring. So I wrote a little script. Download: inboxcleaner.vbs Update: Screendump of the result.]]></description>
			<content:encoded><![CDATA[<p>I like to keep my inbox clean&#8230; so every now and then I sort out mails to different folders. That is boooring.</p>
<p>So I wrote a little script. <img src='http://www.snowland.se/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre class="brush: vb; title: ; notranslate">
Sub InboxCleaner()
    Dim oNamespace As Outlook.NameSpace
    Dim oInboxFolder As Outlook.MAPIFolder
    Dim oDestFolder As Outlook.MAPIFolder
    Dim oItem As Object
    Dim i, iMove, iNoMove As Integer
    Dim sMsg, sFolder As String
    Dim bDoMove As Boolean

    Set oNamespace = Application.GetNamespace(&quot;MAPI&quot;)
    Set oInboxFolder = oNamespace.GetDefaultFolder(olFolderInbox)

    sMsg = &quot;&quot;
    iNoMove = 0
    iMove = 0

    For i = oInboxFolder.Items.Count To 1 Step -1
        Set oItem = oInboxFolder.Items(i)

        If InStr(oItem.SenderEmailAddress, &quot;@&quot;) &lt;&gt; 0 Then
            sFolder = oItem.SenderEmailAddress ' Get sender address
            sFolder = Right(sFolder, Len(sFolder) - InStrRev(sFolder, &quot;@&quot;)) ' Only domain name
            sFolder = Left(sFolder, InStr(sFolder, &quot;.&quot;) - 1) ' Skip everything after the first dot
            sFolder = UCase(Left(sFolder, 1)) &amp; Right(sFolder, Len(sFolder) - 1) ' Upper case first letter

            On Error Resume Next
            ' This row you might want to customize... I have a folders like  Mailbox\Customers\TheCustomerName
            Set oDestFolder = oInboxFolder.Folders.Parent.Parent.Folders(&quot;Customers&quot;).Folders(sFolder)

            If Err.Number &lt;&gt; 0 Then
                sMsg = sMsg &amp; &quot;Missing folder: &quot; &amp; vbTab &amp; oItem.SenderEmailAddress &amp; &quot;  (&quot; &amp; sFolder &amp; &quot;)&quot; &amp; vbCrLf
                Set oDestFolder = Nothing
                Err.Clear
                bDoMove = False
                iNoMove = iNoMove + 1
            Else
                sMsg = sMsg &amp; &quot;Move:           &quot; &amp; vbTab &amp; oItem.SenderEmailAddress &amp; &quot; -&gt; &quot; &amp; sFolder &amp; vbCrLf
                bDoMove = True
                iMove = iMove + 1
            End If
            On Error GoTo 0

            If bDoMove Then
            	' Comment out this line if you only want to test
                oItem.Move oDestFolder
            End If
        End If
    Next

    sMsg = sMsg &amp; vbCrLf &amp; _
        vbCrLf &amp; _
        &quot;Processed &quot; &amp; oInboxFolder.Items.Count &amp; &quot; items in inbox...&quot; &amp; vbCrLf &amp; _
        &quot;Moved:          &quot; &amp; vbTab &amp; iMove &amp; vbCrLf &amp; _
        &quot;Missing folder: &quot; &amp; vbTab &amp; iNoMove &amp; vbCrLf &amp; _
        &quot;Skipped:        &quot; &amp; vbTab &amp; (oInboxFolder.Items.Count - (iMove + iNoMove))

    MsgBox sMsg, vbOKOnly, &quot;Inbox Cleaner / Rikard Ronnkvist / snowland.se&quot;

End Sub
</pre>
<p>Download: <a href='http://www.snowland.se/wp/wp-content/uploads/inboxcleaner.vbs'>inboxcleaner.vbs</a></p>
<p>Update: Screendump of the result.<br />
<img src="http://www.snowland.se/wp/wp-content/uploads/090323_inboxcleaner.png" alt="090323_inboxcleaner" title="090323_inboxcleaner" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2009/03/23/outlook-inbox-cleaner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vRD 2008 &#8211; A short review</title>
		<link>http://www.snowland.se/2008/05/29/vrd-2008-a-short-review/</link>
		<comments>http://www.snowland.se/2008/05/29/vrd-2008-a-short-review/#comments</comments>
		<pubDate>Thu, 29 May 2008 07:19:52 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[Visionapp]]></category>
		<category><![CDATA[vRD]]></category>

		<guid isPermaLink="false">http://www.snowland.se/2008/05/29/vrd-2008-a-short-review/</guid>
		<description><![CDATA[I have been using vRD 1.5 for a while and did just purchase a license for vRD 2008. I love the program&#8230; When you are in need of multiple credentials for RDP-sessions (different customers, domains or whatver) vRD rocks! Since I work as a consultant I set up one credential for each customer and then [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using vRD 1.5 for a while and did just purchase a license for vRD 2008.</p>
<p>I love the program&#8230; </p>
<p>When you are in need of multiple credentials for RDP-sessions (different customers, domains or whatver) vRD rocks!</p>
<p>Since I work as a consultant I set up one credential for each customer and then one folder (Linking to the right credential) for each customer.<br />
And in that folder I can create servers, subfolders and so on.</p>
<p><strong>In short:</strong> If you have multiple servers and/or multiple credentials, <a href="http://www.visionapp.com/1683.0.html">download it</a> and try it out!</p>
<p><strong>From Visonapp,com about vRD:</strong></p>
<blockquote><p>
vRD 2008 features unparalleled ease of use, accelerated remote desktop access to servers and workstations, detailed logging features, and a new interface that allows administrators to view all connected machines simultaneously.<br />
Considerably simplifying the administration of their systems, more than 75,000 administrators worldwide consider vRD an indispensable tool for recurring administrative tasks.
</p></blockquote>
<p><strong>More info and download:</strong> <a href="http://www.visionapp.com/1683.0.html">visionapp.com</a></p>
<p><img src='http://www.snowland.se/wp/wp-content/uploads/080529_vrd.jpg' alt='Visionapp Remote Desktop 2008' /></p>
<p><strong>A few notes to the developers for the next version:</strong></p>
<ul>
<li>General</li>
<ul>
<li>When using Alt+Tab, the vRD-window is selected instead of the tab with the machine and by that you can&#8217;t use ALT+TAB and start using the keyboard on the remote host.</li>
<li>Shortcut-key to each tab (Say ALT+F1 for tab 1)</li>
</ul>
<li>Options</li>
<ul>
<li>Thumbnail size &#8211; I want a larger (aprox 2 x Large)</li>
</ul>
<li>Properties for a connection</li>
<ul>
<li>I want a shortcut-key, faster way to connect</li>
</ul>
<li>Management Board URL</li>
<ul>
<li>Open in a tab instead of browser</li>
<li>I want to se some sort of standard-url, like http://%servername%:%port_that_you_can_configure%/myservices.html</li>
</ul>
<li>Small stuff</li>
<ul>
<li>From about-box, when clicking the URLs you start MSIE instead of standard browser&#8230; just annoying</li>
</ul>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2008/05/29/vrd-2008-a-short-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>System Center Virtual User Group</title>
		<link>http://www.snowland.se/2008/03/28/151/</link>
		<comments>http://www.snowland.se/2008/03/28/151/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 08:04:20 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Usergroup]]></category>
		<category><![CDATA[Virtual]]></category>

		<guid isPermaLink="false">http://www.snowland.se/2008/03/28/151/</guid>
		<description><![CDATA[Another user group is in the making&#8230; I hope that this site will have a higher level of discussion than the normal &#8220;I havn&#8217;t read the manual or use Google can you please help me&#8221;-kind-of-user groups&#8230; Welcome to the System Center Virtual User Group, a user group dedicated to providing resources for education and collaboration [...]]]></description>
			<content:encoded><![CDATA[<p>Another user group is in the making&#8230; I hope that this site will have a higher level of discussion than the normal &#8220;I havn&#8217;t read the manual or use Google can you please help me&#8221;-kind-of-user groups&#8230;</p>
<blockquote><p>Welcome to the System Center Virtual User Group, a user group dedicated to providing resources for education and collaboration between users of Microsoft System Center technologies everywhere!</p>
<p>This group is intended to function not only as a traditional user group holding periodic meetings (via Live Meeting in our case), but as a forum where users can come together to find resources in establishing their own traditional &#8220;physical&#8221; user groups.</p></blockquote>
<p>More info at: <a href="http://www.systemcenterusergroup.com/">systemcenterusergroup.com</a><br />
My profile: <a href="http://www.systemcenterusergroup.com/members/riro.aspx">systemcenterusergroup.com/members/riro.aspx</a></p>
<p><img src='http://www.snowland.se/wp/wp-content/uploads/080328_systemcentervirtualusergroup.png' alt='System Center Virtual User Group' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2008/03/28/151/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AD Topology Diagrammer</title>
		<link>http://www.snowland.se/2007/10/03/ad-topology-diagrammer/</link>
		<comments>http://www.snowland.se/2007/10/03/ad-topology-diagrammer/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 06:15:20 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[Active Directory]]></category>

		<guid isPermaLink="false">http://www.snowland.se/2007/10/03/ad-topology-diagrammer/</guid>
		<description><![CDATA[Looks like a cool tool&#8230; haven&#8217;t had the time to test it&#8230; yet. The Microsoft Active Directory Topology Diagrammer reads an Active Directory configuration using ActiveX Data Objects (ADO), and then automatically generates a Visio diagram of your Active Directory and /or your Exchange 200x Server topology. The diagramms include domains, sites, servers, administrative groups, [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like a cool tool&#8230; haven&#8217;t had the time to test it&#8230; yet.</p>
<blockquote><p>The Microsoft Active Directory Topology Diagrammer reads an Active Directory configuration using ActiveX Data Objects (ADO), and then automatically generates a Visio diagram of your Active Directory and /or your Exchange 200x Server topology. The diagramms include domains, sites, servers, administrative groups, routing groups and connectors and can be changed manually in Visio if needed.
</p></blockquote>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=cb42fc06-50c7-47ed-a65c-862661742764&#038;displaylang=en&#038;tm">Microsoft Active Directory Topology Diagrammer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2007/10/03/ad-topology-diagrammer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demo web-app v2</title>
		<link>http://www.snowland.se/2007/05/09/demo-web-app-v2/</link>
		<comments>http://www.snowland.se/2007/05/09/demo-web-app-v2/#comments</comments>
		<pubDate>Wed, 09 May 2007 11:47:38 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Demo]]></category>
		<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[OpsMgr]]></category>

		<guid isPermaLink="false">http://www.snowland.se/2007/05/09/demo-web-app-v2/</guid>
		<description><![CDATA[Version 2 of demo-webb-app&#8230; Gives you a bit niceer health-report&#8230; (This one contains planed downtime &#8230;)]]></description>
			<content:encoded><![CDATA[<p>Version 2 of <a href="http://www.snowland.se/2007/04/13/demo-web-app/">demo-webb-app</a>&#8230; </p>
<p>&lt;html&gt;<br />
	&lt;body&gt;</p>
<p>		&lt;font face=&quot;verdana, arial&quot; size=&quot;2&quot;&gt;<br />
		i räknar från 0 till 250.&lt;br&gt;<br />
		Om i är mer än &lt;%= Application(&quot;rnd&quot;) %&gt; så kommer det upp&lt;br&gt;<br />
		en &quot;felaktig&quot; text&#8230;&lt;br&gt;&lt;br&gt;<br />
		&lt;%</p>
<p>		Randomize<br />
		if int(Application(&quot;rnd&quot;)) = 0 then<br />
			Application(&quot;rnd&quot;) = 150 + Int((100 &#8211; 1 + 1) * Rnd + 1)<br />
		end if</p>
<p>		Application(&quot;i&quot;) = Int(Application(&quot;i&quot;)) + 1</p>
<p>		Response.Write &quot;i = &quot; &amp; Application(&quot;i&quot;) &amp; &quot;&lt;br&gt;&lt;br&gt;&quot;</p>
<p>		if Application(&quot;i&quot;) &lt; Application(&quot;rnd&quot;) then<br />
			Response.Write &quot;&lt;font color=&quot;&quot;green&quot;&quot;&gt;Fungerar finfint&lt;/font&gt;&quot;<br />
		else<br />
			Response.Write &quot;&lt;font color=&quot;&quot;red&quot;&quot;&gt;&lt;b&gt;Nu fungerar det INTE det minsta&lt;/b&gt;&lt;/font&gt;&quot;<br />
		end if</p>
<p>		if Application(&quot;i&quot;) = 250 then<br />
			Application(&quot;i&quot;) = 0<br />
			Application(&quot;rnd&quot;) = 150 + Int((100 &#8211; 1 + 1) * Rnd + 1)<br />
		end if</p>
<p>		%&gt;<br />
		&lt;/font&gt;<br />
	&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>Gives you a bit niceer health-report&#8230;</p>
<p><img src='http://www.snowland.se/wp/wp-content/uploads/2007/05/070509_webhealth.jpg' alt='070509_WebHealth.jpg' /><br />
(This one contains planed downtime &#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2007/05/09/demo-web-app-v2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demo web-app</title>
		<link>http://www.snowland.se/2007/04/13/demo-web-app/</link>
		<comments>http://www.snowland.se/2007/04/13/demo-web-app/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 12:32:59 +0000</pubDate>
		<dc:creator>riro</dc:creator>
				<category><![CDATA[Demo]]></category>
		<category><![CDATA[Good-to-have]]></category>
		<category><![CDATA[OpsMgr]]></category>

		<guid isPermaLink="false">http://www.snowland.se/2007/04/13/demo-web-app/</guid>
		<description><![CDATA[Okej&#8230; nästan lite väl simpel, men den fungerar i alla fall. Spara den som något bra med .asp i slutet (se till att ASP är igång på IIS&#8217;en också), sen kan man peka ut ett monitor-program (exempelvis OpsMgr) att monitorera den sidan. Om texten &#8220;INTE&#8221; är med så kan man skicka ett larm.]]></description>
			<content:encoded><![CDATA[<p>Okej&#8230; nästan lite väl simpel, men den fungerar i alla fall.</p>
<p>Spara den som något bra med .asp i slutet (se till att ASP är igång på IIS&#8217;en också), sen kan man peka ut ett monitor-program (exempelvis OpsMgr) att monitorera den sidan. Om texten &#8220;INTE&#8221; är med så kan man skicka ett larm.</p>
<p>&lt;html&gt;<br />
	&lt;body&gt;<br />
		&lt;font face=&quot;verdana, arial&quot; size=&quot;2&quot;&gt;<br />
		i räknar från 0 till 100.&lt;br&gt;<br />
		Om i är mer än 75 så kommer det upp&lt;br&gt;<br />
		en &quot;felaktig&quot; text&#8230;&lt;br&gt;&lt;br&gt;<br />
		&lt;%<br />
			Application(&quot;i&quot;) = Int(Application(&quot;i&quot;)) + 1<br />
			Response.Write &quot;i = &quot; &amp; Application(&quot;i&quot;) &amp; &quot;&lt;br&gt;&lt;br&gt;&quot;</p>
<p>			if Application(&quot;i&quot;) &lt; 75 then<br />
				Response.Write &quot;&lt;font color=&quot;&quot;green&quot;&quot;&gt;Fungerar finfint&lt;/font&gt;&quot;<br />
			else<br />
				Response.Write &quot;&lt;font color=&quot;&quot;red&quot;&quot;&gt;&lt;b&gt;Nu fungerar det INTE det minsta&lt;/b&gt;&lt;/font&gt;&quot;<br />
			end if</p>
<p>			if Application(&quot;i&quot;) = 101 then<br />
				Application(&quot;i&quot;) = 0<br />
			end if<br />
		%&gt;<br />
		&lt;/font&gt;<br />
	&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snowland.se/2007/04/13/demo-web-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

