<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8570338899115452986</id><updated>2012-01-27T11:47:13.495Z</updated><category term='Visual Studio'/><category term='SQL'/><category term='Exchange'/><category term='Feeds'/><category term='restart'/><category term='development'/><category term='AJAX'/><category term='Windows server'/><category term='c#'/><category term='ffffuuuuuuu'/><category term='firefox'/><category term='Windows xp'/><category term='Flash'/><category term='Fiddler'/><category term='Debugging'/><category term='windows'/><category term='aptitude'/><category term='SSL'/><category term='Web hosting'/><category term='Google analytics'/><category term='web.config'/><category term='linux'/><category term='jQuery'/><category term='Javascript'/><category term='windows security'/><category term='security'/><category term='Web Services'/><category term='automatic'/><category term='httphandlers'/><category term='ssh'/><category term='force'/><category term='MS SQL'/><category term='Scheduled Task'/><category term='IIS'/><category term='Cron job'/><category term='trac'/><category term='website performance'/><category term='Cron'/><category term='Certificate'/><category term='Actionscript'/><category term='https'/><category term='asp.net'/><category term='Internet Explorer'/><category term='Ubuntu'/><category term='IIS7'/><category term='Databases'/><category term='Web development'/><category term='automation'/><category term='svn'/><title type='text'>Admin's corner</title><subtitle type='html'>Assorted tips on Windows, Linux, Subversion, Web Development, Flash, ASP.NET, Javascript, SQL, Database Design and IIS.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>41</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-6958314584271748753</id><published>2012-01-27T11:46:00.000Z</published><updated>2012-01-27T11:47:13.505Z</updated><title type='text'>JavaScript function to get XML object from string</title><summary type='text'>Here's a function that you can use to load an xml object from an xml-formatted string in JavaScript:

