<?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>PJB &#187; Technology</title>
	<atom:link href="http://www.pjbacolod.com/category/technology/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pjbacolod.com</link>
	<description>PJB: TALES OF A TECH SHARK</description>
	<lastBuildDate>Thu, 02 Feb 2012 18:10:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to call a batch file from within another batch file</title>
		<link>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html</link>
		<comments>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html#comments</comments>
		<pubDate>Thu, 04 Nov 2010 08:38:46 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=905</guid>
		<description><![CDATA[
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you tried running an external batch file from within a batch file or script, only to find out that the original batch file script prematurely terminates as soon as the external batch script is executed?</p>
<p>For example:</p>
<p>Let&#8217;s say we have a main script called <strong><em>&#8220;mainscript.bat&#8221;</em></strong> and two external scripts called <strong><em>&#8220;external1.bat&#8221;</em></strong> and <strong><em>&#8220;external2.bat&#8221;</em></strong>, with <em>&#8220;mainscript.bat&#8221;</em> having the following lines:</p>
<blockquote><p>@echo off<br />
c:\testscripts\external1.bat<br />
c:\testscripts\external2.bat</p></blockquote>
<p>When you try to run the script, you&#8217;ll notice that <em>external1.bat</em> will run but <em>external2.bat</em> won&#8217;t. This is because <em>external1.bat</em> (the called script) won&#8217;t pass the control back to <em>mainscript.bat</em> (the calling script) &#8212; which means it won&#8217;t get to run <em>external2.bat</em>.</p>
<p>In order to pass the control back to the calling script, you need to use the <em>&#8220;CALL&#8221;</em> command.</p>
<p>Here&#8217;s a simple fix for <em>mainscript.bat</em>:</p>
<blockquote><p>@echo off<br />
CALL c:\testscripts\external1.bat<br />
CALL c:\testscripts\external2.bat</p></blockquote>
<p>When you run <em>mainscript.bat</em>,  it will call (run) <em>external1.bat</em>. When <em>external1.bat</em> finishes, it will pass the control back to <em>mainscript.bat</em>. Which will then process the next line on the script &#8212; in this case, it will call (run) <em>external2.bat</em> &#8212; and so on.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=905&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google Public DNS and/or OpenDNS to speed up internet access</title>
		<link>http://www.pjbacolod.com/2010/05/use-google-public-dns-andor-opendns-to-speed-up-internet-access.html</link>
		<comments>http://www.pjbacolod.com/2010/05/use-google-public-dns-andor-opendns-to-speed-up-internet-access.html#comments</comments>
		<pubDate>Fri, 21 May 2010 16:01:53 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[sun broadband]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=862</guid>
		<description><![CDATA[In relation to my previous post on &#8220;How to change Sun Wireless Broadband DNS Settings&#8221;, you can choose any of the following DNS servers for fast and reliable DNS name [...]
Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html' rel='bookmark' title='How to change Sun Wireless Broadband DNS settings'>How to change Sun Wireless Broadband DNS settings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In relation to my previous post on <a href="http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html" title="How to change Sun Wireless Broadband DNS Settings">&#8220;How to change Sun Wireless Broadband DNS Settings&#8221;</a>, you can choose any of the following DNS servers for fast and reliable DNS name resolution:</p>
<p><a href="http://code.google.com/speed/public-dns/" target="_blank" rel="nofollow" title="Google Public DNS site">Google Public DNS:</a></p>
<p>DNS1: 8.8.8.8<br />
DNS2: 8.8.4.4</p>
<p><a href="http://www.opendns.com/" target="_blank" rel="nofollow" title="OpenDNS website">OpenDNS:</a></p>
<p>DNS1: 208.67.222.222<br />
DNS2: 208.67.220.220</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=862&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html' rel='bookmark' title='How to change Sun Wireless Broadband DNS settings'>How to change Sun Wireless Broadband DNS settings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2010/05/use-google-public-dns-andor-opendns-to-speed-up-internet-access.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for Blackberry</title>
		<link>http://www.pjbacolod.com/2010/03/wordpress-for-blackberry-2.html</link>
		<comments>http://www.pjbacolod.com/2010/03/wordpress-for-blackberry-2.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 09:34:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/2010/03/wordpress-for-blackberry-2.html</guid>
		<description><![CDATA[Trying out wordpress app for Blackberry devices. Cheers! :) No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Trying out wordpress app for Blackberry devices. </p>
<p>Cheers! :)</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=845&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2010/03/wordpress-for-blackberry-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change Sun Wireless Broadband DNS settings</title>
		<link>http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html</link>
		<comments>http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 04:38:54 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[sun broadband]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=821</guid>
		<description><![CDATA[For Sun Wireless Broadband subscribers, here are the steps needed for you to create a new Connection Profile and use your preferred DNS server/s. 1. Open the Sun Broadband Wireless [...]
Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/05/use-google-public-dns-andor-opendns-to-speed-up-internet-access.html' rel='bookmark' title='Use Google Public DNS and/or OpenDNS to speed up internet access'>Use Google Public DNS and/or OpenDNS to speed up internet access</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For Sun Wireless Broadband subscribers, here are the steps needed for you to create a new Connection Profile and use your preferred DNS server/s.</p>
<p>1. Open the Sun Broadband Wireless application and make sure that it&#8217;s disconnected to the internet.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-01.png"><img class="aligncenter size-medium wp-image-822" title="Sun Broadband Wireless application" src="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-01-300x194.png" alt="" width="300" height="194" /></a></p>
<p>2. On the Sun Broadband Wireless application menu, click &#8220;Tools &gt; Options&#8221;. The Sun Broadband Options box will appear. Click on &#8220;Profile Management&#8221; on the left-side menu.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-02.png"><img class="aligncenter size-medium wp-image-823" title="Sun Broadband - Options Menu" src="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-02-300x223.png" alt="" width="300" height="223" /></a></p>
<p>3. On the Sun Broadband Options box, click the &#8220;New&#8221; button. A new profile form will appear.</p>
<p>4. Key in your desired Profile Name (Ex. &#8220;Sun &#8211; Custom DNS&#8221;); Select &#8220;Static&#8221; APN and key in &#8220;fbband&#8221; on the APN: field box. Note: For prepaid subscribers, use &#8220;minternet&#8221; instead.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-03.png"><img class="aligncenter size-medium wp-image-824" title="Sun Broadband - New Profile " src="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-03-300x223.png" alt="" width="300" height="223" /></a></p>
<p>5. Click on the &#8220;Advanced&#8230;&#8221; button. The Advanced Settings box will appear.</p>
<p>6. Un-select &#8220;CHAP&#8221; and select &#8220;PAP&#8221; on the Authentication Protocol Settings; change the DNS Settings to &#8220;Static&#8221; and key in your desired DNS server IP address/es (The OpenDNS servers IP addresses &#8211; 208.67.222.222 and 208.67.220.220 &#8211; were used in the example below). Click the &#8220;Save&#8221; button and click &#8220;OK&#8221;.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-04.png"><img class="aligncenter size-medium wp-image-825" title="Sun Broadband - Advanced Settings" src="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-04-300x223.png" alt="" width="300" height="223" /></a></p>
<p>7. The new profile is saved and you can use this to connect to the internet using your specified DNS server/s.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-05.png"><img class="aligncenter size-medium wp-image-826" title="Sun Broadband - Saved Profile" src="http://www.pjbacolod.com/wp-content/uploads/2010/02/sundns-scrn-05-300x194.png" alt="" width="300" height="194" /></a></p>
<p>In most cases, especially when using OpenDNS servers, you might notice a slight improvement in internet access speeds and connection stability as compared to using the default Sun Broadband DHCP-issued DNS settings.</p>
<p>&#8212;-</p>
<p>Update: 2011-08-30</p>
<p>Just a brief explanation of why you might want to try the above method:</p>
<p>Changing your DNS settings does not guarantee that internet browsing will be faster. This just ensures that you&#8217;ll have a stable DNS server to handle all of your domain name resolution requests.</p>
<p>Some ISP&#8217;s don&#8217;t allot or invest resources for their DNS server infrastructure. So there are instances when the DNS servers used by these ISP&#8217;s can&#8217;t handle the DNS query load from its internet subscriber base. So when the network is full, and the DNS servers are loaded with requests, there are some instances when a simple request for the IP address of a domain, say www.pjbacolod.com, will turn out empty &#8212; hence the intermittent internet connection &#8212; because the DNS servers either get overloaded or they simply crash.</p>
<p>Using powerful public DNS servers, such as Google DNS and OpenDNS, which have a very robust global server infrastructure, ensures that you get at least close to a hundred percent DNS service uptime.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=821&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/05/use-google-public-dns-andor-opendns-to-speed-up-internet-access.html' rel='bookmark' title='Use Google Public DNS and/or OpenDNS to speed up internet access'>Use Google Public DNS and/or OpenDNS to speed up internet access</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2010/02/how-to-change-sun-wireless-broadband-dns-settings.html/feed</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
		<item>
		<title>How to enable telnet on Windows 7</title>
		<link>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html</link>
		<comments>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:22:17 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=751</guid>
		<description><![CDATA[The telnet command is disabled by default in Windows 7. But you can easily enable it using the following steps: 1. Open the Windows 7 Control Panel (Start &#62; Control [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>The <strong>telnet</strong> command is disabled by default in Windows 7. But you can easily enable it using the following steps:</p>
<p>1. Open the Windows 7 Control Panel (Start &gt; Control Panel)</p>
<div id="attachment_752" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-01.jpg"><img class="size-medium wp-image-752" title="Windows 7 Control Panel" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-01-300x223.jpg" alt="Windows 7 Control Panel" width="300" height="223" /></a><p class="wp-caption-text">Windows 7 Control Panel</p></div>
<p>2. Click on the <strong><em>&#8220;Programs&#8221;</em></strong> link.</p>
<div id="attachment_753" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-02.jpg"><img class="size-medium wp-image-753" title="Windows 7 Control Panel - Programs" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-02-300x223.jpg" alt="Windows 7 Control Panel - Programs" width="300" height="223" /></a><p class="wp-caption-text">Windows 7 Control Panel - Programs</p></div>
<p>3. Under the <strong>&#8220;Programs and Features&#8221;</strong> setting, click on <strong><em>&#8220;Turn Windows features on or off&#8221;</em></strong> link.</p>
<div id="attachment_754" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-03.jpg"><img class="size-medium wp-image-754" title="Windows 7 Control Panel - Turn Windows features on or off" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-03-300x262.jpg" alt="Windows 7 Control Panel - Turn Windows features on or off" width="300" height="262" /></a><p class="wp-caption-text">Windows 7 Control Panel - Turn Windows features on or off</p></div>
<p>4. Tick the <strong><em>&#8220;Telnet Client&#8221;</em></strong> selection box. Wait for Windows 7 to install and enable the selected feature.</p>
<div id="attachment_755" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-04-01.jpg"><img class="size-medium wp-image-755" title="Wait..." src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-04-01-300x152.jpg" alt="Wait..." width="300" height="152" /></a><p class="wp-caption-text">Wait...</p></div>
<p>5. Done! You should now be able to run the &#8220;telnet&#8221; command on the Windows 7 command prompt.</p>
<div id="attachment_756" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-05.jpg"><img class="size-medium wp-image-756" title="Windows 7 telnet command" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-05-300x151.jpg" alt="Windows 7 telnet command" width="300" height="151" /></a><p class="wp-caption-text">Windows 7 telnet command</p></div>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=751&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Futility: 10 months to register and be listed, but still late.</title>
		<link>http://www.pjbacolod.com/2009/11/futility-10-months-to-register-and-be-listed-but-still-late.html</link>
		<comments>http://www.pjbacolod.com/2009/11/futility-10-months-to-register-and-be-listed-but-still-late.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 18:04:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=740</guid>
		<description><![CDATA[I was watching a rerun of Star Trek the other night when I came across the uber-famous Borg catchphrase: &#8220;You will be assimilated. Resistance is futile.&#8221; Futility, now that&#8217;s a [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I was watching a rerun of Star Trek the other night when I came across the uber-famous Borg catchphrase:</p>
<blockquote><p>&#8220;You will be assimilated. Resistance is futile.&#8221;</p></blockquote>
<p>Futility, now that&#8217;s a word that&#8217;s quite apt for today&#8217;s events. An &#8220;exercise in futility&#8221; is what some people say about the Comelec&#8217;s ongoing voter&#8217;s registration process.</p>
<p>If the government spent billions of Pesos to computerize the elections, then how much of it was allocated for improving the voter&#8217;s registration process? Isn&#8217;t this process supposed to be the foundation of a good electoral system?</p>
<p>The Comelec stated that they won&#8217;t extend the registration deadline, because they need time to sort out the registration database and come up with the final voter&#8217;s list for their regional offices &#8211; time, in the above context, is unfortunately measured in months.</p>
<p>It&#8217;s quite ironic that they heavily tout the new computerized election system as being capable of tallying all votes and declaring a winner in a span of just a few hours, yet they need a span of several months before the elections so that they can prepare the final voter&#8217;s list.</p>
<p>In hindsight, had a &#8216;proper&#8217; voter&#8217;s registration system been in place, then people wouldn&#8217;t have procrastinated or put off registering for a later date &#8211; most of whom were either turned off by the extremely long queues or slow process, or turned down Comelec staff because they didn&#8217;t meet the voter&#8217;s cut-off criteria (a combination of cut-off period or number of registrants/application forms per day). Had a &#8216;proper&#8217; voter&#8217;s registration system been in place, then there wouldn&#8217;t be a need for such a long preparation &#8220;lead time&#8221; between the voter&#8217;s registration deadline and the actual election date &#8211; ensuring a higher voter-to-population percentage turnout.</p>
<p>At any rate, late is late &#8211; no excuses and <em>&#8220;pasensya na lang po, &#8216;no?&#8221;</em> Let&#8217;s just hope that those who were able to register on time will vote wisely come election time.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=740&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/11/futility-10-months-to-register-and-be-listed-but-still-late.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to solve MS Outlook Error: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221;</title>
		<link>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html</link>
		<comments>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html#comments</comments>
		<pubDate>Fri, 16 Oct 2009 10:41:02 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=670</guid>
		<description><![CDATA[If you cannot open Microsoft Outlook 2007 and get the following error when opening Microsoft Outlook 2007: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221; after previously being able [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you cannot open Microsoft Outlook 2007 and get the following error when opening Microsoft Outlook 2007: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221; after previously being able to open it, then you might want to try the following:</p>
<p>Go to Start &gt; Run and type the following: &#8220;<strong>outlook.exe /resetnavpane</strong>&#8221; (without the quotation marks) and press Enter.</p>
<p>This should fix the problem.</p>
<p>The &#8220;<strong><em>/resetnavpane</em></strong>&#8221; Outlook command switch clears and regenerates the MS Outlook navigation pane for the current profile.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=670&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CA Audit &#8211; How to add an audit node group</title>
		<link>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html</link>
		<comments>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 02:59:15 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ca]]></category>
		<category><![CDATA[ca audit]]></category>
		<category><![CDATA[ca scc]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[walkthrough]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=619</guid>
		<description><![CDATA[In CA Audit,  formerly eTrust Audit, you can group your audit nodes (or audit clients) into logical groups depending on the audit events that are to be monitored. You can [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>In CA Audit,  formerly eTrust Audit, you can group your audit nodes (or audit clients) into logical groups depending on the audit events that are to be monitored.</p>
<p>You can also group audit nodes based on geographical and physical location, workgroup or domain, and you can also group them based on the audit recorder (iRecorder) agent.</p>
<p>Some of the common iRecorder agents are the Windows NT Log iRecorder, Microsoft ISA iRecorder, and the Microsoft Exchange iRecorder.</p>
<p>The following steps show how to add an audit node group to CA Audit:</p>
<p>1. Open the CA Audit Policy Manager and click on &#8220;Audit Nodes&#8221;</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6.jpg"><img class="size-medium wp-image-623 alignnone" title="slide6" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6-300x225.jpg" alt="slide6" width="300" height="225" /></a></p>
<p>2. To add a new group, right-click on &#8220;Targets&#8221; and select &#8220;New Group&#8221;.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide4.jpg"><img class="size-medium wp-image-621 alignnone" title="slide4" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide4-300x225.jpg" alt="slide4" width="300" height="225" /></a></p>
<p>3. <strong>Configure the group name.</strong> Key in the desired name for the Audit Node (AN) group. You can optionally add a short description for the AN group. Click &#8220;OK&#8221; to save and close. The newly created AN group will be added to the &#8220;Targets&#8221; list.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide5.jpg"><img class="size-medium wp-image-622 alignnone" title="slide5" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide5-300x225.jpg" alt="slide5" width="300" height="225" /></a></p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6.jpg"><img class="size-medium wp-image-623 alignnone" title="slide6" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6-300x225.jpg" alt="slide6" width="300" height="225" /></a></p>
<p>4. Associate an Audit Node (AN) Type to the newly created group.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide7.jpg"><img class="size-medium wp-image-624 alignnone" title="slide7" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide7-300x225.jpg" alt="slide7" width="300" height="225" /></a></p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide8.jpg"><img class="size-medium wp-image-625 alignnone" title="slide8" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide8-300x225.jpg" alt="slide8" width="300" height="225" /></a></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=619&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure Windows Active Directory logon scripts</title>
		<link>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html</link>
		<comments>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 09:18:33 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=613</guid>
		<description><![CDATA[There are instances when you need to run a script or program every time a user logs into your Windows network. One way to automate this is to configure and [...]
Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html' rel='bookmark' title='How to call a batch file from within another batch file'>How to call a batch file from within another batch file</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are instances when you need to run a script or program every time a user logs into your Windows network. One way to automate this is to configure and assign a Windows logon script to a particular user or group account.</p>
<p>Enabling Windows logon scripts is a two-stage process. The first stage is to create the script itself, and the second stage is to assign the logon script to a domain user (or group) account.</p>
<p><strong>I.	Where to save the logon script:</strong></p>
<ol>
<li>Create your logon script and save it in the appropriate format (Example: logon.bat, logon.vbs).</li>
<li>Go to your domain controller and copy the script into the <strong>%SystemRoot%\SYSVOL\Sysvol\DomainName\Scripts</strong> local folder (Ex. C:\WINDOWS\sysvol\sysvol\ENTIIS.COM\SCRIPTS).</li>
</ol>
<p>This folder corresponds to the domain controller’s NETLOGON network share folder.</p>
<p>This makes the script accessible over the network via the <strong>\\ServerName\Netlogon</strong> network share folder.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/screenshot-01.jpg"><img class="size-medium wp-image-614 alignnone" title="screenshot-01" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/screenshot-01-300x226.jpg" alt="screenshot-01" width="300" height="226" /></a></p>
<p><strong>To summarize:</strong><br />
If your domain controller’s name “DC01”, and if you have a script named “logon.bat”, which is saved on DC01’s “C:\WINDOWS\sysvol\sysvol\ENTIIS.COM\SCRIPTS” folder, then you can access the script over the network by going to the “\\DC01\netlogon“ network share folder, or by simply running \\DC01\netlogon\logon.bat.</p>
<p class="MsoListParagraphCxSpFirst"><strong><span lang="FIL-PH"><span>II.<span> </span></span></span></strong><strong><span lang="FIL-PH">How to assign a logon script to a user or group:</span></strong></p>
<p class="MsoListParagraphCxSpMiddle"><span><span lang="FIL-PH"><span>1.<span> </span></span></span></span><span><span lang="FIL-PH">First, open &#8220;Active Directory Users and Computers&#8221; on the domain controller.</span></span></p>
<p class="MsoListParagraphCxSpMiddle"><span><span lang="FIL-PH"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/logonscript4.jpg"><img class="size-medium wp-image-616 alignnone" title="Active Directory Users and Computers" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/logonscript4-211x300.jpg" alt="Active Directory Users and Computers" width="211" height="300" /></a><br />
</span></span>
</p>
<p class="MsoNormal"><span lang="FIL-PH"><span>2.<span> </span></span></span><span><span lang="FIL-PH">Now right click on the user you want to have the logon script and select the properties menu.</span></span></p>
<p class="MsoListParagraphCxSpFirst"><span lang="FIL-PH"><span>A properties dialog like the one shown below will appear. Select the &#8216;Profile&#8217; Tab</span><br />
</span>
</p>
<p class="MsoListParagraphCxSpMiddle">By default, if no exact network path is given, as shown in Figure 3, above, Active Directory will assume that the user profile logon script will be at the <strong>%SystemRoot%\SYSVOL\Sysvol\DomainName\Scripts</strong> folder.</p>
<p class="MsoListParagraphCxSpMiddle"><span lang="FIL-PH"><span>3.<span> </span></span></span><span lang="FIL-PH">Click <strong>Apply</strong>.</span></p>
<p class="MsoListParagraphCxSpLast"><span lang="FIL-PH"><span>4.<span> </span></span></span><span lang="FIL-PH">Click <strong>OK</strong>.</span></p>
<p class="MsoNormal"><span lang="FIL-PH">Once configured, the logon script will run (on the local machine where the user logged in) every time the user logs into the network using the corresponding account.</span></p>
<p class="MsoNormal"><span lang="FIL-PH">Note: You have to check if the user account used to log into the local machine has the appropriate rights to run or execute programs.</span></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=613&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html' rel='bookmark' title='How to call a batch file from within another batch file'>How to call a batch file from within another batch file</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to stop sending email you&#8217;ll later regret &#8211; These 4 simple steps</title>
		<link>http://www.pjbacolod.com/2008/10/how-to-stop-sending-email-youll-later-regret-these-4-simple-steps.html</link>
		<comments>http://www.pjbacolod.com/2008/10/how-to-stop-sending-email-youll-later-regret-these-4-simple-steps.html#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:05:16 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[rave]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=509</guid>
		<description><![CDATA[Have you ever sent an email only to realize later on that you shouldn&#8217;t have sent it at all? These things usually happen when you&#8217;re sending mail at the heat [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you ever sent an email only to realize later on that you shouldn&#8217;t have sent it at all? These things usually happen when you&#8217;re sending mail at the heat of your emotions, or when you&#8217;re sleepy, or funnier but plausible still, when you&#8217;re drunk!</p>
<p>It kind of makes you wish you have a Microsoft Exchange server which gives you the ability to &#8220;recall&#8221; your mail, which is a reactive solution.</p>
<p>But if you want things done proactively, then here&#8217;s yet another reason to use <a rel="nofollow" href="http://mail.google.com" target="_blank">Google mail or Gmail</a>. They&#8217;ve added a new application tool in their arsenal, called <a rel="nofollow" href="http://gmailblog.blogspot.com/2008/10/new-in-labs-stop-sending-mail-you-later.html" target="_blank">Mail Goggles</a>, that proactively tries to prevent you from making that email blunder.</p>
<p>When enabled, Mail Goggles will make you solve a couple of math problems after you click &#8220;send&#8221; to make sure that you&#8217;re sober or at least in the right state of mind.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2008/10/mail_goggles.png"><img class="aligncenter size-full wp-image-510" title="Gmail Mail Goggles" src="http://www.pjbacolod.com/wp-content/uploads/2008/10/mail_goggles.png" alt="" width="500" height="255" /></a></p>
<p>But what if you&#8217;re &#8220;mathematically challenged&#8221; you say? The good news is you can set the difficulty level to suit you, the bad news is it won&#8217;t go any lower than 1. Well, tough luck, you might as well let another person do the mailing for you then. Kidding aside, this is one neat tool that can save you from humiliation.</p>
<p>Just follow these 4 simple steps to enable Mail Goggles in Gmail:</p>
<ol>
<li>Click &#8220;Settings&#8221; in the upper right corner of the Gmail window.</li>
<li>Click on the &#8220;Labs&#8221; tab of the Settings page.</li>
<li>Scroll down the Labs section until you see the &#8220;Mail Goggles&#8221; feature and select &#8220;Enable&#8221;.</li>
<li>Scroll down to the bottom part of the Labs section and click on the &#8220;Save Changes&#8221; button.</li>
</ol>
<p>By default, Mail Goggles is only active on weekends (Friday and Saturday) from 10PM to 4AM, since this is the time when you&#8217;ll most likely need it (after partying hard). Once enabled, you can adjust its settings by going to the Gmail General Settings tab.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2008/10/mail_goggles_settings.png"><img class="aligncenter size-full wp-image-511" title="Gmail Mail Goggles Settings" src="http://www.pjbacolod.com/wp-content/uploads/2008/10/mail_goggles_settings.png" alt="" width="400" height="62" /></a></p>
<p>Once everything&#8217;s done, you won&#8217;t have to worry about inadvertently sending that hate letter to your boss, or that private, steamy love letter to your entire address book.</p>
<p>Now if only they had text or sms goggles. :)</p>
<p>&#8212;&#8211;<br />
Related Blog:<br />
<a href="http://gmailblog.blogspot.com/2008/10/new-in-labs-stop-sending-mail-you-later.html" target="_blank" rel="nofollow">Official Gmail Blog: New in Labs: Stop sending mail you later regret</a></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=509&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2008/10/how-to-stop-sending-email-youll-later-regret-these-4-simple-steps.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

