﻿<?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>Ladysign Dev Blog &#187; windows</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ladysign-apps.com/blog</link>
	<description>Girls can code.</description>
	<lastBuildDate>Mon, 01 Feb 2010 09:44:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows: RUN Commands</title>
		<link>http://www.ladysign-apps.com/blog/other/geeky/windows-run-commands/</link>
		<comments>http://www.ladysign-apps.com/blog/other/geeky/windows-run-commands/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 10:13:13 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[geeky]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=134</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Here are some handy RUN/Command line commands for Windows XP/Vista (winkey + R):</p>
<p>Open DOS window</p>
<pre class="brush: jscript;">
CMD
</pre>
<p>Access System Conf[......]</p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Here are some handy RUN/Command line commands for Windows XP/Vista (winkey + R):</p>
<p>Open DOS window</p>
<pre class="brush: jscript;">
CMD
</pre>
<p>Access System Configuration Utility; &#8211; change start up programs &#038; services:</p>
<pre class="brush: jscript;">
msconfig
</pre>
<p>Access Control Panel</p>
<pre class="brush: jscript;">
control
</pre>
<p>Access Registry Editor</p>
<pre class="brush: jscript;">
regedit32
</pre>
<p>Access Task Manager</p>
<pre class="brush: jscript;">
taskmgr
</pre>
<p>Get version of Windows</p>
<pre class="brush: jscript;">
winver
</pre>
<p>Get network information (such as ip); &#8211; type this is command prompt (CMD) otherwise it exits the window to fast.</p>
<pre class="brush: jscript;">
ipconfig
</pre>
<p>Remote connection</p>
<pre class="brush: jscript;">
mstsc
</pre>
<p>Kill process (for example java.exe)</p>
<pre class="brush: jscript;">
taskkill /IM java.exe
</pre>
<p>Kill process (for example notepad.exe), confirmation for saving the file</p>
<pre class="brush: jscript;">
taskkill /IM notepad.exe /F
</pre>
<p>Shutdown Windows</p>
<pre class="brush: jscript;">
shutdown -s -t 01
</pre>
<p>Restart Windows</p>
<pre class="brush: jscript;">
shutdown -r -t 01
</pre>
<p>Open a program is just typing in the program name:<br />
firefox, iexplore, notepad, </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/other/geeky/windows-run-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Java environment (Windows)</title>
		<link>http://www.ladysign-apps.com/blog/code/java/setting-up-java-environment-windows/</link>
		<comments>http://www.ladysign-apps.com/blog/code/java/setting-up-java-environment-windows/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 10:17:57 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=105</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p><strong>1. Download the JDK from Sun.com:</strong><br />
<a href="http://java.sun.com/javase/downloads/index.jsp">http://java.sun.com/javase/downloads/index.jsp</a> and install it to your Program Files. So[......]</p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p><strong>1. Download the JDK from Sun.com:</strong><br />
<a href="http://java.sun.com/javase/downloads/index.jsp">http://java.sun.com/javase/downloads/index.jsp</a> and install it to your Program Files. So your path will be: C:\Program Files\Java\jdk1.x.x_x\bin\</p>
<p><strong>2. Set the Java path in your Windows system.</strong><br />
<strong>XP:</strong><br />
Start -> Control Panel -> System -> Advanced -> Environment Variables -> System Variables -> PATH.<br />
<strong>Vista:</strong><br />
Start -> Control Panel -> System and Maintenance -> System -> Advanced system settings -> Advanced -> Environment Variables -> PATH</p>
<p>Prepend the path were you installed the JDK to the beginning of the &#8216;<strong>Path</strong>&#8216; variable. (when there are multiple variables, seperate them by a semicolon. (<em>C:\Program Files\Java\jdk1.x.x_x\bin;</em>)<br />
Press OK</p>
<p><strong>3. Check your Java version in the command line:</strong><br />
Start -> Run -> Type: <em>CMD</em><br />
In Command Line Window type: </p>
<pre class="brush: jscript;">
java -version
</pre>
<p>The window will output you a message with version information, like for example:</p>
<pre class="brush: jscript;">
java version &quot;1.6.0_10&quot;
Java(TM) SE Runtime Environment (build 1.6.0_10-b33)
Java HotSpot(TM) 64-Bit Server VM (build 11.0-b15, mixed mode)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/java/setting-up-java-environment-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