function loadXMLFromString(text)
    {
        try //Internet Explorer
        {
            xmlDoc=new ActiveXObject('Microsoft.XMLDOM');
            xmlDoc.async='false';
            xmlDoc.loadXML(text);
        }
        catch(e)
        {
            try //Firefox, Mozilla, Opera, etc.
</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/6958314584271748753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=6958314584271748753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6958314584271748753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6958314584271748753'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2012/01/jaascript-function-to-get-xml-object.html' title='JavaScript function to get XML object from string'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-1911531897624191797</id><published>2012-01-26T22:01:00.000Z</published><updated>2012-01-26T22:01:54.827Z</updated><title type='text'>How to remove whitespace dots in Visual Studio Text Editor</title><summary type='text'>If white space (spaces, tabs, etc) is showing as dots in the visual studio text editor, you can undo this by using the key combination Ctrl+E,S.

If you prefer the dots (why??) you can enable them again by pressing Ctrl+R,W.

HTH</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/1911531897624191797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=1911531897624191797' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1911531897624191797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1911531897624191797'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2012/01/how-to-remove-whitespace-dots-in-visual.html' title='How to remove whitespace dots in Visual Studio Text Editor'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-7628367311383461241</id><published>2011-09-23T14:52:00.004+01:00</published><updated>2011-09-23T14:53:02.598+01:00</updated><title type='text'>How to redirect in web.config</title><summary type='text'>Let's say you want to redirect visitors from one subdomain to another. You can do this by putting this in your web.config for the redirected-from application:

&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;configuration&gt;    &lt;system.webServer&gt;        &lt;httpRedirect enabled="true" destination="https://abc.example.com/newpages" httpResponseStatus="Permanent" /&gt;    &lt;/system.webServer&gt;&lt;/configuration&gt;

This </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/7628367311383461241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=7628367311383461241' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7628367311383461241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7628367311383461241'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2011/09/how-to-redirect-in-webconfig.html' title='How to redirect in web.config'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-3742896569691030703</id><published>2011-08-29T11:43:00.001+01:00</published><updated>2011-08-29T11:43:20.920+01:00</updated><title type='text'>Flash CS3 Vista install problems</title><summary type='text'>If you are having trouble with a silently failing install of Adobe Flash CS3 on Windows Vista, I may have the solution:

Start -&gt; All Programs -&gt; Accessories
Right-Click -&gt; Run as Administrator.
Enter the command:

regsvr32 jscript.dll

hit enter.

Once the jscript dll is registered, the Adobe installed should now be a ble to run and install Flash CS3 on your computer. 
 
 



</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/3742896569691030703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=3742896569691030703' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3742896569691030703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3742896569691030703'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2011/08/flash-cs3-vista-install-problems.html' title='Flash CS3 Vista install problems'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8924094463861344450</id><published>2011-07-18T13:49:00.001+01:00</published><updated>2011-07-18T13:49:50.791+01:00</updated><title type='text'>Google Chrome standalone installer</title><summary type='text'>Admins often need to install and upgrade via group policy or install packages on machines that are not connected to the internet. For Google's Chrome browser this can be accomplished by downloading the Chrome Standalone Installer.</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8924094463861344450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8924094463861344450' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8924094463861344450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8924094463861344450'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2011/07/google-chrome-standalone-installer.html' title='Google Chrome standalone installer'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-7816375500110406285</id><published>2011-06-29T12:32:00.001+01:00</published><updated>2011-06-29T12:32:31.058+01:00</updated><title type='text'>List all databases with sqlcmd</title><summary type='text'>sqlcmd -s &lt;db server or instance&gt; -q "exec sp_databases"

Examples:
 sqlcmd -s localhost -q "exec sp_databases"
 sqlcmd -s dbserver -u loginname -p password -q "exec sp_databases"
 sqlcmd -s ./MSSQLSERVER -u loginname -p password -q "exec sp_databases" 


</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/7816375500110406285/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=7816375500110406285' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7816375500110406285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7816375500110406285'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2011/06/list-all-databases-with-sqlcmd.html' title='List all databases with sqlcmd'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-5403826790691573945</id><published>2011-06-29T12:29:00.002+01:00</published><updated>2011-06-29T12:29:43.916+01:00</updated><title type='text'>Deleting a database with sqlcmd</title><summary type='text'>sqlcmd -s &lt;servername&gt; -q "DROP DATABASE &lt;database name&gt;"
OR
sqlcmd -s ./&lt;sqlserver instance name&gt; -q "DROP DATABASE &lt;database name&gt;"

Examples:

sqlcmd -s dbserver -u username -p password -q "DROP DATABASE products" 

sqlcmd -s localhost -q "DROP DATABASE products" 
sqlcmd -s ./MSSQLSERVER -q "DROP DATABASE products"  
 
 
</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/5403826790691573945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=5403826790691573945' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5403826790691573945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5403826790691573945'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2011/06/deleting-database-with-sqlcmd.html' title='Deleting a database with sqlcmd'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8502717503144558609</id><published>2010-12-05T16:34:00.005Z</published><updated>2011-09-15T00:51:35.143+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='trac'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='svn'/><title type='text'>Comprehensive guide to SVN+trac install on Ubuntu 10.04</title><summary type='text'>Software Change Management (SCM) is fundamental for all professional developers, even if you work alone. SCM systems offer more than just backup; they allow you total freedom to develop, knowing that you will be able to revert to a particular revision of code at any time. They also allow teams to develop features in separate branches before merging them into one product for release. Implicit in </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8502717503144558609/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8502717503144558609' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8502717503144558609'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8502717503144558609'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/12/svn-trac-installation-setup-full-guide.html' title='Comprehensive guide to SVN+trac install on Ubuntu 10.04'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0ARwIP5ureo/TOlfVdoBkQI/AAAAAAAAAJM/rYw5rnWYAHM/s72-c/2.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8119398807535419493</id><published>2010-11-21T20:40:00.005Z</published><updated>2011-05-25T12:59:14.907+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='aptitude'/><title type='text'>How to tell aptitude to ignore recommended packages in Linux</title><summary type='text'>Ubuntu (and Debian) Linux will, by default, add "recommended" / "suggested" packages to some installs. If you are short of storage space, this can be a problem. Here, I present 2 ways, one persistent, one temporary, to prevent these extra packages being installed.


The persistent way
Create or Edit the file /etc/apt/apt.conf file and add the following contents to it:


// Recommends are as of </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8119398807535419493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8119398807535419493' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8119398807535419493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8119398807535419493'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/11/how-to-tell-aptitude-not-to-install.html' title='How to tell aptitude to ignore recommended packages in Linux'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-6726232266585939870</id><published>2010-11-19T15:02:00.002Z</published><updated>2010-11-20T02:42:46.824Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='automation'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='windows security'/><title type='text'>Automatic logon in Windows systems</title><summary type='text'>For process automation it can be handy to have scripts running to restart machines after installing update packs, or just for regular maintenance. One trick that I have found really handy when I restart a server, is to have it log on automatically. But this is only one application for automatic logon. Shared workstations, terminals, remote machines are all areas where it is potentially useful.

</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/6726232266585939870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=6726232266585939870' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6726232266585939870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6726232266585939870'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/11/automatic-logon-in-windows-systems.html' title='Automatic logon in Windows systems'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_0ARwIP5ureo/TOaOaKLeExI/AAAAAAAAAIw/JWDVr4BnGww/s72-c/auto1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-5069057909300981747</id><published>2010-10-05T16:10:00.003+01:00</published><updated>2010-10-10T00:02:44.470+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='development'/><category scheme='http://www.blogger.com/atom/ns#' term='c#'/><title type='text'>Using bitwise operators with enum in C#</title><summary type='text'>Enumerations, or enums for short, are not something we tend to use every day. But they do have their place, and can often be used to solve unusual problems elegantly, while making your code easier to understand.

One area in which they are really handy, is where you need to set a property of some object, which itself can have one or many values. One application I am working on now uses a provider</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/5069057909300981747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=5069057909300981747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5069057909300981747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5069057909300981747'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/10/using-bitwise-operators-with-enum-in-c.html' title='Using bitwise operators with enum in C#'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-891790746535393188</id><published>2010-09-06T16:01:00.000+01:00</published><updated>2010-09-06T16:01:04.919+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SSL'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='https'/><category scheme='http://www.blogger.com/atom/ns#' term='Google analytics'/><title type='text'>Auto-selecting http(s) Google Analytics urchin script source with asp.net</title><summary type='text'>Depending on the configuration of your website, you may have some pages which are https secured, and some which are not. Instead of having to edit each page to include either the https or http url for the urchin source script, you can let asp.net do the clever stuff for you:

    &lt;% if (Request.IsSecureConnection)       { %&gt;    &lt;script src="https://ssl.google-analytics.com/urchin.js" type="text/</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/891790746535393188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=891790746535393188' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/891790746535393188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/891790746535393188'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/09/auto-selecting-https-google-analytics.html' title='Auto-selecting http(s) Google Analytics urchin script source with asp.net'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-7169022460711519961</id><published>2010-07-14T14:41:00.003+01:00</published><updated>2010-07-16T23:55:03.941+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Exchange'/><title type='text'>Build numbers vs release dates for MS Exchange</title><summary type='text'>If you are an exchange admin, it's important  to keep on top of your versions across the organization. Do you ever need to take a step back and ask: "Which service pack am I running on  such and such a server?"? I have been there, and that's why I found this list of releases and build numbers for exchange very useful.

To find out the build number, open Exchange System Manager, and click "About </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/7169022460711519961/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=7169022460711519961' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7169022460711519961'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7169022460711519961'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/07/build-numbers-vs-release-dates-for-ms.html' title='Build numbers vs release dates for MS Exchange'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0ARwIP5ureo/TEDjO_29s6I/AAAAAAAAAIM/bs6TwTKTXgs/s72-c/AboutExchange.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-3055455877458519125</id><published>2010-06-16T11:50:00.001+01:00</published><updated>2010-10-10T00:03:27.945+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Exchange'/><title type='text'>Exchange error: The tracking (workstation) service is not running</title><summary type='text'>I fixed this recently by entering the command: "net start httpfilter". 

This kicks off  the SSL service.

Next, type "iisreset" to restart IIS.   
This should fix it.</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/3055455877458519125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=3055455877458519125' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3055455877458519125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3055455877458519125'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/06/exchange-error-tracking-workstation.html' title='Exchange error: The tracking (workstation) service is not running'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8386318835958705441</id><published>2010-05-25T11:49:00.004+01:00</published><updated>2010-11-19T14:46:40.666Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows xp'/><category scheme='http://www.blogger.com/atom/ns#' term='windows security'/><title type='text'>Disable the Welcome screen in Windows</title><summary type='text'>The welcome screen is something I find annoying - I don't really like the look of it. A good enough reason to disable it then! To turn it off, so that you can log on and log off using the classic login prompt:

Open the Registry editor (Start-&gt;Run-&gt;Regedit) and go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\Current Version\WinLogon 
Change the value for LogonType, from a "1" to a "0". you</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8386318835958705441/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8386318835958705441' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8386318835958705441'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8386318835958705441'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/05/how-do-i-turn-off-welcome-screen-in-xp.html' title='Disable the Welcome screen in Windows'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-2157054043684006079</id><published>2010-05-24T14:36:00.000+01:00</published><updated>2010-05-24T14:36:25.239+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>Solution doesn't show in solution explorer in Visual Studio</title><summary type='text'>This can happen when migrating your web application project to a different location.

By default, the Visual Studio IDE doesn't show any file unless it is explicitly referenced / included.

To show the solution node in the tree, go tothe Tools menu, select Options, choose Projects and Solutions, and check the "Always show solution" checkbox:

</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/2157054043684006079/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=2157054043684006079' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2157054043684006079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2157054043684006079'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/05/solution-doesnt-show-in-solution.html' title='Solution doesn&apos;t show in solution explorer in Visual Studio'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_0ARwIP5ureo/S_qAu_lKRJI/AAAAAAAAAHY/6CKQvp_NOwU/s72-c/Visual-studio-always-show-solution.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-4370035421835800868</id><published>2010-05-05T14:53:00.000+01:00</published><updated>2010-05-05T14:53:15.010+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet Explorer'/><title type='text'>Internet Explorer losing more market share - web devs rejoice!</title><summary type='text'>I've read a number of reports today detailing that IE's overall market share in the browser market has dipped below 60% for the first time.

This is undoubtedly good news for web developers and designers who are trying to adhere to open standards. Microsoft, to their credit, have come along way on that front, and are at last trying (or being forced) to come over from the Dark Side.

I'm by no </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/4370035421835800868/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=4370035421835800868' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4370035421835800868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4370035421835800868'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/05/internet-explorer-losing-more-market.html' title='Internet Explorer losing more market share - web devs rejoice!'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-7879429932342848530</id><published>2010-05-05T11:57:00.000+01:00</published><updated>2010-05-05T11:57:26.810+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Actionscript'/><title type='text'>Actionscript deep copy function</title><summary type='text'>     Here is an recursive function I found that allows you to deep-copy objects (other then MovieClips) in ActionScript. #ctionscript doesn't have this functionality built in yet, so this may prove useful to someone. Credit to the original poster - http://theolagendijk.wordpress.com/2006/09/04/actionscript-object-duplication/.
/// duplicate any given Object (not MCs)
Object.prototype.copy = </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/7879429932342848530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=7879429932342848530' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7879429932342848530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7879429932342848530'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/05/actionscript-deep-copy-function.html' title='Actionscript deep copy function'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-1878064273933509361</id><published>2010-05-04T17:55:00.001+01:00</published><updated>2010-05-07T00:14:38.991+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Actionscript'/><category scheme='http://www.blogger.com/atom/ns#' term='Flash'/><title type='text'>The class or interface 'uint' could not be loaded. Actionscript 2</title><summary type='text'>If you're trying to migrate your flash project from Actionscript 2 to Actionscript 3, or you're interrating some Actionscript 3 code into your AS2 project, you may encounter this error in numerical calculation functions:


The class or interface 'uint' could not be loaded.

The reason is that the uint (and int) types only became available with AS3. with As2, your stuck with good old Number.

If </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/1878064273933509361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=1878064273933509361' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1878064273933509361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1878064273933509361'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/05/class-or-interface-uint-could-not-be.html' title='The class or interface &apos;uint&apos; could not be loaded. Actionscript 2'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0ARwIP5ureo/S-BRZx7HVoI/AAAAAAAAAHQ/srMSb9Na_Ew/s72-c/Flash_AS3_Publish_Settings.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-6860737853924714041</id><published>2010-04-30T10:07:00.001+01:00</published><updated>2010-10-10T00:04:13.607+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='development'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>Solving Visual Studio error - The "SignFile" task was not given a value for the required parameter "CertificateThumbprint"</title><summary type='text'>A few possible reasons for this one:
Your cert may no longer be in the certificate store - perhaps because you reinstalled windows, or because you have moved to a new machine.
You have setup signing under "Signing" settings in your project properties, but haven't generated the certificate using "Create Test Certificate".
If your certificate was selected as a file, the file may have been deleted.
</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/6860737853924714041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=6860737853924714041' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6860737853924714041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6860737853924714041'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/04/solving-visual-studio-error-signfile.html' title='Solving Visual Studio error - The &quot;SignFile&quot; task was not given a value for the required parameter &quot;CertificateThumbprint&quot;'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8662623088045969484</id><published>2010-03-30T11:13:00.001+01:00</published><updated>2010-10-10T00:15:23.514+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet Explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='Web development'/><category scheme='http://www.blogger.com/atom/ns#' term='Debugging'/><title type='text'>Internet Explorer Profiling Tool</title><summary type='text'>John Resig (Creator of jQuery) posted a link recently to an excellent client side tracing / profiling tool for Internet Explorer - DynaTrace. Check it out:

http://ejohn.org/blog/deep-tracing-of-internet-explorer/</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8662623088045969484/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8662623088045969484' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8662623088045969484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8662623088045969484'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/internet-explorer-profiling-tool.html' title='Internet Explorer Profiling Tool'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-8420382128795257413</id><published>2010-03-19T15:11:00.000Z</published><updated>2010-03-19T15:11:27.419Z</updated><title type='text'>Linux disk free space</title><summary type='text'>All system admins will need to check, at some point, how much disk space is free on their systems. If the system is remote, or perhaps in a datacenter, you will need to run a shell command. the one you want is:

&gt; du

This basic command outputs the space in terms of 1 kilobyte chunks, which isn't very readable. to get a nicely formatted output, run this:

&gt; du -h

Nice and easy huh? Now why not </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/8420382128795257413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=8420382128795257413' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8420382128795257413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/8420382128795257413'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/linux-disk-free-space.html' title='Linux disk free space'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-7762424904469844831</id><published>2010-03-19T11:23:00.001Z</published><updated>2010-11-17T03:02:41.972Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet Explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='Fiddler'/><category scheme='http://www.blogger.com/atom/ns#' term='Debugging'/><title type='text'>Localhost not working in fiddler - a solution</title><summary type='text'>I was testing my .net site in Internet Explorer today using Fiddler. The Visual Studio development server uses localhost with a random port. However, Fiddler will not captures responses from localhost.

Don't worry, though. There's a neat trick you can do to fix this localhost error. Let's use an example. If you are testing the page:

http://localhost:2622/MySite/Default.aspx

simply change it to</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/7762424904469844831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=7762424904469844831' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7762424904469844831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/7762424904469844831'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/localhost-not-working-in-fiddler.html' title='Localhost not working in fiddler - a solution'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_0ARwIP5ureo/S6Nen01TGlI/AAAAAAAAAHI/g13rd9IBFZc/s72-c/f2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-543773985083112782</id><published>2010-03-15T17:43:00.005Z</published><updated>2010-03-15T17:47:13.509Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Services'/><category scheme='http://www.blogger.com/atom/ns#' term='jQuery'/><title type='text'>Consuming ASP.NET AJAX Web Services in jQuery</title><summary type='text'>Nice clear information.This can also be used for Page Methods, if you prefer to avoid sending the SOAP header. However, you will need to Serialize the response as JSON.Link below:http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/543773985083112782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=543773985083112782' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/543773985083112782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/543773985083112782'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/consuming-aspnet-ajax-web-services-in.html' title='Consuming ASP.NET AJAX Web Services in jQuery'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-4578333793236629017</id><published>2010-03-13T22:52:00.010Z</published><updated>2010-10-10T00:05:29.360+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows server'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS7'/><title type='text'>IIS7 rewrite rule for requests from the local network</title><summary type='text'>First, if you don't know about the IIS7 rewrite module, read my earlier post on it.

You back? Good.
So today I was trying to debug my web app. My web server's internal ip is 192.168.1.80, but whenever I typed this into my browser, it would send me to http://www.192.168.1.80
I discovered that this was because of one of the rules I setup earlier in the IIS7 rewrite module:
&lt;rule name="Non www to </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/4578333793236629017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=4578333793236629017' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4578333793236629017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4578333793236629017'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/iis7-rewrite-rule-for-requests-from.html' title='IIS7 rewrite rule for requests from the local network'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-4386639686605328015</id><published>2010-03-12T15:13:00.005Z</published><updated>2010-10-10T00:06:00.083+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='windows security'/><title type='text'>Granting permissions to another computer in Windows</title><summary type='text'>Hello there! 
Do you ever get confused about which user to grant permission to on a specific folder?
What if you want to simply want to grant any access requests from another computer? (perhaps the other computer is a front end server - in web hosting, it's common practice to store your static files on another server). 
One other reason to do this is so that you don't have to set up asp.net </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/4386639686605328015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=4386639686605328015' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4386639686605328015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4386639686605328015'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/granting-permissions-to-another.html' title='Granting permissions to another computer in Windows'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_0ARwIP5ureo/S5pgtvVF93I/AAAAAAAAAG8/5Y3EUSMj01I/s72-c/web.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-2611761687878251573</id><published>2010-03-12T10:52:00.008Z</published><updated>2010-10-10T00:06:35.757+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web.config'/><category scheme='http://www.blogger.com/atom/ns#' term='httphandlers'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS7'/><title type='text'>Help! My HTTP Handler doesn't work in IIS7!</title><summary type='text'>I faced this problem earlier today. Thankfully (as is usually the case) it was simple to resolve.

If you face this problem with an httphandler (usually .axd extension), make sure you have added a new "system.webServer" section to your web.config file. Yes, that's right, IIS7 doesn't look at the old httpHandlers and httpModules conig sections in system.web. You will need to copy your these </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/2611761687878251573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=2611761687878251573' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2611761687878251573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2611761687878251573'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/help-my-http-handler-doesnt-work-in.html' title='Help! My HTTP Handler doesn&apos;t work in IIS7!'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-4764319977420547959</id><published>2010-03-08T10:00:00.010Z</published><updated>2011-04-27T14:33:03.540+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS7'/><title type='text'>The power of the IIS7 url rewrite module</title><summary type='text'>Having only recently got into IIS7 after buying a new web server, I am pleased to see that version 7 is somewhat following apache's lead by allowing modules to be plugged into the server. If you host anything beyond a very basic website in IIS 7, you will likely have the need to use http modules, very likely including some kind of url rewiting.

There can be many reasons to do url rewriting - </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/4764319977420547959/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=4764319977420547959' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4764319977420547959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4764319977420547959'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/03/power-of-iis7-url-rewrite-module.html' title='The power of the IIS7 url rewrite module'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-3101344827424400319</id><published>2010-02-10T11:35:00.007Z</published><updated>2010-10-10T00:07:21.864+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MS SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='Databases'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Alternative to on delete cascade in sql server</title><summary type='text'>I'm working with a modified asp.net database, a partial diagram is shown here.

I discoved that Sql server management studio wouldn't let me put cascade delete rules on all the relationships. Unfortunately this is a limitation of SQL server, but there is a way around it.

Simply set the delete rule of either the FK_B_aspnet_Users or FK_A_aspnet_Users to No Action, or delete one of the </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/3101344827424400319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=3101344827424400319' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3101344827424400319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3101344827424400319'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/02/alternative-to-on-delete-cascade-in-sql.html' title='Alternative to on delete cascade in sql server'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-694360210867679663</id><published>2010-02-08T16:08:00.004Z</published><updated>2010-10-10T00:08:00.388+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web hosting'/><category scheme='http://www.blogger.com/atom/ns#' term='Debugging'/><category scheme='http://www.blogger.com/atom/ns#' term='website performance'/><title type='text'>Website performance optimization</title><summary type='text'>These days, there are lots of tools out these to help optimise the loading times and performance of your websites. YAHOO even have a set of rules dedicated to helping you get the most out of your websites' performance:

YAHOO website performance optimization rules

If you don't have time to read through these rules, some clever person had the good sense the implement them in a Firebug plugin that</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/694360210867679663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=694360210867679663' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/694360210867679663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/694360210867679663'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/02/website-performance-optimization.html' title='Website performance optimization'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-4631921420699686675</id><published>2010-02-08T16:05:00.000Z</published><updated>2010-02-08T16:07:47.232Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='svn'/><title type='text'>Auto-remove SVN files with a shell command</title><summary type='text'>I just found a .reg script to remove SVN files fith a shell command:Click here to see itI recommend you check out the other posts on the Lunar Media blog - some useful tips. I'm not affiliated with them in any way (just so you know ;))</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/4631921420699686675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=4631921420699686675' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4631921420699686675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/4631921420699686675'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/02/auto-remove-svn-files-with-shell.html' title='Auto-remove SVN files with a shell command'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-5346055931465026532</id><published>2010-01-19T18:01:00.005Z</published><updated>2010-01-19T18:04:42.219Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='ffffuuuuuuu'/><title type='text'>My day illustrated</title><summary type='text'></summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/5346055931465026532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=5346055931465026532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5346055931465026532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/5346055931465026532'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2010/01/my-day-illustrated.html' title='My day illustrated'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_0ARwIP5ureo/S1XzyMYs7eI/AAAAAAAAAGw/HFNjEzfraJI/s72-c/fuu.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-2941931775269148796</id><published>2009-10-29T15:10:00.007Z</published><updated>2009-10-29T15:23:42.538Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='web.config'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><title type='text'>Hiding configuration sections from nested ASP.NET apps</title><summary type='text'>If you have an ASP.NET website nested under another in IIS, you will likely get a server error unless both sites have exactly the same dependencies. This is because IIS, by default, applies web.config settings hierarchically to sub-sites. You can use this fact to your advantage, to prevent you having to repeat the same settings in the child site's web.config.However, often, you will need certain </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/2941931775269148796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=2941931775269148796' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2941931775269148796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2941931775269148796'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2009/10/hiding-configuration-sections-from.html' title='Hiding configuration sections from nested ASP.NET apps'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-6696137817421069976</id><published>2009-04-09T16:12:00.006+01:00</published><updated>2010-10-10T00:12:01.630+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MS SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='Databases'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>MS SQL Server How To - Creating relationships in a database diagram</title><summary type='text'>This one had me scratching my head for 5 minutes, so I thought I would share it.

If you want to create relationships in your SQL Server 2005 database diagram:

Right-click the table that contains the foreign key (FK) in the forthcoming relationship.

To create the relationship, click the ellipsis (...) box to the right of "Tables and Columns Specification". (This is quite hard to see.)

In the </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/6696137817421069976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=6696137817421069976' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6696137817421069976'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6696137817421069976'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2009/04/ms-sql-server-how-to-creating.html' title='MS SQL Server How To - Creating relationships in a database diagram'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-1336534699992346708</id><published>2009-01-19T13:04:00.004Z</published><updated>2010-10-10T00:08:23.536+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet Explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='Debugging'/><title type='text'>Empty div height issues in IE6</title><summary type='text'>Sometimes your website will need to use empty divs for display purposes - e.g.: showing an image to make the top/bottom of an element look curved.

Typically, you would use an empty div, and set it's background image in css; but for floated or cleared elements, height is ignored. IE6 assumes that the element has text inside it, causing it to be slightly taller than the curved-top bg-image.

To </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/1336534699992346708/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=1336534699992346708' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1336534699992346708'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1336534699992346708'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2009/01/empty-div-height-issues-in-ie6.html' title='Empty div height issues in IE6'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-670712138210839214</id><published>2008-11-25T23:18:00.003Z</published><updated>2010-10-10T00:16:36.388+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='ssh'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>SSH connection limit per IP in Linux</title><summary type='text'>Here's how to limit the maximum ssh connection attempts to your server.  This guards against brute force attacks.

The following 2 rules will limit incoming connections to port 22 to no more than 3 attempts in a minute, any more than that will be dropped:

iptables -I INPUT tcp --dport 22 -i eth0 -m state --state NEW -m recent --set

iptables -I INPUT tcp --dport 22 -i eth0 -m state --state NEW -</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/670712138210839214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=670712138210839214' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/670712138210839214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/670712138210839214'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/11/ssh-connection-limit-per-ip-in-linux.html' title='SSH connection limit per IP in Linux'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-2879346780718221549</id><published>2008-11-24T21:32:00.010Z</published><updated>2010-11-09T21:40:43.868Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='SSL'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Certificate'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><title type='text'>Installing an SSL certificate on IIS</title><summary type='text'>An SSL certificate is used when a website wants to encrypt information between itelf and the end user.  Whenever you see "https" at the start of a page's address, this means the site is using SSL.  If you administer the server and want to use SSL to encrypt part, or all of your site, here is what to do:

First, you need to decide whether you want a self-signed or trusted certificate.  A </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/2879346780718221549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=2879346780718221549' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2879346780718221549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/2879346780718221549'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/11/installing-ssl-certificate-on-iis.html' title='Installing an SSL certificate on IIS'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0ARwIP5ureo/SSsgVfrgIpI/AAAAAAAAABw/iwp5dHSkV5I/s72-c/ie_ssl_warning.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-1752635003481019365</id><published>2008-11-12T17:12:00.015Z</published><updated>2010-10-10T00:11:33.826+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='firefox'/><category scheme='http://www.blogger.com/atom/ns#' term='Debugging'/><category scheme='http://www.blogger.com/atom/ns#' term='Feeds'/><title type='text'>Solving the Firefox feed display problem</title><summary type='text'>I recently developed part of a website to show the company's latest news items on the front page. This used an xml file which is fomatted as an RSS 2.0 feed. The system admins can log into the management console and add new items to the news feed, which would then be transformed into html by an XSL stylesheet and displayed in an iframe.

Firefox however, would ignore the XSL and display the feed </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/1752635003481019365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=1752635003481019365' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1752635003481019365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/1752635003481019365'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/11/solving-firefox-feed-display-problem.html' title='Solving the Firefox feed display problem'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-6651467206974054403</id><published>2008-10-27T00:10:00.010Z</published><updated>2010-10-10T00:09:54.779+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Cron'/><category scheme='http://www.blogger.com/atom/ns#' term='svn'/><title type='text'>Automating tasks in Linux</title><summary type='text'>In Linux, the "crontab" command can be used to schedule tasks.  Unlike Windows, it provides a command-based interface, rather than a graphical interface, but it can be configured extremely quickly and comes with a set of very useful options.  To see all options, type "man crontab" into a terminal window.  To add a new "cron job", simply enter the following into a terminal:

crontab -e

Let's look</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/6651467206974054403/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=6651467206974054403' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6651467206974054403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/6651467206974054403'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/10/automating-tasks-in-linux.html' title='Automating tasks in Linux'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-612026292422730083</id><published>2008-10-26T15:53:00.001Z</published><updated>2008-12-04T22:25:54.373Z</updated><category scheme='http://www.blogger.com/atom/ns#' term='Scheduled Task'/><category scheme='http://www.blogger.com/atom/ns#' term='Cron job'/><category scheme='http://www.blogger.com/atom/ns#' term='automation'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Automating tasks in Windows</title><summary type='text'>If you find yourself endlessly performing monotonous tasks as part of your admin work, you may be able to leverage your operating system's built-in automation mechanism.  Tasks ideal for this include backup, tidying up filesystems and automated messaging.  (Windows also includes a standalone backup program, which I will cover in another post.)In Windows and Linux, the mechanisms for automating </summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/612026292422730083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=612026292422730083' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/612026292422730083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/612026292422730083'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/10/automating-tasks-in-windows.html' title='Automating tasks in Windows'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_0ARwIP5ureo/SQSHH_UM-yI/AAAAAAAAAAM/QNyxo0_wdM8/s72-c/Sched_1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8570338899115452986.post-3113931085903823392</id><published>2008-10-24T12:44:00.000+01:00</published><updated>2008-10-25T11:52:09.397+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='restart'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='force'/><category scheme='http://www.blogger.com/atom/ns#' term='automatic'/><title type='text'>Forcing restart in Windows and Linux</title><summary type='text'>Sometimes it becomes necessary to restart a server or other remote system.  Windows is especially problematic, as it will often wait on a hung application to end before shutting down.Thankfully, there is a command to help, the "shutdown" command.  If you are remotely logged in, simply open a command prompt (Start -&gt; Run -&gt; type "cmd" -&gt; OK).  In the command prompt, enter the following:shutdown -t</summary><link rel='replies' type='application/atom+xml' href='http://windows-linux-admin.blogspot.com/feeds/3113931085903823392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8570338899115452986&amp;postID=3113931085903823392' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3113931085903823392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8570338899115452986/posts/default/3113931085903823392'/><link rel='alternate' type='text/html' href='http://windows-linux-admin.blogspot.com/2008/10/forcing-restart-in-windows-linux.html' title='Forcing restart in Windows and Linux'/><author><name>kreid</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
