<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>logoff &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/logoff/</link>
	<description>Feed of posts on WordPress.com tagged "logoff"</description>
	<pubDate>Sun, 29 Nov 2009 08:08:07 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Timer de Desligar/Reiniciar/Logoff]]></title>
<link>http://c0d3rs.wordpress.com/2009/11/12/timer-de-desligarreiniciarlogoff/</link>
<pubDate>Thu, 12 Nov 2009 21:58:25 +0000</pubDate>
<dc:creator>c0d3rs</dc:creator>
<guid>http://c0d3rs.wordpress.com/2009/11/12/timer-de-desligarreiniciarlogoff/</guid>
<description><![CDATA[Automático v2.1 Ele serve para você agendar um horario para desligar,reiniciar e fazer logoff a hora]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p align="center"><strong>Automático v2.1</strong></p>
<p align="center"><img src="http://c0d3rs.wordpress.com/files/2009/11/automatico.jpg" alt="" /></p>
<p><!--more--></p>
<p>Ele serve para você agendar um horario para desligar,reiniciar e fazer logoff  a hora desejada por você&#8230;<br />
Simplesmente util para quem baixa programas pesados na madruga e ta com sono só que tem que esperar acabar,mas isso acabo meu programa veio para ajuda-los^^</p>
<p><strong>Bin :</strong><br />
<a href="http://www.4shared.com/file/45171008/489343ca/Automtico_v21.html"><img src="http://c0d3rs.files.wordpress.com/2008/11/livedownloada.png" border="0" alt="" /></a></p>
<p><strong>Source :</strong><br />
<a href="http://www.4shared.com/file/56313107/4c2db24f/Automatico-Source.html"><img src="http://c0d3rs.files.wordpress.com/2008/11/livedownloada.png" border="0" alt="" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How To Detect And Remove Obsolete Users In Oracle]]></title>
<link>http://oralog.wordpress.com/2009/11/11/how-to-detect-and-remove-idle-users-in-oracle/</link>
<pubDate>Wed, 11 Nov 2009 11:40:07 +0000</pubDate>
<dc:creator>Emrah Becer</dc:creator>
<guid>http://oralog.wordpress.com/2009/11/11/how-to-detect-and-remove-idle-users-in-oracle/</guid>
<description><![CDATA[            It is a very common scenario where some users were created in your database at a past ti]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>            It is a very common scenario where some users were created in your database at a past time, the software that owns those users became obsolete but as a dba you are unaware of that because nobody has informed you. Or you may have inherited a database in your new job, which you had no control before. In such a situation the first thing you have to do is to detect users who no longer needs to stay in database and delete their accounts or at least lock them.</p>
<p>Here are the steps to accomplish this:</p>
<p><strong>Step 1: Capture Logon-Logoff Events</strong></p>
<p>* Auditing should be enabled and audit trails must be configured to be kept in database.</p>
<p><span style="color:#0000ff;">sql&#62; alter system set audit_trail = db scope=spfile;<br />
</span>System altered.</p>
<p><span style="color:#0000ff;">SQL&#62; shutdown immediate;<br />
</span>Database closed.<br />
Database dismounted.<br />
ORACLE instance shut down.</p>
<p><span style="color:#0000ff;">SQL&#62; startup;<br />
</span>ORACLE instance started.<br />
Database mounted.<br />
Database opened.</p>
<p>* We have enabled auditing and our audit records will be kept in database. Now lets enable session auditing and capture logon-logoff events.</p>
<p><span style="color:#0000ff;">SQL&#62; audit session ;</span></p>
<p>* That&#8217;s all. From now on whenever a user logs in an audit record will be created. Now you have to wait to let active users login. One month is a reasonable duration.</p>
<p><strong>Step 2: Detect Database Users Who Has Never Logged In</strong></p>
<p>* Audit trails are kept in DBA_AUDIT_TRAIL dictionary view. Lets query the view to detect who has logged in since we enabled auditing.</p>
<p><span style="color:#0000ff;">sql&#62; select distinct username from dba_audit_trail where action_name in (&#8216;LOGOFF&#8217;,'LOGON&#8217;)</span></p>
<p>* The information of all database users can be seen in DBA_USERS dictionary view. Now simply extract the active users from all users list.</p>
<p><span style="color:#0000ff;">sql&#62; select username from dba_users where username not in</span></p>
<p><span style="color:#0000ff;">(<br />
select username from dba_audit_trail where action_name in (&#8216;LOGOFF&#8217;,'LOGON&#8217;) and username is not null<br />
)</span></p>
<p>** Now you have got a list of users who have never logged in to database since you enabled auditing.</p>
<p><strong>Step 3: Take Action</strong></p>
<p>* Feel free to lock all users that are inactive.</p>
<p><span style="color:#0000ff;">sql&#62; alter user &#60;inactive_user&#62; account lock;</span></p>
<p>* Those inactive users never needed to login but they could have login privileges. We unlocked their account. Now they can&#8217;t login even if they have login privileges. Our database became more secure.</p>
<p><strong>Step 4: Evaluating Users and Deleting Unnecessary Schemas</strong></p>
<p>* Is it enough lock accounts only or should we also delete users and their corresponding schema objects. Well, it depends. If user does not own any object do not hesitate to delete the user.</p>
<p><span style="color:#0000ff;">sql&#62; drop user &#60;inactive_user&#62; ;</span></p>
<p>*  But if they own objects, active users may be using those inactive users&#8217; objects like reading from their table, executing their procedures etc. It is better to keep the inactive users with objects at first. Try to find the owner of those users within your organization. If you can&#8217;t find anyone who owns them, those schemas are good candidates for removing. User&#8217;s creation time may also give you an idea.</p>
<p><span style="color:#0000ff;">sql&#62; select created from dba_users where username=&#8217;INACTIVE_USER&#8217;</span></p>
<p>* If you are skeptical you can check one more thing before dropping users. First find objects belonging to an inactive user.</p>
<p><span style="color:#0000ff;">sql&#62; select owner,object_name,object_type from dba_objects where owner=&#8217;&#60;inactive_user&#62;&#8217; and status=&#8217;VALID&#8217;</span></p>
<p>* Audit every activity on that objects</p>
<p><span style="color:#0000ff;">sql&#62; audit all on &#60;inactive_user&#62;.&#60;object_name&#62; ;</span></p>
<p>* Give time to your users. Again one month is a reasonable duration. After that, query audit records. If you detect any activity on those objects, it means that although schema owner never logs on to database, his objects are still used by other active users. Do not ever drop such schemas.</p>
<p>* And finally if no activity is detected on objects drop those schemas.</p>
<p><span style="color:#0000ff;">sql&#62; drop user &#60;schema_name&#62; cascade</span> ;</p>
<p>* The command above will drop user and its objects including those which depend on them.</p>
<p>* It is a good idea to take a dump of your schema before dropping it. Keep your dump files in a safe place. If one day the owner of those users come and ask for their data back you can restore them.</p>
<p><span style="color:#0000ff;">$ exp system/&#60;my_system_user_password&#62;@&#60;my_db_net_service_name&#62; file=&#60;export_file_location&#62; log=&#60;location_of_log_gile&#62;  owner=&#60;inactive_user&#62;</span></p>
<p>* The command above will backup your schema and store it under &#60;export_file_location&#62;.</p>
<p>** Finally the work is completed. Now you have a cleaner database where there is no obsolete users and data. This means your database is more secure and you have more control over it.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Environment Manager New Feature - Logoff]]></title>
<link>http://appsense.wordpress.com/2009/10/27/environment-manager-new-feature-logoff/</link>
<pubDate>Tue, 27 Oct 2009 10:43:41 +0000</pubDate>
<dc:creator>Oliver  Sills</dc:creator>
<guid>http://appsense.wordpress.com/2009/10/27/environment-manager-new-feature-logoff/</guid>
<description><![CDATA[AppSense Environment Manager 8.0 Service Pack 2.0 has introduced some new Logoff functionality. To e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>AppSense Environment Manager 8.0 Service Pack 2.0 has introduced some new <strong>Logoff</strong> functionality.</p>
<p>To enable all Environment Manager actions to complete on logoff and to prevent the logoff black screen from appearing on Vista and Server 2008, the Shutdown Windows API call is detoured.</p>
<p>This API call is called whenever a user logs off or shuts down the system. The detour allows Environment Manager to:</p>
<ul>
<li>Trigger Environment Manager logoff actions</li>
<li>Prevent logoff continuing until all Environment Manager actions have completed</li>
</ul>
<p>When Environment Manager actions are completed or a 60 second default timeout has been passed logoff continues allowing any remaining processes to shut down before Windows itself shuts down. You can override the default timeout by setting a millisecond value in the “LogoffActionWaitTimeout” registry key. Since Environment Manager has already completed its work, it will not be a cause of the Windows logoff black screen.</p>
<p>Whilst the Environment Manager logoff actions are taking place, the system is effectively stalled and the user may wonder what is happening. To alleviate their concerns, a custom screen can be displayed informing the user that Environment Manager is busy. The screen is activated when text for the screen is configured from within the <em>Blocked Text Library</em>.</p>
<p>Adding an entry to the Blocked Text Library with the Title <em>Logoff Message</em> will allow a custom message to be specified for display.</p>
<p style="padding-left:30px;"><strong>Note</strong>: <em>Once logoff continues, Environment Manager has effectively finished for the user session, therefore no more Policy Configuration actions or User Personalization will take place. Additionally, if another application decides to misbehave at this point, the black screen may still appear for those applications.</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[...n&atilde;o esque&ccedil;a fa&ccedil;a sempre logoff e evite problemas com a policia]]></title>
<link>http://rapaduraht.wordpress.com/2009/09/28/no-esquea-faa-sempre-logoff-e-evite-problemas-com-a-policia/</link>
<pubDate>Mon, 28 Sep 2009 03:09:10 +0000</pubDate>
<dc:creator>beto</dc:creator>
<guid>http://rapaduraht.wordpress.com/2009/09/28/no-esquea-faa-sempre-logoff-e-evite-problemas-com-a-policia/</guid>
<description><![CDATA[Salve galera… Sempre em minhas aulas sobre vírus e antivírus uma pergunta extremamente freqüente é a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Salve galera…</p>
<p>Sempre em minhas aulas sobre vírus e antivírus uma pergunta extremamente freqüente é a tradicional: “Qual o melhor antivírus?”, onde sempre respondo com a mesma frase: “A interface entre a cadeira e o teclado ou seja <strong>O USUARIO</strong>!”.</p>
<p>Procuro explicar a importância em saber o que e como acessar e das tarefas básicas de navegação que qualquer usuário deve seguir como um simples logoff</p>
<p>Pois bem… o carinha ai em baixo chamado Jonathan Parker de 19 anos, roubou de uma joalheria de Martinsburg (EUA) jóias avaliadas em R$ 6.000,00. E durante o assalto o cara inventou de acessar sua própria conta no face book pelo notebook da vitima……&#160;&#160; e esqueceu de fazer logoff.</p>
<p>Ai foi fácil né……&#160; logo a policia conseguiu prender <strike>a anta</strike> o rapaz.</p>
<p><a href="http://rapaduraht.files.wordpress.com/2009/09/e5rdb8.jpg"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="e5rdb8" border="0" alt="e5rdb8" src="http://rapaduraht.files.wordpress.com/2009/09/e5rdb8_thumb.jpg?w=192&#038;h=248" width="192" height="248" /></a> </p>
</p>
<p>Pois bem..&#160;&#160; nunca se esqueçam quando forem acessar suas contas bancarias, do Orkut, msn, <strike>assaltar uma joalheria e acessar o face book do computador da vitima</strike> ou qualquer outra coisa na net tomem os cuidados básicos e façam sempre logoff..</p>
<p>So.. That´s all folks!</p>
<p>Fonte: <a href="http://copiameufilho.com/2009/09/nerd-ladrao.html" target="_blank">Copia, Meu Filho</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NEW FEATURE No. 7 - AppSense Environment Manager 8.0 Service Pack 2 - Trigger Action Time Audit Event]]></title>
<link>http://appsense.wordpress.com/2009/09/02/new-feature-no-7-appsense-environment-manager-8-0-service-pack-2-trigger-action-time-audit-event/</link>
<pubDate>Wed, 02 Sep 2009 09:55:06 +0000</pubDate>
<dc:creator>Oliver  Sills</dc:creator>
<guid>http://appsense.wordpress.com/2009/09/02/new-feature-no-7-appsense-environment-manager-8-0-service-pack-2-trigger-action-time-audit-event/</guid>
<description><![CDATA[This is the seventh installment in a series of posts about the new features and options in AppSense ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This is the seventh installment in a series of posts about the new features and options in AppSense Version 8 Service Pack 2.  (If you have not yet downloaded this latest release, you can read more info and download it from <a title="SP2 Release" href="http://appsense.wordpress.com/2009/08/24/appsense-management-suite-version-8-service-pack-2-is-released/" target="_blank"><span style="color:#0000ff;">here</span></a> )</p>
<p>AppSense Environment Manager Service Pack 2.0 introduces a new auditing event &#8211; <strong>Trigger Action Time.</strong></p>
<p>A Trigger is the instigator for both conditions and actions to be processed.   For example:</p>
<p>Please see the screenshot below showing that when the &#8216;JD Edwards&#8217; application is launched, and the user is running the application on a client within a &#8217;set IP address range&#8217;, then a specific printer is automatically mapped as the only printer available for the application.</p>
<div id="attachment_476" class="wp-caption aligncenter" style="width: 487px"><a href="http://appsense.wordpress.com/files/2009/07/printer.jpg"><img class="size-full wp-image-476" title="Printer" src="http://appsense.wordpress.com/files/2009/07/printer.jpg" alt="Printer" width="477" height="209" /></a><p class="wp-caption-text">Click to see full size capture</p></div>
<p>In the above case, the Trigger is the  launching of  &#8216;an&#8217; application, the condition is meeting both the application being &#8216;JDEwards.exe&#8217; and the IP address range criteria and the policy action is the mapping of the specific printer.</p>
<p>Other Trigger actions include Computer Startup, Computer Shutdown, User Logon, User Logoff, Process Started, Process Stopped, Network Connect, Network Disconnect etc…</p>
<p>On selection, this new event is raised for every used Trigger.  This details the start time, end time and duration for the chosen trigger conditions and actions to complete.</p>
<p>P:S<br />
As this is an ever growing blog topic, the previous posts on the other new features we have detailed can be found below:</p>
<p><a title="NEW FEATURE No. 1" rel="bookmark" href="http://appsense.wordpress.com/2009/08/24/appsense-environment-manager-8-0-service-pack-2-new-feature-run-as/" target="_blank"><span style="color:#0000ff;">NEW FEATURE No. 1 – AppSense Environment Manager 8.0 Service Pack 2 – Run As</span></a></p>
<p style="text-align:left;"><a title="NEW FEATURE No. 2" rel="bookmark" href="http://appsense.wordpress.com/2009/08/25/appsense-environment-manager-version-8-service-pack-2-new-feature-connect-as/" target="_blank"><span style="color:#0000ff;">NEW FEATURE No. 2 – AppSense Environment Manager 8.0 Service Pack 2 – Connect As</span></a></p>
<p><a title="NEW FEATURE No. 3 " rel="bookmark" href="http://appsense.wordpress.com/2009/08/26/new-feature-no-3-appsense-environment-manager-8-0-service-pack-2-improved-compression-and-data-handling-protocol/" target="_blank"><span style="color:#0000ff;">NEW FEATURE No. 3 – AppSense Environment Manager 8.0 Service Pack 2 – Improved compression and data handling protocol</span></a></p>
<p style="text-align:left;"><a title="NEW FEATURE No. 4" rel="bookmark" href="http://appsense.wordpress.com/2009/08/27/new-feature-n0-4-appsense-environment-manager-8-0-service-pack-2-new-feature-manipulation-of-files-in-personalization-analysis/" target="_blank"><span style="color:#0000ff;">NEW FEATURE No. 4 – AppSense Environment Manager 8.0 Service Pack 2 – Manipulation of files in Personalization Analysis</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 5 – AppSense Environment Manager 8.0 Service Pack 2 – Run Once" rel="bookmark" href="http://appsense.wordpress.com/2009/08/28/new-feature-no-4-appsense-environment-manager-8-0-service-pack-2-run-once/"><span style="color:#0000ff;">NEW FEATURE No. 5 – AppSense Environment Manager 8.0 Service Pack 2 – Run Once</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 6 – AppSense Environment Manager 8.0 Service Pack 2 – Group SID Refresh" rel="bookmark" href="http://appsense.wordpress.com/2009/09/01/new-feature-no-5-appsense-environment-manager-8-0-service-pack-2-group-sid-refresh/"><span style="color:#0000ff;">NEW FEATURE No. 6 – AppSense Environment Manager 8.0 Service Pack 2 – Group SID Refresh</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 7 – AppSense Environment Manager 8.0 Service Pack 2 – Trigger Action Time Audit Event" rel="bookmark" href="http://appsense.wordpress.com/2009/09/02/new-feature-no-7-appsense-environment-manager-8-0-service-pack-2-trigger-action-time-audit-event/"><span style="color:#0000ff;">NEW FEATURE No. 7 – AppSense Environment Manager 8.0 Service Pack 2 – Trigger Action Time Audit Event</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 8 – AppSense Environment Manager 8.0 Service Pack 2 – Stop If Fails" rel="bookmark" href="http://appsense.wordpress.com/2009/09/07/new-feature-no-8-appsense-environment-manager-8-0-service-pack-2-stop-if-fails/"><span style="color:#0000ff;">NEW FEATURE No. 8 – AppSense Environment Manager 8.0 Service Pack 2 – Stop If Fails</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 9 – AppSense Environment Manager 8.0 Service Pack 2 – New Application Categories in the User Interface" rel="bookmark" href="http://appsense.wordpress.com/2009/09/11/new-feature-no-9-appsense-environment-manager-8-0-service-pack-2-new-application-categories-in-the-user-interface/"><span style="color:#0000ff;">NEW FEATURE No. 9 – AppSense Environment Manager 8.0 Service Pack 2 – New Application Categories in the User Interface</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 10 – AppSense Environment Manager 8.0 Service Pack 2 – Refresh" rel="bookmark" href="http://appsense.wordpress.com/2009/09/14/new-feature-no-10-appsense-environment-manager-8-0-service-pack-2-refresh/"><span style="color:#0000ff;">NEW FEATURE No. 10 – AppSense Environment Manager 8.0 Service Pack 2 – Refresh</span></a></p>
<p style="text-align:left;"><a title="Permanent Link: NEW FEATURE No. 11 – AppSense Environment Manager 8.0 Service Pack 2 – Registry Hive Exclusions" rel="bookmark" href="http://appsense.wordpress.com/2009/09/17/new-feature-no-11-appsense-environment-manager-8-0-service-pack-2-registry-hive-exclusions/"><span style="color:#0000ff;">NEW FEATURE No. 11 – AppSense Environment Manager 8.0 Service Pack 2 – Registry Hive Exclusions</span></a><a title="NEW FEATURE N0. 4" rel="bookmark" href="http://appsense.wordpress.com/2009/08/27/new-feature-n0-4-appsense-environment-manager-8-0-service-pack-2-new-feature-manipulation-of-files-in-personalization-analysis/" target="_blank"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cum sa nu mai uiti niciodata stick-ul USB in calculator ]]></title>
<link>http://stiicum.wordpress.com/2009/08/09/cum-sa-nu-mai-uiti-niciodata-stick-ul-usb-in-calculator/</link>
<pubDate>Sun, 09 Aug 2009 11:50:26 +0000</pubDate>
<dc:creator>ludovicianul</dc:creator>
<guid>http://stiicum.wordpress.com/2009/08/09/cum-sa-nu-mai-uiti-niciodata-stick-ul-usb-in-calculator/</guid>
<description><![CDATA[Probabil ca vi s-a intamplat de multe ori sa plecati grabiti de la servici si cand ati ajuns acasa s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Probabil ca vi s-a intamplat de multe ori sa plecati grabiti de la servici si cand ati ajuns acasa sa constatati ca ati uitat USB memory stick-ul la servici. De-acum totul poate fi dat uitarii. O sa prezint cativa pasi care trebuie urmati pentru ca sa nu se mai intample niciodata asta. Desi la prima vedere pare sa necesite cunostinte IT avansate, totul este intuitiv si foarte usor de realizat. Iata ce trebuie sa faceti:</p>
<p><strong>1.</strong> Copiati urmatorul cod in NOTEPAD (nu Word, Wordpad sau alt program de editare) si salvati-l cu numele <strong>usbscript.vbs</strong>:<br />
<code>strComputer = "."<br />
On Error Resume Next<br />
Set WshShell = CreateObject("Wscript.Shell")<br />
beep = chr(007)<br />
Set objWMIService = GetObject("winmgmts:\\" &#38; strComputer &#38; "\root\cimv2")<br />
Set colItems = objWMIService.ExecQuery("Select * from Win32_DiskDrive WHERE InterfaceType='USB'",,48)<br />
intCount = 0<br />
For Each drive In colItems<br />
If drive.mediaType &#60;&#62; "" Then<br />
intCount = intCount + 1<br />
End If<br />
Next<br />
If intCount &#62; 0 Then<br />
WshShell.Run "cmd /c @echo " &#38; beep, 0<br />
MsgBox "Nu uita sa scoti stick-ul USB din unitate!"<br />
End If</code></p>
<p><strong>2.</strong> Apasati <!--more-->Start-&#62;Run si aici scrieti &#8220;gpedit.msc&#8221; dupa care apasati enter.</p>
<p><img class="aligncenter size-full wp-image-106" title="run" src="http://stiicum.wordpress.com/files/2009/08/run.jpg" alt="run" width="359" height="232" /></p>
<p><strong>3. </strong>In fereastra care se deschide accesati: &#8220;User Configuration-&#62; Windows Settings-&#62; Scripts(Logon/Logoff). Dati dublu-click apoi pe Logoff (in partea dreapta). In fereastra care se deschide apasati &#8220;Add&#8230;&#8221;</p>
<p><img class="aligncenter size-full wp-image-107" title="group_policy" src="http://stiicum.wordpress.com/files/2009/08/group_policy.jpg" alt="group_policy" width="500" height="439" /></p>
<p><strong>4. </strong>In Windows Explorer intrati la &#8220;Tools-&#62;Folder Options-&#62;View&#8221; si aici bifati &#8220;Show hidden files and folders&#8221;.</p>
<p><strong>5. </strong>Copiati<strong> </strong>fisierul pe care l-ati creat mai sus (usbscript.vbs) in: &#8220;C:\WINDOWS\system32\GroupPolicy\User\Scripts\Logoff&#8221;.</p>
<p><img class="aligncenter size-full wp-image-108" title="logoff" src="http://stiicum.wordpress.com/files/2009/08/logoff.jpg" alt="logoff" width="417" height="203" /></p>
<p><strong>6. </strong>Acum reveniti la fereastra care s-a deschis dupa ce ati apasat &#8220;Add&#8230;&#8221;. Apasati in aceasta fereastra &#8220;Browse&#8230;&#8221; si selectati fisierul &#8220;usbscript.vbs&#8221; dupa care apasati &#8220;Open&#8221;. Acum apasti &#8220;Ok&#8221; in toate ferestrele care au ramas deschise.</p>
<p><img class="aligncenter size-full wp-image-109" title="browse" src="http://stiicum.wordpress.com/files/2009/08/browse.jpg" alt="browse" width="499" height="547" /></p>
<p>Cam asta este tot. De-acum puteti fi siguri ca nu o sa mai uitati niciodata stick-ul USB la servici sau acasa. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Login Interface]]></title>
<link>http://cazmokid.wordpress.com/2009/07/11/new-login-interface/</link>
<pubDate>Sat, 11 Jul 2009 17:20:52 +0000</pubDate>
<dc:creator>Sweetkid123</dc:creator>
<guid>http://cazmokid.wordpress.com/2009/07/11/new-login-interface/</guid>
<description><![CDATA[Hello Cazmos, Sweetkid123 here. I have found out that the Planet Cazmo Login Interface has changed a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello Cazmos,</p>
<p>Sweetkid123 here. I have found out that the Planet Cazmo Login Interface has changed a lot. They have changed it so it has the Planet Cazmo Commercial embedded into the flash login from Youtube.com. It is very cool. They also have photos of Planet Cazmo in it on the right side of it. They changed the graphics on the login aswell as the Create a cazmo (even though the Create an Account &#8211; Cazmo Creator is older by a few weeks).</p>
<p>Here is the Brand New Login!</p>
<div id="attachment_136" class="wp-caption aligncenter" style="width: 520px"><a href="http://cazmokid.wordpress.com/files/2009/07/newlogin1.png"><img class="size-full wp-image-136" title="new-interface" src="http://cazmokid.wordpress.com/files/2009/07/newlogin1.png" alt="The New Login" width="510" height="329" /></a><p class="wp-caption-text">The New Login</p></div>
<p>Thats it for todays post. Please check back whenever you can and Please vote in the Poll!</p>
<a name="pd_a_1776106"></a><div class="PDS_Poll" id="PDI_container1776106" style="display:inline-block;"></div><script type="text/javascript" language="javascript" charset="utf-8" src="http://static.polldaddy.com/p/1776106.js"></script>
		<noscript>
		<a href="http://answers.polldaddy.com/poll/1776106/">View This Poll</a><br/><span style="font-size:10px;"><a href="http://www.polldaddy.com">survey</a></span>
		</noscript>
<p>The Ambassador</p>
<p>-Sweetkid123</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to change Windows XP Logon Screen Wallpaper]]></title>
<link>http://ozansafi.wordpress.com/2009/03/24/how-to-change-windows-xp-logon-screen-wallpaper/</link>
<pubDate>Tue, 24 Mar 2009 07:58:33 +0000</pubDate>
<dc:creator>Ozan Safi</dc:creator>
<guid>http://ozansafi.wordpress.com/2009/03/24/how-to-change-windows-xp-logon-screen-wallpaper/</guid>
<description><![CDATA[It is actually just a simple registry hack. Just open up regedit and go to: HKEY USERS\ .DEFAULT\Con]]></description>
<content:encoded><![CDATA[It is actually just a simple registry hack. Just open up regedit and go to: HKEY USERS\ .DEFAULT\Con]]></content:encoded>
</item>
<item>
<title><![CDATA[UPLOAD AMAL,DOWNLOADS PAHALA,LOGIN SURGA,LOGOFF NERAKA]]></title>
<link>http://infotekkom.wordpress.com/2009/03/23/upload-amaldownloads-pahalalogin-surgalogoff-neraka/</link>
<pubDate>Mon, 23 Mar 2009 02:45:37 +0000</pubDate>
<dc:creator>Abdul Ghofur</dc:creator>
<guid>http://infotekkom.wordpress.com/2009/03/23/upload-amaldownloads-pahalalogin-surgalogoff-neraka/</guid>
<description><![CDATA[Manusia diciptakan di dunia ini mempunyai tugas khusus. Tugas khusus ini langsung diberikan oleh san]]></description>
<content:encoded><![CDATA[Manusia diciptakan di dunia ini mempunyai tugas khusus. Tugas khusus ini langsung diberikan oleh san]]></content:encoded>
</item>
<item>
<title><![CDATA[Communicator 2007 hangs on shutdown/logoff - FIXED!]]></title>
<link>http://jimraymond.wordpress.com/2009/03/20/communicator-2007-hangs-on-shutdownlogoff-fixed/</link>
<pubDate>Fri, 20 Mar 2009 21:18:47 +0000</pubDate>
<dc:creator>jimraymond</dc:creator>
<guid>http://jimraymond.wordpress.com/2009/03/20/communicator-2007-hangs-on-shutdownlogoff-fixed/</guid>
<description><![CDATA[I love reading Scott&#8217;s blog. I love troubleshooting, but he takes it to a new level&#8230; htt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I love reading Scott&#8217;s blog. I love troubleshooting, but he takes it to a new level&#8230;<br />
<a href="http://blogs.msdn.com/scottos/archive/2009/03/20/office-communicator-2007-hangs-on-shutdown-logoff-fixed.aspx">http://blogs.msdn.com/scottos/archive/2009/03/20/office-communicator-2007-hangs-on-shutdown-logoff-fixed.aspx</a></p>
<p>&#8220;<strong><span style="font-size:small;"><span style="font-family:Calibri;">Customers running Office Communicator 2007 + Office 2007:</span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;">This issue is fixed by applying the hotfix referenced in KB 961752 (</span><a href="http://support.microsoft.com/kb/961752"><span style="font-size:small;font-family:Calibri;">http://support.microsoft.com/kb/961752</span></a><span style="font-size:small;"><span style="font-family:Calibri;">), and although the KB article does not specifcally call out this issue, we are working on both creating a new KB to address this, as well posting this blog entry to increase its visibility.</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:small;"><span style="font-family:Calibri;">Customers running Office Communicator 2007 + Office 2003:</span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;">Our Office Development Team is moving forward with creating corresponding official hotfix for Office 2003.  Although it’s a bit early to discuss timeframes in terms of when you can expect the public hotfix, we have a private copy of the fixed MSMAPI32.DLL.  If you would like to test this build, please engage Microsoft Customer Support Services via <a href="http://support.microsoft.com/">http://support.microsoft.com</a>.  Premier customers: please leverage your Technical Account Manager to initiate the case creation process.</span></span>&#8220;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[N&atilde;o deixe o Windows Update reiniciar seu computador]]></title>
<link>http://blackcow.wordpress.com/2009/01/13/no-deixe-o-windows-update-reiniciar-seu-computador/</link>
<pubDate>Tue, 13 Jan 2009 12:53:14 +0000</pubDate>
<dc:creator>alexsander2</dc:creator>
<guid>http://blackcow.wordpress.com/2009/01/13/no-deixe-o-windows-update-reiniciar-seu-computador/</guid>
<description><![CDATA[Muitas vezes após um Update o Windows reinicia a máquina sem a nossa permissão e perdemos tudo que e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Muitas vezes após um Update o Windows reinicia a máquina sem a nossa permissão e perdemos tudo que estavamos fazendo. Aquele download que já estava em 98%, um documento aberto que não estava salvo, etc. Para previnir que isso aconteça existe um projeto hospedado no Google Code, chamado Shutdownguard. Em qualquer tentativa de reiniciar ou fazer logoff, será apresentado um pequeno aviso na barra de tarefas perguntando se você realmente quer fazer isso.</p>
<p><img src="http://shutdownguard.googlecode.com/svn/wiki/ShutdownGuard.png" /> </p>
<p>&#160;</p>
<p><a href="http://code.google.com/p/shutdownguard/" target="_blank">Download</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Not Displaying Logon, Logoff, Startup and Shutdown Status Messages]]></title>
<link>http://lionjkt.wordpress.com/2008/12/30/not-displaying-logon-logoff-startup-and-shutdown-status-messages/</link>
<pubDate>Tue, 30 Dec 2008 09:35:49 +0000</pubDate>
<dc:creator>lionjkt</dc:creator>
<guid>http://lionjkt.wordpress.com/2008/12/30/not-displaying-logon-logoff-startup-and-shutdown-status-messages/</guid>
<description><![CDATA[To turn these off: Start Regedit Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\]]></description>
<content:encoded><![CDATA[To turn these off: Start Regedit Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\]]></content:encoded>
</item>
<item>
<title><![CDATA[PC Control Scheduler]]></title>
<link>http://nineven.wordpress.com/2008/12/12/pc-control-scheduler/</link>
<pubDate>Fri, 12 Dec 2008 01:08:54 +0000</pubDate>
<dc:creator>nineven</dc:creator>
<guid>http://nineven.wordpress.com/2008/12/12/pc-control-scheduler/</guid>
<description><![CDATA[PC Control Scheduler is a very useful application that allow you to schedule an action to your PC. F]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://nineven.files.wordpress.com/2008/12/pccs3.jpg" target="_blank"><img style="display:inline;border-width:0;margin:0 0 0 15px;" title="PC Control Scheduler" border="0" alt="PC Control Scheduler" align="right" src="http://nineven.files.wordpress.com/2008/12/pccs-thumb2.jpg?w=176&#038;h=240" width="176" height="240" /></a></p>
<p><span style="font-family:tahoma,arial,helvetica,sans-serif;font-size:x-small;"></span></p>
<p><span style="font-family:tahoma,arial,helvetica,sans-serif;font-size:x-small;"></span></p>
<p><span style="font-family:tahoma,arial,helvetica,sans-serif;font-size:x-small;"></span></p>
<p>PC Control Scheduler is a very useful application that allow you to schedule an action to your PC.</p>
<p>First, choose an action clicking on one of the 3 buttons: Shutdown, Restart or Logoff.</p>
<p>Then choose in how much time that action have to be performed.</p>
<p>Press START and minimize PC Control Scheduler in the system tray.</p>
<p>You can stop the countdown by clicking on the icon in the system tray then clicking on CANCEL or just by closing PC Control Scheduler.</p>
<p>&#160;</p>
<p> <span style="font-family:tahoma,arial,helvetica,sans-serif;font-size:x-small;"></span>
<p><a href="http://cvgncw.blu.livefilestore.com/y1pHY49ndIMLnyJDVoZjyn9w1NkeRm6S6k6K6bQl_t2Iy_jqeMV8aHlZzUrbtWTQs0Xg0XcWMbvGks/PC%20Control%20Scheduler.exe">Download PC Control Scheduler</a></p>
<p>(Requirements: Windows XP or Vista and .NET Framework 2.0)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WINDOWS XP COMMANDS ]]></title>
<link>http://riteshhowto.wordpress.com/2008/09/17/windows-xp-commands/</link>
<pubDate>Wed, 17 Sep 2008 11:27:06 +0000</pubDate>
<dc:creator>riksgonemad</dc:creator>
<guid>http://riteshhowto.wordpress.com/2008/09/17/windows-xp-commands/</guid>
<description><![CDATA[An A-Z Index of the Windows XP command line ADDUSERS Add or list users to/from a CSV file ARP Addres]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span class="DNNAligncenter"></span></p>
<p class="head">An A-Z Index of the <span style="color:#0099ff;">Windows XP</span> command  line</p>
<pre><a href="http://www.ss64.com/nt/addusers.html">ADDUSERS</a> Add or list users to/from a CSV file
<a href="http://www.ss64.com/nt/arp.html">ARP</a>      Address Resolution Protocol
<a href="http://www.ss64.com/nt/assoc.html">ASSOC</a>    Change file extension associations
<a href="http://www.ss64.com/nt/associate.html">ASSOCIAT</a> One step file association
<a href="http://www.ss64.com/nt/at.html">AT</a>       Schedule a command to run at a later time
<a href="http://www.ss64.com/nt/attrib.html">ATTRIB</a>   Change file attributes

<a href="http://www.ss64.com/nt/bootcfg.html">BOOTCFG</a>  Edit Windows boot settings
<a href="http://www.ss64.com/nt/browstat.html">BROWSTAT</a> Get domain, browser and PDC info

<a href="http://www.ss64.com/nt/cacls.html">CACLS</a>    Change file permissions
<a href="http://www.ss64.com/nt/call.html">CALL</a>     Call one batch program from another
<a href="http://www.ss64.com/nt/cd.html">CD</a>       Change Directory - move to a specific Folder
<a href="http://www.ss64.com/nt/change.html">CHANGE</a>   Change Terminal Server Session properties
<a href="http://www.ss64.com/nt/chkdsk.html">CHKDSK</a>   Check Disk - check and repair disk problems
<a href="http://www.ss64.com/nt/chkntfs.html">CHKNTFS</a>  Check the NTFS file system
<a href="http://www.ss64.com/nt/choice.html">CHOICE</a>   Accept keyboard input to a batch file
<a href="http://www.ss64.com/nt/cipher.html">CIPHER</a>   Encrypt or Decrypt files/folders
<a href="http://www.ss64.com/nt/cleanmgr.html">CleanMgr</a> Automated cleanup of Temp files, recycle bin
CLEARMEM Clear memory leaks
<a href="http://www.ss64.com/nt/clip.html">CLIP</a>     Copy STDIN to the Windows clipboard.
CLS      Clear the screen
CLUSTER  Windows Clustering
<a href="http://www.ss64.com/nt/cmd.html">CMD</a>      Start a new CMD shell
<a href="http://www.ss64.com/nt/color.html">COLOR</a>    Change colors of the CMD window
<a href="http://www.ss64.com/nt/comp.html">COMP</a>     Compare the contents of two files or sets of files
COMPACT  Compress files or folders on an NTFS partition
COMPRESS Compress individual files on an NTFS partition
<a href="http://www.ss64.com/nt/con2prt.html">CON2PRT</a>  Connect or disconnect a Printer
CONVERT  Convert a FAT drive to NTFS.
<a href="http://www.ss64.com/nt/copy.html">COPY</a>     Copy one or more files to another location
<a href="http://www.ss64.com/nt/csccmd.html">CSCcmd</a>   Client-side caching (Offline Files)
<a href="http://www.ss64.com/nt/csvde.html">CSVDE</a>    Import or Export Active Directory data 

<a href="http://www.ss64.com/nt/date.html">DATE</a>     Display or set the date
Dcomcnfg DCOM Configuration Utility
<a href="http://www.ss64.com/nt/defrag.html">DEFRAG</a>   Defragment hard drive
<a href="http://www.ss64.com/nt/del.html">DEL</a>      Delete one or more files
<a href="http://www.ss64.com/nt/delprof.html">DELPROF</a>  Delete NT user profiles
<a href="http://www.ss64.com/nt/del.html">DELTREE</a>  Delete a folder and all subfolders
<a href="http://support.microsoft.com/?kbid=311272">DevCon</a>   Device Manager Command Line Utility
<a href="http://www.ss64.com/nt/dir.html">DIR</a>      Display a list of files and folders
<a href="http://www.ss64.com/nt/diruse.html">DIRUSE</a>   Display disk usage
<a href="http://www.ss64.com/nt/diskcomp.html">DISKCOMP</a> Compare the contents of two floppy disks
<a href="http://www.ss64.com/nt/diskcopy.html">DISKCOPY</a> Copy the contents of one floppy disk to another
DNSSTAT  DNS Statistics
<a href="http://www.ss64.com/nt/doskey.html">DOSKEY</a>   Edit command line, recall commands, and create macros
<a href="http://www.ss64.com/nt/dsadd.html">DSADD</a>    Add user (computer, group..) to active directory
DSQUERY  List items in active directory
<a href="http://www.ss64.com/nt/dsmod.html">DSMOD</a>    Modify user (computer, group..) in active directory

<a href="http://www.ss64.com/nt/echo.html">ECHO</a>     Display message on screen
<a href="http://www.ss64.com/nt/endlocal.html">ENDLOCAL</a> End localisation of environment changes in a batch file
<a href="http://www.ss64.com/nt/del.html">ERASE</a>    Delete one or more files
<a href="http://www.ss64.com/nt/exit.html">EXIT</a>     Quit the current script/routine and set an errorlevel.
<a href="http://www.ss64.com/nt/expand.html">EXPAND</a>   Uncompress files
<a href="http://www.ss64.com/nt/extract.html">EXTRACT</a>  Uncompress CAB files

<a href="http://www.ss64.com/nt/fc.html">FC</a>       Compare two files
<a href="http://www.ss64.com/nt/fdisk.html">FDISK</a>    Disk Format and partition
<a href="http://www.ss64.com/nt/find.html">FIND</a>     Search for a text string in a file
<a href="http://www.ss64.com/nt/findstr.html">FINDSTR</a>  Search for strings in files
<a href="http://www.ss64.com/nt/for_f.html">FOR /F</a>   Loop command: against a set of files
<a href="http://www.ss64.com/nt/for_cmd.html">FOR /F</a>   Loop command: against the results of another command
<a href="http://www.ss64.com/nt/for.html">FOR</a>      Loop command: all options Files, Directory, List
<a href="http://www.ss64.com/nt/forfiles.html">FORFILES</a> Batch process multiple files
<a href="http://www.ss64.com/nt/format.html">FORMAT</a>   Format a disk
FREEDISK Check free disk space (in bytes)
<a href="http://www.ss64.com/nt/fsutil.html">FSUTIL</a>   File and Volume utilities
<a href="http://www.ss64.com/nt/ftp.html">FTP</a>      File Transfer Protocol
<a href="http://www.ss64.com/nt/ftype.html">FTYPE</a>    Display or modify file types used in file extension associations

<a href="http://www.ss64.com/nt/global.html">GLOBAL</a>   Display membership of global groups
<a href="http://www.ss64.com/nt/goto.html">GOTO</a>     Direct a batch program to jump to a labelled line

<a href="http://www.ss64.com/nt/help.html">HELP</a>     Online Help
<a href="http://www.ss64.com/nt/hfnetchk.html">HFNETCHK</a> Network Security Hotfix Checker 

<a href="http://www.ss64.com/nt/if.html">IF</a>       Conditionally perform a command
<a href="http://www.ss64.com/nt/ifmember.html">IFMEMBER</a> Is the current user in an NT Workgroup
<a href="http://www.ss64.com/nt/ipconfig.html">IPCONFIG</a> Configure IP

<a href="http://www.ss64.com/nt/kill.html">KILL</a>     Remove a program from memory

<a href="http://www.ss64.com/nt/label.html">LABEL</a>    Edit a disk label
<a href="http://www.ss64.com/nt/local.html">LOCAL</a>    Display membership of local groups
<a href="http://www.ss64.com/nt/logevent.html">LOGEVENT</a> Write text to the NT event viewer.
<a href="http://www.ss64.com/nt/logoff.html">LOGOFF</a>   Log a user off
<a href="http://www.ss64.com/nt/logtime.html">LOGTIME</a>  Log the date and time in a file

<a href="http://www.ss64.com/nt/mapisend.html">MAPISEND</a> Send email from the command line
<a href="http://www.ss64.com/nt/mem.html">MEM</a>      Display memory usage
<a href="http://www.ss64.com/nt/md.html">MD</a>       Create new folders
<a href="http://www.ss64.com/nt/mklink.html">MKLINK</a>   Create a symbolic link (linkd)
<a href="http://www.ss64.com/nt/mode.html">MODE</a>     Configure a system device
<a href="http://www.ss64.com/nt/more.html">MORE</a>     Display output, one screen at a time
<a href="http://www.ss64.com/nt/mountvol.html">MOUNTVOL</a> Manage a volume mount point
<a href="http://www.ss64.com/nt/move.html">MOVE</a>     Move files from one folder to another
<a href="http://www.ss64.com/nt/moveuser.html">MOVEUSER</a> Move a user from one domain to another
<a href="http://www.ss64.com/nt/msg.html">MSG</a>      Send a message
<a href="http://www.ss64.com/nt/msiexec.html">MSIEXEC</a>  Microsoft Windows Installer
<a href="http://www.ss64.com/nt/msinfo.html">MSINFO</a>   Windows NT diagnostics
<a href="http://www.ss64.com/nt/mstsc.html">MSTSC</a>    Terminal Server Connection (Remote Desktop Protocol)
<a href="http://www.ss64.com/nt/munge.html">MUNGE</a>    Find and Replace text within file(s)
<a href="http://www.ss64.com/nt/mv.html">MV</a>       Copy in-use files<a href="http://www.ss64.com/nt/net.html">

NET</a>      Manage network resources
<a href="http://www.ss64.com/nt/netdom.html">NETDOM</a>   Domain Manager
<a href="http://www.ss64.com/nt/netsh.html">NETSH</a>    Configure network protocols
<a href="http://www.ss64.com/nt/netsvc.html">NETSVC</a>   Command-line Service Controller
<a href="http://www.ss64.com/nt/nbtstat.html">NBTSTAT</a>  Display networking statistics (NetBIOS over TCP/IP)
<a href="http://www.ss64.com/nt/netstat.html">NETSTAT</a>  Display networking statistics (TCP/IP)
<a href="http://www.ss64.com/nt/now.html">NOW</a>      Display the current Date and Time
<a href="http://www.ss64.com/nt/nslookup.html">NSLOOKUP</a> Name server lookup
<a href="http://www.ss64.com/nt/ntbackup.html">NTBACKUP</a> Backup folders to tape
<a href="http://www.ss64.com/nt/ntrights.html">NTRIGHTS</a> Edit user account rights

<a href="http://www.ss64.com/nt/path.html">PATH</a>     Display or set a search path for executable files
<a href="http://www.ss64.com/nt/pathping.html">PATHPING</a> Trace route plus network latency and packet loss
<a href="http://www.ss64.com/nt/pause.html">PAUSE</a>    Suspend processing of a batch file and display a message
<a href="http://www.ss64.com/nt/perms.html">PERMS</a>    Show permissions for a user
<a href="http://www.ss64.com/nt/monitor.html">PERFMON</a>  Performance Monitor
<a href="http://www.ss64.com/nt/ping.html">PING</a>     Test a network connection
<a href="http://www.ss64.com/nt/popd.html">POPD</a>     Restore the previous value of the current directory saved by PUSHD
<a href="http://www.ss64.com/nt/portqry.html">PORTQRY</a>  Display the status of ports and services
<a href="http://www.ss64.com/nt/print.html">PRINT</a>    Print a text file
<a href="http://www.ss64.com/nt/prncnfg.html">PRNCNFG</a>  Display, configure or rename a printer
<a href="http://www.ss64.com/nt/prnmngr.html">PRNMNGR</a>  Add, delete, list printers set the default printer
<a href="http://www.ss64.com/nt/prompt.html">PROMPT</a>   Change the command prompt
<a href="http://www.ss64.com/nt/psexec.html">PsExec</a>     Execute process remotely
<a href="http://www.ss64.com/nt/psfile.html">PsFile</a>     Show files opened remotely
<a href="http://www.ss64.com/nt/psgetsid.html">PsGetSid</a>   Display the SID of a computer or a user
<a href="http://www.ss64.com/nt/psinfo.html">PsInfo</a>     List information about a system
<a href="http://www.ss64.com/nt/pskill.html">PsKill</a>     Kill processes by name or process ID
<a href="http://www.ss64.com/nt/pslist.html">PsList</a>     List detailed information about processes
<a href="http://www.ss64.com/nt/psloggedon.html">PsLoggedOn</a> Who's logged on (locally or via resource sharing)
<a href="http://www.ss64.com/nt/psloglist.html">PsLogList</a>  Event log records
<a href="http://www.ss64.com/nt/pspasswd.html">PsPasswd</a>   Change account password
<a href="http://www.ss64.com/nt/psservice.html">PsService</a>  View and control services
<a href="http://www.ss64.com/nt/psshutdown.html">PsShutdown</a> Shutdown or reboot a computer
<a href="http://www.ss64.com/nt/pssuspend.html">PsSuspend</a>  Suspend processes
<a href="http://www.ss64.com/nt/pushd.html">PUSHD</a>    Save and then change the current directory

<a href="http://www.ss64.com/nt/qgrep.html">QGREP</a>    Search file(s) for lines that match a given pattern.

<a href="http://www.ss64.com/nt/rasdial.html">RASDIAL</a>  Manage RAS connections
<a href="http://www.ss64.com/nt/rasphone.html">RASPHONE</a> Manage RAS connections
<a href="http://www.ss64.com/nt/recover.html">RECOVER</a>  Recover a damaged file from a defective disk.
<a href="http://www.ss64.com/nt/reg.html">REG</a>      Registry: Read, Set, Export, Delete keys and values
<a href="http://www.ss64.com/nt/regedit.html">REGEDIT</a>  Import or export registry settings
<a href="http://www.ss64.com/nt/regsvr32.html">REGSVR32</a> Register or unregister a DLL
<a href="http://support.microsoft.com/?kbid=245031">REGINI</a>   Change Registry Permissions
<a href="http://www.ss64.com/nt/rem.html">REM</a>      Record comments (remarks) in a batch file
<a href="http://www.ss64.com/nt/ren.html">REN</a>      Rename a file or files.
<a href="http://www.ss64.com/nt/replace.html">REPLACE</a>  Replace or update one file with another
<a href="http://www.ss64.com/nt/rd.html">RD</a>       Delete folder(s)
<a href="http://www.ss64.com/nt/rdisk.html">RDISK</a>    Create a Recovery Disk
<a href="http://www.ss64.com/nt/rmtshare.html">RMTSHARE</a> Share a folder or a printer
<a href="http://www.ss64.com/nt/robocopy.html">ROBOCOPY</a> Robust File and Folder Copy
<a href="http://www.ss64.com/nt/route.html">ROUTE</a>    Manipulate network routing tables
<a href="http://www.ss64.com/nt/runas.html">RUNAS</a>    Execute a program under a different user account
<a href="http://www.ss64.com/nt/rundll32.html">RUNDLL32</a> Run a DLL command (add/remove print connections)

<a href="http://www.ss64.com/nt/sc.html">SC</a>       Service Control
<a href="http://www.ss64.com/nt/schtasks.html">SCHTASKS</a> Create or Edit Scheduled Tasks
<a href="http://www.ss64.com/nt/sclist.html">SCLIST</a>   Display NT Services
<a href="http://www.ss64.com/nt/scriptit.html">ScriptIt</a> Control GUI applications
<a href="http://www.ss64.com/nt/set.html">SET</a>      Display, set, or remove environment variables
<a href="http://www.ss64.com/nt/setlocal.html">SETLOCAL</a> Control the visibility of environment variables
<a href="http://www.ss64.com/nt/setx.html">SETX</a>     Set environment variables permanently
<a href="http://www.ss64.com/nt/share.html">SHARE</a>    List or edit a file share or print share
<a href="http://www.ss64.com/nt/shift.html">SHIFT</a>    Shift the position of replaceable parameters in a batch file
<a href="http://www.ss64.com/nt/shortcut.html">SHORTCUT</a> Create a windows shortcut (.LNK file)
<a href="http://www.ss64.com/nt/showgrps.html">SHOWGRPS</a> List the NT Workgroups a user has joined
<a href="http://www.ss64.com/nt/showmbrs.html">SHOWMBRS</a> List the Users who are members of a Workgroup
<a href="http://www.ss64.com/nt/shutdown.html">SHUTDOWN</a> Shutdown the computer
<a href="http://www.ss64.com/nt/sleep.html">SLEEP</a>    Wait for x seconds
<a href="http://www.ss64.com/nt/soon.html">SOON</a>     Schedule a command to run in the near future
<a href="http://www.ss64.com/nt/sort.html">SORT</a>     Sort input
<a href="http://www.ss64.com/nt/start.html">START</a>    Start a separate window to run a specified program or command
<a href="http://www.ss64.com/nt/su.html">SU</a>       Switch User
<a href="http://www.ss64.com/nt/subinacl.html">SUBINACL</a> Edit file and folder Permissions, Ownership and Domain
<a href="http://www.ss64.com/nt/subst.html">SUBST</a>    Associate a path with a drive letter
<a href="http://www.ss64.com/nt/systeminfo.html">SYSTEMINFO</a> List system configuration

<a href="http://www.ss64.com/nt/tasklist.html">TASKLIST</a> List running applications and services
<a href="http://www.ss64.com/nt/time.html">TIME</a>     Display or set the system time
<a href="http://www.ss64.com/nt/timeout.html">TIMEOUT</a>  Delay processing of a batch file
<a href="http://www.ss64.com/nt/title.html">TITLE</a>    Set the window title for a CMD.EXE session
<a href="http://www.ss64.com/nt/touch.html">TOUCH</a>    Change file timestamps
<a href="http://www.ss64.com/nt/tracert.html">TRACERT</a>  Trace route to a remote host
TREE     Graphical display of folder structure
<a href="http://www.ss64.com/nt/type.html">TYPE</a>     Display the contents of a text file

USRSTAT  List domain usernames and last login

<a href="http://www.ss64.com/nt/ver.html">VER</a>      Display version information
<a href="http://www.ss64.com/nt/verify.html">VERIFY</a>   Verify that files have been saved
<a href="http://www.ss64.com/nt/vol.html">VOL</a>      Display a disk label

<a href="http://www.ss64.com/nt/where.html">WHERE</a>    Locate and display files in a directory tree
<a href="http://www.ss64.com/nt/whoami.html">WHOAMI</a>   Output the current UserName and domain
<a href="http://www.ss64.com/nt/windiff.html">WINDIFF</a>  Compare the contents of two files or sets of files
<a href="http://www.ss64.com/nt/winmsd.html">WINMSD</a>   Windows system diagnostics
<a href="http://www.ss64.com/nt/winmsdp.html">WINMSDP</a>  Windows system diagnostics II
<a href="http://www.ss64.com/nt/wmic.html">WMIC</a>     WMI Commands

<a href="http://www.ss64.com/nt/xcalcs.html">XCACLS</a>   Change file permissions
<a href="http://www.ss64.com/nt/xcopy.html">XCOPY</a>    Copy files and folders</pre>
<p>source:http://www.ss64.com/index.html</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Not Displaying Logon, Logoff, Startup and Shutdown..]]></title>
<link>http://aaarticles.wordpress.com/2008/09/13/not-displaying-logon-logoff-startup-and-shutdown/</link>
<pubDate>Sat, 13 Sep 2008 04:36:46 +0000</pubDate>
<dc:creator>kashaan143</dc:creator>
<guid>http://aaarticles.wordpress.com/2008/09/13/not-displaying-logon-logoff-startup-and-shutdown/</guid>
<description><![CDATA[To turn these off: Start Regedit Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\ CurrentVersion]]></description>
<content:encoded><![CDATA[To turn these off: Start Regedit Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\ CurrentVersion]]></content:encoded>
</item>
<item>
<title><![CDATA[Audit User Logon and Logoff]]></title>
<link>http://mattlog.wordpress.com/2008/08/25/audit-user-logon/</link>
<pubDate>Mon, 25 Aug 2008 01:49:48 +0000</pubDate>
<dc:creator>mattlog</dc:creator>
<guid>http://mattlog.wordpress.com/2008/08/25/audit-user-logon/</guid>
<description><![CDATA[A quick and easy way to audit your users login times (and some other details) is by using this simpl]]></description>
<content:encoded><![CDATA[A quick and easy way to audit your users login times (and some other details) is by using this simpl]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://blog.srvme.de/2008/08/07/52/</link>
<pubDate>Thu, 07 Aug 2008 11:01:48 +0000</pubDate>
<dc:creator>nils petersohn</dc:creator>
<guid>http://blog.srvme.de/2008/08/07/52/</guid>
<description><![CDATA[well its not that spectacular but for me it couldn&#8217;t be better: In my Application which i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>well its not that spectacular but for me it couldn&#8217;t be better:</p>
<p>In my Application which i&#8217;m developing over a year now i need to access the radius database for user modifications. say simple: in my app i want to control who can access the internet.<br />
I opend the database port 3306 by uncommenting the bindto=127.0.0.1 in /etc/mysql/my.cnf or similar, which is not very clean. A xml connection for simple crud would be better but i am under time pressure &#8230;.<br />
With hibernate i was able to connect to the radius db besides the app database by defining another &#8220;dataSource&#8221; like this:<br />
<code><br />
&#60;bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"&#62;<br />
</code></p>
<pre style="padding-left:30px;"><code> &#60;property name="driverClassName" value="@DB-DRIVERNAME@"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="url" value="@DB-URL@"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="username" value="@DB-USERNAME@"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="password" value="@DB-PASSWORD@"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxActive" value="100"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxIdle" value="30"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxWait" value="1000"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="defaultAutoCommit" value="true"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="removeAbandoned" value="true"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="removeAbandonedTimeout" value="60"/&#62;</code></pre>
<p><code> &#60;/bean&#62;<br />
&#60;bean id="dataSourceRadius" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"&#62;<br />
</code></p>
<pre style="padding-left:30px;"><code> &#60;property name="driverClassName" value="com.mysql.jdbc.Driver"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="url" value="jdbc:mysql://x.x.x.x/radius?zeroDateTimeBehavior=convertToNull"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="username" value="radius"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="password" value="somepwd"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxActive" value="100"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxIdle" value="30"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="maxWait" value="1000"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="defaultAutoCommit" value="true"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="removeAbandoned" value="true"/&#62;</code></pre>
<pre style="padding-left:30px;"><code> &#60;property name="removeAbandonedTimeout" value="60"/&#62;</code></pre>
<p><code> &#60;/bean&#62;</code></p>
<p>i tried to modify the hotspotlogin.cgi perl script but i&#8217;m not really getting it. AND what i hate the most of all is that html code is printed line by line, in my eyes that is sooo messy &#8230; i heared that other login pages are out there so i have to study them today. I also want to control the logout process from my app, this is a little bit tricky too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  i need to access the adress http://10.1.0.1:3990/logoff but with this addy i can&#8217;t say which user to log off &#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Logon &amp; Logoff optimizing]]></title>
<link>http://sbcfreak.wordpress.com/2008/07/09/logon-logoff-optimizing/</link>
<pubDate>Wed, 09 Jul 2008 18:10:36 +0000</pubDate>
<dc:creator>sbcfreak</dc:creator>
<guid>http://sbcfreak.wordpress.com/2008/07/09/logon-logoff-optimizing/</guid>
<description><![CDATA[Here you can find the of the optimizing of the Logon and Logoff procedure. http://www.thomaskoetzing]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here you can find the of the optimizing of the Logon and Logoff procedure.</p>
<p><a href="http://www.thomaskoetzing.de/index.php?option=com_docman&#38;task=doc_download&#38;gid=135">http://www.thomaskoetzing.de/index.php?option=com_docman&#38;task=doc_download&#38;gid=135</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ViXPta Ultimate Logon BR]]></title>
<link>http://msjunior.wordpress.com/2008/05/28/vixpta-ultimate-logon-br/</link>
<pubDate>Wed, 28 May 2008 03:27:54 +0000</pubDate>
<dc:creator>msjunior</dc:creator>
<guid>http://msjunior.wordpress.com/2008/05/28/vixpta-ultimate-logon-br/</guid>
<description><![CDATA[O Matheus, mais conhecido como ViXPita no DeviantART, fez uma linda tela de logon, no estilo Vista U]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="size-full wp-image-651" src="http://tecnologiaedownload.files.wordpress.com/2008/04/logon1.jpg?w=100&#038;h=100#38;h=100&#38;h=100" alt="" width="100" height="100" /></p>
<p>O Matheus, mais conhecido como ViXPita no DeviantART, fez uma linda tela de  logon, no estilo Vista Ultimate, não deixe de conferir, é realmente sensacional</p>
<p><img src="http://tn3-2.deviantart.com/fs30/300W/i/2008/138/6/1/ViXPta_Ultimate_Logon_BR_by_ViXPta.jpg" alt="http://tn3-2.deviantart.com/fs30/300W/i/2008/138/6/1/ViXPta_Ultimate_Logon_BR_by_ViXPta.jpg" /></p>
<p><a href="http://www.deviantart.com/download/85960731/ViXPta_Ultimate_Logon_BR_by_ViXPta.rar">Download</a></p>
<p>SAIBA COMO INSTALAR <a href="http://tecnologiaedownload.wordpress.com/2008/05/13/tutorial-trocando-a-tela-de-logon-no-windows-xp/">CLICANDO AQUI..!!!</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fungsi-fungsi untuk Lock, Hibernate, Logoff, Shutdown Windows pada VB.NET]]></title>
<link>http://actualtraining.wordpress.com/2008/05/06/fungsi-fungsi-untuk-lock-hibernate-logoff-shutdown-windows-pada-vbnet/</link>
<pubDate>Tue, 06 May 2008 04:11:07 +0000</pubDate>
<dc:creator>antonie</dc:creator>
<guid>http://actualtraining.wordpress.com/2008/05/06/fungsi-fungsi-untuk-lock-hibernate-logoff-shutdown-windows-pada-vbnet/</guid>
<description><![CDATA[Harus import: using System.Runtime.InteropServices; Lock Computer: [DllImport("user32.dll")] public ]]></description>
<content:encoded><![CDATA[Harus import: using System.Runtime.InteropServices; Lock Computer: [DllImport("user32.dll")] public ]]></content:encoded>
</item>
<item>
<title><![CDATA[Shut 'er down, Scotty, she's sucking mud again...]]></title>
<link>http://computerhelpers.wordpress.com/2007/11/06/shut-er-down-scotty-shes-sucking-mud-again/</link>
<pubDate>Tue, 06 Nov 2007 02:39:20 +0000</pubDate>
<dc:creator>dvanarsd</dc:creator>
<guid>http://computerhelpers.wordpress.com/2007/11/06/shut-er-down-scotty-shes-sucking-mud-again/</guid>
<description><![CDATA[According to computing legend, there was once a message buried in certain computer software that wou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>According to computing legend, there was once a message buried in certain computer software that would react to a problem with a &#8216;Star Trek&#8217; style message&#8230;</p>
<p><a href="http://www.winutility.com/qsd/">Quick Shutdown</a> is freeware to allow you to log off, or shutdown, or hibernate/reboot/lock/etc. your computer when leaving just by clicking the icon in the tray. No Yes/No confirmations, just does it.  It can speed up the process quite a bit.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IMAP for GMAIL (YES!!!) [NO???]]]></title>
<link>http://ibrahimo.wordpress.com/2007/10/24/imap-for-gmail-yes-no/</link>
<pubDate>Wed, 24 Oct 2007 17:09:25 +0000</pubDate>
<dc:creator>ibrahimo</dc:creator>
<guid>http://ibrahimo.wordpress.com/2007/10/24/imap-for-gmail-yes-no/</guid>
<description><![CDATA[Yep&#8230; IMAP is available for GMAIL now, although I wont start jumping in joy just yet. It seems ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Yep&#8230; IMAP is available for GMAIL now, although I wont start jumping in joy just yet. It seems that people are having hassles configuring it, so i would wait a bit, plus GMAIL doesnt FULLY supports IMAP, some features are not supported.</p>
<p>IMAP  is good for multiple platform users, now you can access your mail from different platforms and keep the changes and see them from any platform&#8230;.</p>
<p align="left">If you login to your gmail and you cant see the setup for IMAP just try to logoff and login again and it will appear, if not just wait for couple of days.</p>
<p align="left">http://mail.google.com/mail/help/intl/en/about_whatsnew.html</p>
<p><strong>For the full picture go here &#8230;</strong><br />
http://mail.google.com/support/bin/topic.py?topic=12760</p>
<p>And for the supported IMAP clients list go here &#8230;<br />
http://mail.google.com/support/bin/answer.py?ctx=%67mail&#38;hl=en&#38;answer=75726</p>
<p>and tell me what you think ?</p>
<p>Update: Google Releases video showing ho to setup IMAP on your IPhone&#8230;<br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/uQ22euWXYog&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/uQ22euWXYog&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Reliance wimax disadvantages cons]]></title>
<link>http://timewasteblog.com/2007/10/01/reliance-wimax-disadvantages-cons/</link>
<pubDate>Mon, 01 Oct 2007 12:08:51 +0000</pubDate>
<dc:creator>linuxunix</dc:creator>
<guid>http://timewasteblog.com/2007/10/01/reliance-wimax-disadvantages-cons/</guid>
<description><![CDATA[as i explained my earlier post along with  number of advaNtages, disadvantages also there. 1.it base]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>as i explained my earlier post along with  number of advaNtages, disadvantages also there.</p>
<p>1.it based on signal strength of your area</p>
<p>2.at present limited type of plans available</p>
<p>3.LOGIN SYSTEM, yes you need to login before starting browseing &#8211; yak &#8211; i don;t  like this. while shutdwon you need to log off other wise you account will be locked off at server side and you need to call customer care to reset !!! this is only major disadvatages.</p>
<p>otherwise speed is excellent and connection is very stable.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
