<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>IT Experts</title><description></description><managingEditor>noreply@blogger.com (Hardcoded)</managingEditor><pubDate>Sun, 1 Sep 2024 12:38:21 +0300</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">38</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://it-experts.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>Pointers and thoughts on the evolution of knowledge sharing</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>How to reset a lost MySQL root password</title><link>http://it-experts.blogspot.com/2017/08/how-to-reset-lost-mysql-root-password.html</link><category>phpmyadmin</category><category>sql</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 9 Aug 2017 10:41:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-104379829324641003</guid><description>&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Have you ever forgotten your MySQL root password? It’s one of those things that just happens despite the numerous precautions one might take. As a result, you are locked out of your database server. You can’t create new databases and are left with little control over the state of your database server. In such situations knowing how to regain root access to your database server comes in handy. So here’s what you can do to reset the password for the root user in MySQL on both Windows and Linux.&lt;span id="more-1746" style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;h3 style="background-color: white; color: #111111; line-height: 26px; margin: 0px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif; font-size: small;"&gt;Windows Users:&lt;/span&gt;&lt;/h3&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Log on to your server as the Administrator. Kill the MySQL server if it’s running. To do this you need the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Windows Services Manager&lt;/strong&gt;, so click on the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Start Menu&lt;/strong&gt;, then go to the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Control Panel&lt;/strong&gt;, then to the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Administrative Tools&lt;/strong&gt;, and select&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Services&lt;/strong&gt;. Here look for the MySQL server and stop it. If it’s not listed there and MySQL is till running it means that MySQL is not running as a service. In that case you need to load the Task Manager which you should be able to access using the key combination of&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Ctrl+Alt+Del&lt;/strong&gt;. Now kill the MySQL process.&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;With the MySQL process stopped you need to force a change of passwords on MySQL using a combination of the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;UPDATE&lt;/strong&gt;&amp;nbsp;and&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;FLUSH&lt;/strong&gt;&amp;nbsp;options. So launch your favorite text editor and create a new file. Enter the following text into the file replacing “NewMySQLPassword” with your new password:&lt;/span&gt;&lt;/div&gt;
&lt;blockquote style="background-color: white; border-left: 1px solid rgb(221, 221, 221); color: #888888; margin: 0px 0px 26px 13px; padding: 0px 0px 0px 13px; word-wrap: break-word;"&gt;
&lt;div style="margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;UPDATE mysql.user SET Password=PASSWORD(“NewMySQLPassword”) WHERE User=’root’;&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;FLUSH PRIVILEGES;&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;What the first line does is that it updates the value of the field “Password” in the table mysql.user for the user “root” to “NewMySQLPassword”. The second line flushes the old set of privileges and makes sure your new password is used everywhere. Save this text as&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;C:\mysql_reset.txt&lt;/strong&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Next, you need to start your MySQL server passing this file as a configuration parameter. Launch a terminal by going to the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Start Menu&lt;/strong&gt;, then to&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;Run&lt;/strong&gt;, and then type&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;cmd&lt;/strong&gt;&amp;nbsp;and hit Enter. Now enter the following command:&lt;/span&gt;&lt;/div&gt;
&lt;blockquote style="background-color: white; border-left: 1px solid rgb(221, 221, 221); color: #888888; margin: 0px 0px 26px 13px; padding: 0px 0px 0px 13px; word-wrap: break-word;"&gt;
&lt;div style="margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;C:\mysql\bin\mysqld-nt --init-file=C:\mysql_reset.txt&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Once the server is done starting delete the file&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;C:\mysql_reset.txt&lt;/strong&gt;. Your MySQL root password should be reset now. Now restart your MySQL server again. Go back to the Windows Services Manager again to do that. Your new MySQL root password should work for you now.&lt;/span&gt;&lt;/div&gt;
&lt;h3 style="background-color: white; color: #111111; line-height: 26px; margin: 0px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif; font-size: small;"&gt;Linux Users:&lt;/span&gt;&lt;/h3&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Log on to your Linux machine as the root user. The steps involved in resetting the MySQL root password are to stop the MySQL server, restart it without the permissions active so you can log into MySQL as root without a password, set a new password, and then restart it normally. Here’s how you do it. First, stop the MySQL server:&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;# /etc/init.d/mysql stop&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Now start the MySQL server using the&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;--skip-grant-tables&lt;/strong&gt;&amp;nbsp;option, which will run the server without loading the permissions settings:&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;# mysqld_safe --skip-grant-tables &amp;amp;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;The&amp;nbsp;&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;&amp;amp;&lt;/strong&gt;&amp;nbsp;option at the end makes the command you have executed run as a background process. Now log on to your MySQL server as root:&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;strong style="margin: 0px; padding: 0px; word-wrap: break-word;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;# mysql -u root&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;It should allow you in without prompting for a password. The following steps will set the new password:&lt;/span&gt;&lt;/div&gt;
&lt;blockquote style="background-color: white; border-left: 1px solid rgb(221, 221, 221); color: #888888; margin: 0px 0px 26px 13px; padding: 0px 0px 0px 13px; word-wrap: break-word;"&gt;
&lt;div style="margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;mysql&amp;gt; use mysql;&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;mysql&amp;gt; update user set password=PASSWORD(“NewMySQLPassword”) where User=’root’;&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;mysql&amp;gt; flush privileges;&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;mysql&amp;gt; quit&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Replace “NewMySQLPassword” with your own password. Here’s what happens here. The first line selects the MySQL configuration tables. The second line updates the value of the field “Password” for the user “root” to “NewMySQLPassword”. The third line flushes the old set of privileges and makes sure your new password is used everywhere. Now, the last step is to restart the server normally and use your new root password to log in:&lt;/span&gt;&lt;/div&gt;
&lt;blockquote style="background-color: white; border-left: 1px solid rgb(221, 221, 221); color: #888888; margin: 0px 0px 26px 13px; padding: 0px 0px 0px 13px; word-wrap: break-word;"&gt;
&lt;div style="margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;# /etc/init.d/mysql stop&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;# /etc/init.d/mysql start&lt;br style="margin: 0px; padding: 0px; word-wrap: break-word;" /&gt;# mysql -u root -pNewMySQLPassword&lt;/span&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div style="background-color: white; color: #111111; margin-bottom: 26px; padding: 0px; word-wrap: break-word;"&gt;
&lt;span style="font-family: Verdana, sans-serif;"&gt;Congratulations, your new MySQL root password is set and your MySQL server is ready to be used again. Remember to update all your applications to use this password if you are using it anywhere.&lt;/span&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>De ce virtualizezi servere cu tehnologie Microsoft</title><link>http://it-experts.blogspot.com/2015/02/de-ce-virtualizezi-servere-cu.html</link><category>Virtualizare</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 25 Feb 2015 07:51:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-6867410022671004688</guid><description>&lt;ul&gt;   &lt;li&gt;rulează multe mai servere pe aceeași mașină fizică&lt;/li&gt;    &lt;li&gt;optimizează infrastructura cu Hyper-V &lt;/li&gt;    &lt;li&gt;testează diferite scenarii sau aplicații fără a impacta infrastructura&lt;/li&gt;    &lt;li&gt;redu la minim downtime-ul&lt;/li&gt;    &lt;li&gt;izolează aplicații&lt;/li&gt;    &lt;li&gt;redu costuri, maximizează utilizarea hardware-ului existent&lt;/li&gt;    &lt;li&gt;fă back-up&lt;/li&gt;    &lt;li&gt;pregătește-te pentru migrarea în cloud - odată virtualizat, este mult mai ușor de migrat &lt;/li&gt; &lt;/ul&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>/var/spool/squid/swap.state: (13) Permission denied FATAL: commonUfsDirOpenSwapLog: Failed to open swap log.</title><link>http://it-experts.blogspot.com/2015/02/varspoolsquidswapstate-13-permission.html</link><category>Centos</category><category>Linux</category><category>Squid</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Tue, 17 Feb 2015 10:56:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-4239383426252186642</guid><description>&lt;p&gt;Daca primesti eroarea de mai jos:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;2015/02/17 08:13:39| Store logging disabled&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| Swap maxSize 30720000 + 2048000 KB, estimated 2520615 objects&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| Target number of buckets: 126030&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| Using 131072 Store buckets&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| Max Mem&amp;#160; size: 2048000 KB&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| Max Swap size: 30720000 KB&lt;/p&gt;    &lt;p&gt;2015/02/17 08:13:39| /var/spool/squid/swap.state: (13) Permission denied&lt;/p&gt;    &lt;p&gt;FATAL: commonUfsDirOpenSwapLog: Failed to open swap log.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Cum rezolvi eroarea de mai sus si cum o rezolvi..&lt;/p&gt;  &lt;p&gt;Principalul vinovat e cache-ul squid-ului si permisiunile acestuia..&lt;/p&gt;  &lt;p&gt;Eu am intalnit-o pe un Centos..&lt;/p&gt;  &lt;p&gt;Primul pas e sa afli locatia directorului squid cache&lt;/p&gt;  &lt;p&gt;Intr-un terminal dai comanda &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;grep cache_dir /etc/squid/squid.conf&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;si vei avea un output de genul &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;cache_dir ufs /var/spool/squid 100 16 256&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;apoi dai comanda&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# squid -k shutdown&lt;/code&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Apoi ar cam trebui sa stergi directoarele de cache cu comenzile de mai jos&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# rm -rf /path/to/dir/cache/&lt;/code&gt;&lt;/p&gt;   &lt;code&gt;     &lt;p&gt;&lt;code&gt;# rm -rf /var/spool/squid/&lt;/code&gt;&lt;/p&gt;   &lt;/code&gt;&lt;/blockquote&gt;  &lt;p&gt;Apoi va trebui sa recreezi directoarele tocmai sterse si sa aplici permisiuni corespunzator owner-ului squid&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# mkdir /var/spool/squid&lt;/code&gt;&lt;/p&gt;   &lt;code&gt;     &lt;p&gt;&lt;code&gt;# chown squid:squid /var/spool/squid&lt;/code&gt;&lt;/p&gt;   &lt;/code&gt;&lt;/blockquote&gt;  &lt;p&gt;&lt;code&gt;In cazul meu fiindca foloseam &lt;/code&gt;SELinux, a fost nevoie de restaurare a permisiunilor SELinux si se rezolva cu comanda&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# restorecon -vr /var/spool/squid&lt;/code&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Apoi va trebui sa recreezi directoarele de cache cu comanda&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# squid -z&lt;/code&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Si va afisa ceva de genul&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;2015/08/24 04:24:19| Making directories in /var/spool/squid/002015/08/24 04:24:19| Making directories in /var/spool/squid/012015/08/24 04:24:19| Making directories in /var/spool/squid/022015/08/24 04:24:20| Making directories in /var/spool/squid/032015/08/24 04:24:20| Making directories in /var/spool/squid/042015/08/24 04:24:20| Making directories in /var/spool/squid/052015/08/24 04:24:20| Making directories in /var/spool/squid/062015/08/24 04:24:20| Making directories in /var/spool/squid/072015/08/24 04:24:20| Making directories in /var/spool/squid/082015/08/24 04:24:20| Making directories in /var/spool/squid/092015/08/24 04:24:20| Making directories in /var/spool/squid/0A2015/08/24 04:24:20| Making directories in /var/spool/squid/0B2015/08/24 04:24:20| Making directories in /var/spool/squid/0C2015/08/24 04:24:20| Making directories in /var/spool/squid/0D2015/08/24 04:24:20| Making directories in /var/spool/squid/0E2015/08/24 04:24:20| Making directories in /var/spool/squid/0F&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Poai va trebui sa pornesti serviciul squid cu &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;/etc/init.d/squid start&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Apoi verifici functinalitatea cu comenzile de mai jos&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;code&gt;# netstat -tulpn | grep :3128&lt;/code&gt;&lt;/p&gt;   &lt;code&gt;     &lt;p&gt;# tail -f /var/log/squid/access.log&lt;/p&gt;      &lt;p&gt;&lt;code&gt;# tail -f /var/log/squid/cache.log&lt;/code&gt;&lt;/p&gt;&lt;/code&gt;&lt;/blockquote&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Cum editezi Boot Manager-ul din Windows XP – cand ai mai mult de 1 sistem de operare instalat</title><link>http://it-experts.blogspot.com/2013/06/cum-editezi-boot-manager-ul-din-windows.html</link><category>Windows 7</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Fri, 28 Jun 2013 11:57:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-3669967394424959929</guid><description>&lt;p&gt;Stim cu totii ca atunci cand &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=153910&amp;amp;redirect=" target="_blank"&gt;computer&lt;/a&gt;ul starteaza, incarca Boot Manager-ul.&lt;/p&gt;  &lt;p&gt;Este vorba de acel ecran care ne arata sistemele de operare instalate.Daca aveam doar un sistem de operare instalat pe &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=208634&amp;amp;redirect=sistem-desktop-pc-lenovo-ideacentre-c200-all-in-one-cu-procesor-intel-174-atom-small-sup-tm-sup-small-dual-core-d525-1-80ghz-2gb-320gb-intel-174-hd-graphics-freedos-57-309965%2Fpd%2FEJK0KBBBM%2F" target="_blank"&gt;calculator&lt;/a&gt;,atunci acel boot manager nici nu il observam. Sistemul de operare default e primul in lista.&lt;/p&gt;  &lt;p&gt;Daca avem mai mult de un sistem de operare instalat, atunci Boot Manager-ul sta pe ecran un anume timp, de obicei 30 de secunde.&lt;/p&gt;  &lt;p&gt;Daca vrem sa excludem un anumit sistem de operare de la boot(sau am avut 2 sisteme instalate si unul l-am sters) putem edita foarte simplu acel boot manager.&lt;/p&gt;  &lt;h1&gt;Cum editezi boot manager-ul in &lt;a href="http://www.qdesk.ro" target="_blank"&gt;windows&lt;/a&gt; XP ?&lt;/h1&gt;  &lt;p&gt;1.Primul pas si cel mai important e acela ca trebuie sa faceti un back-up(copie de siguranta) la boot.ini.&lt;/p&gt;  &lt;p&gt;Right-click pe &amp;quot;My Computer&amp;quot; , apoi&amp;#160; &amp;quot;Properties&amp;quot; pentru a deschide System Properties . Click pe tabul &amp;quot;Advanced&amp;quot; tab si click pe&amp;#160; &amp;quot;Settings&amp;quot; din sectiunea Startup and Recovery.&lt;/p&gt;  &lt;p&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPWpBgxTR1Rs5zYpMCxZApNOuIyZT5_h5puT7fPezIRH0Sog0JGwM-NIDN5_axDPiswh18YUZHdoc4ygKwvwlzdYvfd66f6bi89ov3P-BHpXfbynr6hAbr_eqI3AtElPdjrvNw7lBKg7Y/s1600-h/image%25255B3%25255D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFuGb3GfmvvaoH5fAMOEA_dzL_VO_R9B3-zKi_p4FOo2szpehJCrq9Qr1LEDTK7nHB8X3BEtIYcDNHHoTHTmyn0zfjcD961vKF61pcvpP5ljNk_XM4l0uPAJr3JiYPlT1OWlf_de500UE/?imgmax=800" width="280" height="323" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguCMPpNE5_sWrQCy_1lzGDatV651x6WoPkoQg-hKpEmZn_oNsvG22PMONGpArDpv8eumaXJStEFY8EIkHbF2T8knmc5D7Y2m82En9biuWc_tn6JMTBLMJyFUF6hUrwfFduIGrhXikKpqc/s1600-h/image%25255B7%25255D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgev_ExJYoWQVFCu6TLVfIIpYuNsu0Ng4Z149iHCW0IUVEi8d4cOT3M8k_oZCpm3fjMi2RydW6LcWzv2XYyVdyK48chnuWD945_RZh1lipbt4Cs-UYFOk1Ou35rQZS10qi6XCSO9IAwk80/?imgmax=800" width="284" height="361" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;2. Click pe &amp;quot;Edit&amp;quot; din sectiunea de System Startup pentru a deschide optiunea de&amp;#160; Boot&amp;#160; in notepad. Selectati&amp;#160; tabul &amp;quot;File&amp;quot; din partea stanga a ferestrei. Dati apoi click pe&amp;#160; &amp;quot;Save As&amp;quot; si salvati o copie pe&amp;#160; &amp;quot;Desktop&amp;quot; &lt;/p&gt;  &lt;p&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlBbPjOmq7uyC0H-65BKsf79F3LxTc0-JppwAdG2WhQ-RpPuTruvjvAIYOyMweAO69y_TzQ59TasHu1G8ODtymyiM2soXXxXEZSX7ERuDOMIhakWGxWdTi0bWPffrlPwneFEv5rARbi9w/s1600-h/image%25255B11%25255D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSc2Y6mhFB70Sqtximk14CfEwMFCDcMQ1L93CJB1j5CTiL94hG1KKrutFoGaw3PY7o2yXucWxFVwgQ1foKzmS55BODVj4DdBNjpt9wCTDJlsMc4_2Sq551vz9OPpUImKrZbUqkNJvJua4/?imgmax=800" width="395" height="278" /&gt;&lt;/a&gt;     &lt;br /&gt;3. Alegeti optiunea&amp;#160; &amp;quot;Create New Folder&amp;quot; . Numiti folderul&amp;#160; &amp;quot;Temp&amp;quot; si apoi click pe&amp;#160; &amp;quot;Open.&amp;quot; Asigurati-va ca numele fisierului e&amp;#160; &amp;quot;boot&amp;quot; si click&amp;#160; &amp;quot;Save.&amp;quot;&lt;/p&gt;  &lt;p&gt;4. Mergeti din nou pe My &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=153910&amp;amp;redirect=" target="_blank"&gt;Computer&lt;/a&gt; si din nou la&amp;#160; &amp;quot;Properties.&amp;quot;&lt;/p&gt;  &lt;p&gt;5.Selectati tabul&amp;#160; &amp;quot;Advanced&amp;quot; apoi click &amp;quot;Settings&amp;quot;&amp;#160; in sectiunea Startup and Recovery.&lt;/p&gt;  &lt;p&gt;6. Click&amp;#160; pe &amp;quot;Edit&amp;quot;&amp;#160; in System Startup pentru a se deschide boot.ini&lt;/p&gt;  &lt;p&gt;7. Aici puteti modifica acel timp de 30 secunde prin modificarea optiunii &amp;quot;timeout&amp;quot; &lt;/p&gt;  &lt;p&gt;8 . Puteti de asemenea modifica sistemul de operare default care se va incarca in cazul in care nu interveniti prin inserarea unui numar cum ar fi 1,2 sau 3 in linia default.&lt;/p&gt;  &lt;p&gt;default=multi(0)disk(0)rdisk(0)partition(1)\&lt;a href="http://www.qdesk.ro" target="_blank"&gt;WINDOWS&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Exemplu default=multi(0)disk(0)rdisk(0)partition(1, 2 or 3 here)\&lt;a href="http://www.qdesk.ro" target="_blank"&gt;WINDOWS&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;9. Puteti schimba numele sistemului de operare prin modificarea textului care apare intre ghilimele&lt;/p&gt;  &lt;p&gt;multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=&amp;quot;Windows XP Professional&amp;quot; /fastdetect&lt;/p&gt;  &lt;p&gt;Exemplu: multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=&amp;quot;Textul care doriti sa apara&amp;quot; /fastdetect&lt;/p&gt;  &lt;p&gt;Daca doriti sa stergeti un sistem de operare sa mai apara, va trebui sa stergetilinia respectiva.&lt;/p&gt;  &lt;p&gt;Daca gresiti ceva si doriti sa reveniti, atunci va trebui sa incarcati acel boot.ini salvat la inceput pe Desktop.&lt;/p&gt;  </description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFuGb3GfmvvaoH5fAMOEA_dzL_VO_R9B3-zKi_p4FOo2szpehJCrq9Qr1LEDTK7nHB8X3BEtIYcDNHHoTHTmyn0zfjcD961vKF61pcvpP5ljNk_XM4l0uPAJr3JiYPlT1OWlf_de500UE/s72-c?imgmax=800" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Cum scapi de mesajul &amp;quot;You May Be a Victim of Software Counterfeiting&amp;quot;</title><link>http://it-experts.blogspot.com/2013/05/cum-scapi-de-mesajul-may-be-victim-of.html</link><category>Windows</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 8 May 2013 14:58:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-7847136555806789084</guid><description>&lt;p&gt;Din cand in cand, cand introduci un CD, iti apare un mesaj care te sesizeaza &amp;quot;You May Be a Victim of Software Counterfeiting&amp;quot; . Asta se intampla cand incerci sa rulezi un soft necunoscut, sau de pe un disc de &lt;a href="http://www.qdesk.ro" target="_blank"&gt;windows&lt;/a&gt; setup piratat.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Cum scapi de mesajul&amp;#160; &amp;quot;You May Be a Victim of Software Counterfeiting&amp;quot;&amp;#160; ?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;1.Ti apasat&amp;#160; &amp;quot;CTRL,&amp;quot; &amp;quot;ALT&amp;quot; si &amp;quot;DELETE&amp;quot; pentru a intra in Windows Task Manager. Gasesti&amp;#160; &amp;quot;wgatray.exe&amp;quot; si dai click pe &lt;strong&gt;&amp;quot;End Process.&amp;quot;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;2. Restartati &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=208634&amp;amp;redirect=sistem-desktop-pc-lenovo-ideacentre-c200-all-in-one-cu-procesor-intel-174-atom-small-sup-tm-sup-small-dual-core-d525-1-80ghz-2gb-320gb-intel-174-hd-graphics-freedos-57-309965%2Fpd%2FEJK0KBBBM%2F" target="_blank"&gt;calculator&lt;/a&gt;&lt;/strong&gt;ul si apasati&amp;#160; &amp;quot;F8&amp;quot; pentru a va aparea meniul de boot. Alegeti&amp;#160; &amp;quot;Boot in Safe Mode.&amp;quot; Apoi apasati &amp;quot;Enter.&amp;quot;&lt;/p&gt;  &lt;p&gt;3.Click pe &amp;quot;Start&amp;quot;, apoi mergeti in My Computer, partitia C, directorul Windows , directorul System32 si gasiti&amp;#160; fisierul “WgaTray.exe&amp;quot; pe care va trebui sa il stergeti.&lt;/p&gt;  &lt;p&gt;4. Stergeti&amp;#160; &amp;quot;dllcache&amp;quot; din aceeasi fereastra. Apoi inchideti fereastra de Windows.&lt;/p&gt;  &lt;p&gt;5.Click pe &amp;quot;Start&amp;quot; apoi pe &amp;quot;Run&amp;quot; si scrieti&amp;#160; &amp;quot;regedit&amp;quot;&amp;#160; pentru a intra in editorul de registrii.&lt;/p&gt;  &lt;p&gt;6. Selectati&amp;#160; &amp;quot;HKEY_LOCAL_MACHINE,&amp;quot; &amp;quot;SOFTWARE,&amp;quot; &amp;quot;Microsoft,&amp;quot; &amp;quot;WindowsNT,&amp;quot; apoi versiunea curenta de windows , &amp;quot;winlogon,&amp;quot; si &amp;quot;Notify key.&amp;quot; Click dreapta pe&amp;#160; &amp;quot;WgaLogon&amp;quot; si selecteaza&amp;#160; &amp;quot;Delete.&amp;quot;&lt;/p&gt;  &lt;p&gt;7. Asta e tot. Restarteaza &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=153910&amp;amp;redirect=" target="_blank"&gt;computer&lt;/a&gt;ul si nu vei mai primi mesajul&amp;#160; &amp;quot;You May Be a Victim of Software Counterfeiting&amp;quot;&amp;#160; &lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Cum parolezi directoarele in Windows 7</title><link>http://it-experts.blogspot.com/2013/02/cum-parolezi-directoarele-in-windows-7.html</link><category>Windows 7</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Tue, 26 Feb 2013 10:09:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-1161352919675898613</guid><description>&lt;p&gt;Windows 7 vine cu o noua optiune de criptare care iti ofera posibilitatea de a parola fisierele si respectiv directoarele .Aceasta optiune blocheaza accesul la fisierele tale celor care nu au parola corespunzatoare.&lt;/p&gt;  &lt;p&gt;Aceasta optiune e foarte buna pentru cei care au mai multi utilizatori la acelasi &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=208634&amp;amp;redirect=sistem-desktop-pc-lenovo-ideacentre-c200-all-in-one-cu-procesor-intel-174-atom-small-sup-tm-sup-small-dual-core-d525-1-80ghz-2gb-320gb-intel-174-hd-graphics-freedos-57-309965%2Fpd%2FEJK0KBBBM%2F" target="_blank"&gt;calculator&lt;/a&gt;.&lt;/p&gt;  &lt;h1&gt;&lt;font size="3"&gt;Cum pui parole la fisiere sau directoare in &lt;/font&gt;&lt;a href="http://www.qdesk.ro" target="_blank"&gt;&lt;font size="3"&gt;Windows&lt;/font&gt;&lt;/a&gt;&lt;font size="3"&gt; 7 ?&lt;/font&gt;&lt;/h1&gt;  &lt;p&gt;1. Intrati in My &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=153910&amp;amp;redirect=" target="_blank"&gt;Computer&lt;/a&gt; si navigati pana la fisierul/directorul pe care il doriti parolat.&lt;/p&gt;  &lt;p&gt;2. Right-click pe folderul care il doriti parolat, si selectati&amp;#160; &amp;quot;Properties&amp;quot; .&amp;#160; Click pe tabul&amp;#160; &amp;quot;General&amp;quot; pentru a vizuliza proprietatile, apoi click pe butonul&amp;#160; &amp;quot;Advanced&amp;quot; &lt;/p&gt;  &lt;p&gt;3. Click pe optiunea(checkbox) numita&amp;#160; &amp;quot;Encrypt contents to secure data.&amp;quot; Click&amp;#160; pe &amp;quot;OK&amp;quot; .&lt;/p&gt;  &lt;p&gt;4. Se va fixa automat o parola pe directorul respectiv, care este parola cu care va logati la &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=208634&amp;amp;redirect=sistem-desktop-pc-lenovo-ideacentre-c200-all-in-one-cu-procesor-intel-174-atom-small-sup-tm-sup-small-dual-core-d525-1-80ghz-2gb-320gb-intel-174-hd-graphics-freedos-57-309965%2Fpd%2FEJK0KBBBM%2F" target="_blank"&gt;calculator&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Alti utilizatori care se logheaza in pc-ul dvs, vor fi obligati sa stie userul si parola pentru a putea accesa acest folder.&lt;/p&gt;  &lt;p&gt;Cel mai simplu ca sa verificati,e sa va conectati/logati cu un alt utilizator si veti observa ca veti fi interogati de user si parola.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Cum poti castiga GRATUIT un laptop impreuna cu EMAG</title><link>http://it-experts.blogspot.com/2012/11/cum-poti-castiga-gratuit-un-laptop.html</link><category>Hardware</category><category>Recomandare</category><category>Review</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Fri, 9 Nov 2012 21:16:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-6329497016930984033</guid><description>&lt;p&gt;Windows 8 in colaborare cu &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=153910&amp;amp;redirect=" target="_blank"&gt;Emag&lt;/a&gt;.ro deruleaza un concurs cu premii pe masura.&lt;/p&gt;  &lt;p&gt;Poti castiga oricare dintre cele &lt;strong&gt;&lt;font color="#ff0000"&gt;16 premii oferite&lt;/font&gt;&lt;/strong&gt; de Microsoft :&lt;/p&gt;  &lt;p&gt;- 1 x &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=0&amp;amp;redirect=laptop-hp-pavilion-g6-2230sq-cu-procesor-intel-174-core-small-sup-tm-sup-small-i5-3210m-2-50ghz-ivy-bridge-6gb-750gb-amd-radeon-hd-7670m-2gb-microsoft-windows-8-black-c6c57ea%2Fpd%2FECXFKBBBM%2F"&gt;HP Pavilion G6-2230sq&lt;/a&gt;&lt;img style="border-bottom-style: none !important; border-right-style: none !important; margin: 0px; border-top-style: none !important; border-left-style: none !important" border="0" alt="" src="http://profitshare.emag.ro/link_track.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=0" width="1" height="1" /&gt; care e un &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=168951&amp;amp;redirect=" target="_blank"&gt;laptop&lt;/a&gt; super atractiv, simplu si usor de folosti pentru activitati de zi cu zi cu familia si prietenii.     &lt;br /&gt;- 2 x &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=0&amp;amp;redirect=laptop-sony-vaio-cu-procesor-intel-174-core-small-sup-tm-sup-small-i3-3110m-2-40ghz-ivy-bridge-4gb-500gb-amd-radeon-hd-7650m-1gb-microsoft-windows-8-white-sve1512e1ew-ee9%2Fpd%2FERGXKBBBM%2F%23ocazii"&gt;Sony Vaio E15 &lt;/a&gt;&lt;img style="border-bottom-style: none !important; border-right-style: none !important; margin: 0px; border-top-style: none !important; border-left-style: none !important" border="0" alt="" src="http://profitshare.emag.ro/link_track.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=0" width="1" height="1" /&gt; cu un design prietenos, simplu dar distinct, confortabil la utilizare     &lt;br /&gt;- 3 x &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=0&amp;amp;redirect=laptop-acer-aspire-v5-531-987b4g50mass-cu-procesor-intel-174-pentium-174-987-1-50ghz-4gb-500gb-intel-174-hd-graphics-microsoft-windows-8-matte-silver-nx-m4fex-024%2Fpd%2FEQTFKBBBM%2F"&gt;Acer Aspire V5 &lt;/a&gt;, un &lt;a href="http://profitshare.emag.ro/click.php?ad_client=40d6cd29ab290e65c167278715ca5633&amp;amp;add_id=168951&amp;amp;redirect=" target="_blank"&gt;laptop&lt;/a&gt; din seria Aspire V5 ,foarte atractiv, ergonomic si durabil si cu un profil subtire, accent estetic elegant&amp;#160; si texturi incantatoare care confera seriei Aspire un aspect solid si de unicitate.     &lt;br /&gt;- 10 x Microsoft ArcTouch&lt;/p&gt;  &lt;p&gt;Ce trebuie sa faci ?&lt;/p&gt;  &lt;p&gt;Tot ce trebuie sa faci e sa folosesti aplicatia &lt;a href="http://www.facebook.com/pages/eMAG/249215621898?sk=app_359384124153089" target="_blank"&gt;Win 8@eMAG&lt;/a&gt; si intri automat in tragerea la sorti pentru unul din cele 16 premii oferite de Microsoft.&lt;/p&gt;  &lt;p&gt;Toti participantii beneficiaza automat de un cover photo personalizat pentru profilul de Facebook,dar cel mai important e ca esti introdus automat in tragerea la sorti pentru cele 16 premii.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.facebook.com/pages/eMAG/249215621898?sk=app_359384124153089" target="_blank"&gt;Participa&lt;/a&gt;.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Ce faci cand ti se strica laptopul ?</title><link>http://it-experts.blogspot.com/2012/08/ce-faci-cand-ti-se-strica-laptopul.html</link><category>Hardware</category><category>Recomandare</category><category>Tools</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Thu, 2 Aug 2012 22:20:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-5530432556129373713</guid><description>De când laptopurile au început să aibă performanțe rezonabile la un preț accesibil, piața calculatoarelor portabile s-a diversificat și tot mai multe persoane achiziționează laptopuri. &lt;br /&gt;
Problema e ca aceste laptopuri vandute la noi in tara la preturi sub 2000 lei sunt facute oarecum pentru noi romanii (si pentru alte piete slab dezvoltate sau in curs de dezvoltare) si au durata de viata relativ mica.&lt;br /&gt;
Se observa chiar si la exterior prin calitatea diferitelor materiale folosite/balamale..etc.&lt;br /&gt;
&lt;b&gt;Ce faci atunci cand se strica ? &lt;/b&gt;&lt;br /&gt;
Cum anume procedezi cand ai nevoie de un &lt;a href="http://www.easy-it.ro/"&gt;&lt;b&gt;Service Laptop&lt;/b&gt;&lt;/a&gt; ? Majoritatea dintre noi fie ne apucam sa le desfacem singuri sau rugam fel si fel de cunostinte sa le puna un diagnostic.&lt;br /&gt;
Modul acesta de a repara laptopul de catre persoane neavizate (fie ca sunt eu sau alte cunostinte) e total nerecomandat.&lt;br /&gt;
&lt;b&gt;De ce ?&lt;/b&gt;&lt;br /&gt;
- laptopurile au fel si fel de cleme/suruburi/clipsuri/panglici etc. care se pot rupe si pentru a fi desfacute/reparate necesita anumite “scule” care costa. Vechiul cutit cu care desfaceam fel si fel de aparate e total nerecomandat. Ce sa mai zicem ca odata desfacut majoritatea ne uitam degeaba in el.&lt;br /&gt;
- un service laptop facut de un “mester” neavizat poate duce la defecte mult mai serioase. Sansele ca un laptop sa fie reparat sunt mult mai mari daca nu a mai incercat cineva inainte sa-l repare fara succes;&lt;br /&gt;
-acest diagnostic facut de cunostinte(care va livreaza numai sfaturi si presupuneri) nu e absolut gratis (lasati un coment mai jos daca nu va costa absolut nimic ..stiti voi ce spun aici) si daca adunati observati ca ajungeti la o suma foarte apropiata (sau mai mare) de cea platita intr-un service spercializat.Vi se pare mult sa platiti 50 lei pentru un diagnostic exact ?Sau sa nu platiti nimic daca laptopul este ireparabil sau daca decideti sa il reparati la aceeasi firma?&lt;br /&gt;
Va spun pentru ca eu recent am avut nevoie de o &lt;a href="http://www.displaylaptop.ro/content/7-inlocuire-si-montaj-display-laptop"&gt;&lt;b&gt;inlocuire display laptop&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
Am cautat pe Google “&lt;a href="http://www.displaylaptop.ro/"&gt;&lt;b&gt;display laptop&lt;/b&gt;&lt;/a&gt; si pot spune am avut norocul sa ajung la o firma serioasa si exigenta in ceea ce priveste calitatea lucrarii si a safisfactiei clientului. Nu prea sunt multe de genul!&lt;br /&gt;
Totul a fost super ok! Problema a fost reparata in aceeasi zi, iar diagnosticarea a fost gratuita pentru ca am facut reparatia la ei.&lt;br /&gt;
Ce am mai observat la &lt;a href="http://www.easy-it.ro/"&gt;Easy IT&lt;/a&gt;&amp;nbsp; :&lt;br /&gt;
- dispun de aplicatie pentru vizualizare online a stadiului reparatiei si iti intocmesc o fisa cu toate seriile componentelor pentru a elimina orice dubiu;&lt;br /&gt;
- dispun de echipamente BGA cu infrarosii si aer cald;&lt;br /&gt;
- reparatia se face la nivel de componenta electronica care duce la costuri scazute, reprogramarea micro controlerelor si modificarea sistemelor de racire ca sa fie mai eficiente si sa previna problemele pe termen lung;&lt;br /&gt;
- iti ofera garantie la piese si lucrari, iar inginerii electronisiti de acolo chiar stiu ce fac, au studii in electronica nu au “invatat” de pe net ca altii si relationeaza cu tine intr-un mod profesionist si transparent;&lt;br /&gt;
- raportul calitate pret este unul pe masura, nu iti iau pielea de pe tine si vor ca toata lumea sa fie multumita pentru ca recomandarea unui prieten este cea mai buna publicitate!</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total></item><item><title>Cum instalati Windows 8 Consumer Preview pe PC</title><link>http://it-experts.blogspot.com/2012/03/cum-instalati-windows-8-consumer.html</link><category>Windows 8</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Thu, 15 Mar 2012 09:24:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-7718755402954350162</guid><description>&lt;p&gt;Windows 8 Consumer Preview e o versiune mai completă decât cea Developer Preview din toamnă: mai stabilă, mai finisată și cu … mult mai multe aplicații. Deja avem o imagine mai bună despre cum o să fie Windows 8 pe sistemele noastre. Și nu doar pe cele cu touch – se poate folosi fără probleme și pe sistemele actuale ce rulează Windows 7 sau Vista.&lt;/p&gt;  &lt;p&gt;Pentru toți cei interesați de a vedea efectiv la lucru pe sistemul propriu prima versiune beta a lui Windows 8, denumită Windows 8 Consumer Preview am asamblat un mic tutorial.&lt;/p&gt;  &lt;p&gt;1. Asigurați-vă că aveți destul spațiu pentru instalarea noului Windows pe harddisc, pe o altă partiție. 20 GB ar trebui să fie suficient.&lt;/p&gt;  &lt;p&gt;2. Salvați toate datele importante de pe Windows-ul actual ca să aveți copii de siguranță în caz că vor apărea probleme și trebuie reinstalare.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.chip.ro/images/stories/1_917df67003909d8831f6676265b61d0d.png"&gt;&lt;img title="1" border="0" alt="1" src="http://www.chip.ro/images/stories/1_thumb_488be230e4a6ec329703d088c0823da7.png" width="453" height="328" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;3. Obțineți kit-ul de instalare în format .ISO și Windows 7 USB/DVD Download Tool dacă aveți de gând (și vă sfătuiesc să faceți asta) să folosiți un stick USB pentru instalare.&lt;/p&gt;  &lt;p&gt;64-bit (x64) &lt;a href="http://iso.esd.microsoft.com/WCPDL/BD1B8A49393E30CC9C4E5C88457D73E964F1F3B18/Windows8-ConsumerPreview-64bit-English.iso"&gt;Download&lt;/a&gt; (3.3 GB)     &lt;br /&gt;Sha 1 hash — 1288519C5035BCAC83CBFA23A33038CCF5522749&lt;/p&gt;  &lt;p&gt;32-bit (x86) &lt;a href="http://iso.esd.microsoft.com/WCPDL/BD1B8A49393E30CC9C4E5C88457D73E964F1F3B18/Windows8-ConsumerPreview-32bit-English.iso"&gt;Download&lt;/a&gt; (2.5 GB)     &lt;br /&gt;Sha 1 hash — E91ED665B01A46F4344C36D9D88C8BF78E9A1B39&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Product Key:&amp;#160;&amp;#160; DNJXJ-7XBW8-2378T-X22TX-BKG7J&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Aduceți apoi &lt;a href="http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-tool.exe"&gt;Windows 7 USB/DVD Download Tool.&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;4. Introduceți un stick 4 GB în PC/laptop și porniți Windows 7 USB/DVD Download Tool. Alegeți imaginea .ISO (64 sau 32 biți) și apăsați Next. Alegeți apoi USB Device, selectați mediul USB și apoi Begin Copying. Așteptați până se termină crearea stick-ului bootabil.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.chip.ro/images/stories/2_ad9690750f652fa929f15cf6a5aa41e9.png"&gt;&lt;img title="2" border="0" alt="2" src="http://www.chip.ro/images/stories/2_thumb_a5c0438de3217c957e5a8bac6cf33128.png" width="458" height="293" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;ATENȚIE: toate informațiile de pe el vor fi șterse ca să se permită copierea kit-ului.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.chip.ro/images/stories/3_b93afc4ce828854a523d0b7da8f72067.png"&gt;&lt;img title="3" border="0" alt="3" src="http://www.chip.ro/images/stories/3_thumb_2c8c2c8a93e588119f78b71e5a6bb846.png" width="461" height="292" /&gt;&lt;/a&gt;&lt;a href="http://www.chip.ro/images/stories/4_313a80f4cd1a8d672df5155d2b187e2d.png"&gt;&lt;img title="4" border="0" alt="4" src="http://www.chip.ro/images/stories/4_thumb_c7334db72b8fd73f030df20c633dd7d3.png" width="463" height="243" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;5. Opriți sistemul, intrați în BIOS și activați bootarea de pe stick-urile USB. Introduceți stick-ul creat la pasul anterior și porniți instalarea. În mare e similară cu una de Windows 7, așa că nu ar trebui să fie probleme.&lt;/p&gt;  &lt;p&gt;Succes!&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Cerințe minime&lt;/strong&gt;: sistemul pe care doriți să puneți Windows 8 ar trebui să fie cel puțin la nivelul specificațiilor următoare.&lt;/p&gt;  &lt;p&gt;CPU: 1 GHz sau mai rapid&lt;/p&gt;  &lt;p&gt;RAM: 1 GB (32-bit) sau 2 GB (64-bit)&lt;/p&gt;  &lt;p&gt;Hard disk: 16 GB (32-bit) sau 20 GB (64-bit)&lt;/p&gt;  &lt;p&gt;GPU: Microsoft DirectX 9&lt;/p&gt;  &lt;p&gt;Pentru Windows Store și accesul la aplicații e nevoie de o conexiune la Internet și un monitor cu o rezoluție de minim 1024 x 768&lt;/p&gt;  &lt;p&gt;Tags: Cum instalezi Windows 8 Consumer Preview, Ghid de instalare windows 8 cu poze&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Despre certificarile pentru profesionistii IT</title><link>http://it-experts.blogspot.com/2011/10/despre-certificarile-pentru.html</link><category>Certificari</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Sun, 23 Oct 2011 18:57:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-2714307015390208568</guid><description>&lt;h3&gt;&amp;#160;&lt;/h3&gt;  &lt;p&gt;In urmatoarele zile va avea loc evenimentul “Despre certificarile pentru profesionistii IT” &lt;/p&gt;  &lt;p&gt;Dezvolta-ti cariera: Despre certificarile pentru profesionistii IT&lt;/p&gt;  &lt;p&gt;ID eveniment: 1032496148&lt;/p&gt;  &lt;p&gt;Hotel Ramada Nord&lt;/p&gt;  &lt;p&gt;Str. Daniel Danielopolu 44 A&lt;/p&gt;  &lt;p&gt;sector 1 Bucuresti România&lt;/p&gt;  &lt;p&gt;Produse: Windows Server 2008 R2.&lt;/p&gt;  &lt;p&gt;Publicuri: Dezvoltator amator, Factor de decizie IT, Generalist IT, Implementator IT şi Manager IT.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;9.00 – 9.30 Inregistrare&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;9.30 – 11.00 Ce este Cloud Computing?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Introducere in platforma Microsoft Cloud Computing – &lt;i&gt;Sebastian Vijeu, Technology Evangelist la Microsoft Romania&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;11.00 – 11.30 Pauza de cafea&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;11.30 – 13.00 Panel de discutii: “Cloud Computing si impactul asupra fortei de munca din IT“&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;Esti pregatit pentru Cloud computing? – &lt;i&gt;Angela Dobrea, Trainer &lt;a href="http://www.intelprof.com/"&gt;Intelprof&lt;/a&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;Cloud-ul fara IT Admin nu se poate – &lt;i&gt;Nicu Aleman, Trainer &lt;a href="http://aleman.ro/"&gt;Aleman Consulting&lt;/a&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;Implementari reale de tehnologii Cloud si colaborarea cu echipa IT – &lt;i&gt;Paul Roman, Managing Partner &lt;a href="http://www.pras.ro/"&gt;Pras Consulting&lt;/a&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;Certificari disponibile pentru Microsoft Cloud Computing&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;In cadrul evenimentului se vor oferi, prin tragere la sorti, vouchere la examene de certificare pentru tehnologiile Microsoft Cloud Computing.&lt;/b&gt;&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Integrating Lync 2010 with Exchange 2010</title><link>http://it-experts.blogspot.com/2011/10/integrating-lync-2010-with-exchange.html</link><category>Exchange 2010</category><category>Lync 2010</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Sun, 23 Oct 2011 11:46:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-2109246885182740142</guid><description>&lt;p&gt;Articol scris de &lt;a href="http://paulroman.pras.ro/" target="_blank"&gt;Paul Roman (MVP for Exchange)&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I published a a new article on &lt;a href="http://exchangeinbox.com/"&gt;ExchangeInbox.com&lt;/a&gt; web site. If you need to integrate your Exchange infrastructure with Lync this is a good start.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Exchange 2010 and Lync 2010 are designed to improve communication and collaboration within the enterprise. The two are designed to work together but certain steps are required to integrate them together.&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Exchange 2010 and Lync 2010 are at the moment two of the hottest products from Microsoft. Both are designed to improve communication and collaboration within the enterprise and together are covering all the requirements for the ultimate communication platform.   &lt;br /&gt;Exchange 2010 and Lync 2010 are designed to work together but not exactly out of the box. There are certain steps that need to be followed first. In all we have three areas that may be integrated:    &lt;br /&gt;&lt;b&gt;Outlook local client&lt;/b&gt; - provides Outlook users with in-context access to the instant messaging, enhanced presence, telephony, and conferencing capabilities of Lync.    &lt;br /&gt;&lt;b&gt;Outlook Web App&lt;/b&gt; - provides OWA users with web access to instant messaging and enhanced presence.    &lt;br /&gt;&lt;b&gt;Voice integration&lt;/b&gt; - integrates voice capabilities of Lync with Exchange 2010 voice mail.    &lt;br /&gt;This article assumes you already have Exchange 2010 and Lync 2010 infrastructures in place. We also assume that the Lync Enterprise voice is enabled and working.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Exchange 2010 and Lync 2010 are designed to improve communication and collaboration within the enterprise. The two are designed to work together but certain steps are required to integrate them together.&lt;/b&gt;&lt;/p&gt;  &lt;ul&gt;&lt;/ul&gt;  &lt;p&gt;Exchange 2010 and Lync 2010 are at the moment two of the hottest products from Microsoft. Both are designed to improve communication and collaboration within the enterprise and together are covering all the requirements for the ultimate communication platform.&lt;/p&gt;  &lt;p&gt;Exchange 2010 and Lync 2010 are designed to work together but not exactly out of the box. There are certain steps that need to be followed first. In all we have three areas that may be integrated:&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Outlook local client&lt;/b&gt; - provides Outlook users with in-context access to the instant messaging, enhanced presence, telephony, and conferencing capabilities of Lync.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Outlook Web App&lt;/b&gt; - provides OWA users with web access to instant messaging and enhanced presence.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Voice integration&lt;/b&gt; - integrates voice capabilities of Lync with Exchange 2010 voice mail.&lt;/p&gt;  &lt;p&gt;This article assumes you already have Exchange 2010 and Lync 2010 infrastructures in place. We also assume that the Lync Enterprise voice is enabled and working.&lt;/p&gt;  &lt;h4&gt;Integrating Outlook local client with Lync server&lt;/h4&gt;  &lt;p&gt;All the Outlook 2010/2007 integration features are enabled by default when you install the Lync client. You can control the settings individually using the Lync client, Outlook client, Office Group Policy objects or through Lync Server 2010 in-band policies. Each alternative provides access to different settings as described below.&lt;/p&gt;  &lt;p&gt;Microsoft Outlook 2003 with the latest service pack and earlier versions of Exchange are compatible with Lync 2010 but do not support the full degree of integration. To find out more about Outlook 2003 and Lync client integration check the &lt;a href="http://technet.microsoft.com/en-us/library/gg412817.aspx"&gt;compatibility matrix&lt;/a&gt;.&lt;/p&gt;  &lt;h5&gt;1. Control integration via Lync Client&lt;/h5&gt;  &lt;p&gt;To access the Lync Client settigns, go to the &amp;quot;Options&amp;quot; button and then select &amp;quot;Personal&amp;quot;. The following screen will show up:&lt;/p&gt;  &lt;p&gt;&lt;img alt="Lync Client Options" src="http://www.exchangeinbox.com/image.aspx?i=769" /&gt;&lt;/p&gt;  &lt;p&gt;Here you can control:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;     &lt;p&gt;Whether or not Lync is to update presence based on Exchange calendar information&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Whether we want to save within the &amp;quot;Conversation History&amp;quot; data regarding instant messaging or call logs&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Whether we want to save Lync contacts in Exchange personal contacts folder&lt;/p&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;h5&gt;2. Control integration via Outlook client&lt;/h5&gt;  &lt;p&gt;From Outlook you can control if the presence information is displayed next to the person name. In Outlook 2010 | File tab, select Options, click Contacts and access the settings under Online status and photographs.&lt;/p&gt;  &lt;p&gt;&lt;img alt="Outlook 2010 Lync Options" src="http://www.exchangeinbox.com/image.aspx?i=770" /&gt;&lt;/p&gt;  &lt;p&gt;In Outlook 2007 go to Tools | Options | Other | Person Names and select &lt;b&gt;Display online status next to a person name&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;img alt="Outlook 2007 Lync Options" src="http://www.exchangeinbox.com/image.aspx?i=771" /&gt;&lt;/p&gt;  &lt;h5&gt;3. Office Group Policy objects&lt;/h5&gt;  &lt;p&gt;There are a number of settings that are available only using Office Group Policy objects. I will not cover each of them here because there are too many. You can find the details in TechNet here:   &lt;br /&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg412966.aspx"&gt;Overview of Client Policies and Settings&lt;/a&gt;&lt;/p&gt;  &lt;h5&gt;4. Control via Lync Server 2010 in-band policies&lt;/h5&gt;  &lt;p&gt;All the Outlook 2010/2007 integration features are enabled by default but can be controlled via Lync Server 2010 in-band policies.&lt;/p&gt;  &lt;p&gt;Using the Lync Server Management Shell run:   &lt;br /&gt;&lt;code&gt;Get-CSClientPolicy&lt;/code&gt;&lt;/p&gt;  &lt;p&gt;This will give you the client policies configured for use in your organization. If you did not define any custom Client Policy you will get the default Global Client policy shown bellow.&lt;/p&gt;  &lt;p&gt;&lt;img alt="Client Policies" src="http://www.exchangeinbox.com/image.aspx?i=772" /&gt;&lt;/p&gt;  &lt;p&gt;If for example you wanted to disable emoticons, you could run the following cmdlet from the Lync Server Management Shell:   &lt;br /&gt;&lt;code&gt;New-CsClientPolicy -Identity NoEmoticons -DisableEmoticons $True&lt;/code&gt;&lt;/p&gt;  &lt;p&gt;where &amp;quot;NoEmoticons&amp;quot; is the name that you want to give to this policy&lt;/p&gt;  &lt;p&gt;To apply the newly defined Client Policy next run the following cmdlet:   &lt;br /&gt;&lt;code&gt;Get-CsUser -LDAPFilter &amp;quot;l=Bucharest&amp;quot; | Grant-CsClientPolicy -PolicyName NoEmoticons&lt;/code&gt;&lt;/p&gt;  &lt;p&gt;In this case, we filtered the users by using locality LDAP filter. To find out more about Get-CsUser command and LDAP filters check the &lt;a href="http://technet.microsoft.com/en-us/library/gg398125.aspx"&gt;TechNet Get-CsUser documentation&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;The table that follows lists all the settings that can be modified using Lync Server 2010 in-band policies. This table is available from &lt;a href="http://technet.microsoft.com/en-us/library/gg398806.aspx"&gt;TechNet here&lt;/a&gt; and is being reproduced for your convenience:&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Policy&lt;/b&gt;    &lt;br /&gt;&lt;b&gt;Description&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;code&gt;CalendarStatePublicationInterval&lt;/code&gt;    &lt;br /&gt;Specifies the amount of time, in seconds, that Lync waits before retrieving calendar information from Outlook and adding this data to your presence information.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;DisableCalendarPresence&lt;/code&gt;    &lt;br /&gt;Disables the loading of free or busy data from Outlook.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;DisableFreeBusyInfo&lt;/code&gt;    &lt;br /&gt;Prevents Lync from displaying Outlook information about free/busy states to other contacts.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;DisableMeetingSubjectAndLocation&lt;/code&gt;    &lt;br /&gt;Prevents Lync from publishing the subject and location information of a meeting. This value is not used if DisableCalendarPresence is set or if the &lt;b&gt;Update my status based on calendar data&lt;/b&gt; option is not set.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;DisableOnlineContextualSearch&lt;/code&gt;    &lt;br /&gt;When set to True, disables the Find Previous Conversations menu option that appears when you right-click a user in your Contacts list.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;DisablePresenceNote&lt;/code&gt;    &lt;br /&gt;Prevents users from selecting or clearing of the corresponding user setting, and disables retrieval of the Outlook Out of Office message.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;EnableCallLogAutoArciving&lt;/code&gt;    &lt;br /&gt;Controls the automatic saving of information about incoming and outgoing phone calls. When set to False, the corresponding user dialog box setting is unavailable.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;EnableExchangeContactSync&lt;/code&gt;    &lt;br /&gt;When set to True (the default value), Lync creates a corresponding personal contact in Outlook for each person on a user's Lync Contacts list.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;EnableExchangeDelegateSync&lt;/code&gt;    &lt;br /&gt;When set to True, enables delegates that a user has configured in Exchange to schedule meetings for that user.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;EnableIMAutoArchiving&lt;/code&gt;    &lt;br /&gt;Controls automatic archiving of instant messages to the Outlook Conversation History folder. When set to False, the corresponding user setting is unavailable, but users can still manually save individual conversations.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;ExcludedContactFolders&lt;/code&gt;    &lt;br /&gt;Indicates which Outlook contact folders (if any) should not be searched any time Lync searches for new contacts.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;MAPIPollInterval&lt;/code&gt;    &lt;br /&gt;For users of Microsoft Exchange Server 2003, specifies how often Lync retrieves calendar data from the Exchange public folders.&lt;/p&gt;  &lt;p&gt;&lt;code&gt;WebServicePollInterval&lt;/code&gt;    &lt;br /&gt;For users of Microsoft Exchange Server 2007 and later versions of the product, specifies how often Lync retrieves calendar data from EWS.&lt;/p&gt;  &lt;h4&gt;Conclusion&lt;/h4&gt;  &lt;p&gt;The integration between Exchange 2010 and Lync 2010 should work easily as long as you are a little bit familiar with both products. It's a task that you should definitely do because it provides you with features that can be very helpful within your company.&lt;/p&gt;  &lt;p&gt;Today we started exploring the integration options focusing on integrating the Outlook Client with Lync Server. In the next part we will continue the discussion. We still have to cover the integration of the Outlook Web App OWA interface and the integration of the Exchange 2010 Unified Messaging Server role.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;One of the coolest features resulting from Exchange 2010 and Lync 2010 integration is to have access to presence and instant messaging in OWA. Today we continue our discussion doing just that.&lt;/b&gt;&lt;/p&gt;  &lt;ul&gt;&lt;/ul&gt;  &lt;p&gt;In &lt;a href="http://www.exchangeinbox.com/article.aspx?i=182"&gt;Integrating Lync 2010 with Exchange 2010 – Part 1&lt;/a&gt; we started our discussion focusing on integrating the Outlook Client interface. Today we turn our attention to the Outlook Web App and see how to provide users with Lync functionality through it.&lt;/p&gt;  &lt;h4&gt;Integrating Outlook Web App with Lync server&lt;/h4&gt;  &lt;p&gt;One of the coolest features resulting from Exchange 2010 and Lync 2010 integration is to have access to presence and instant messaging in OWA. This is a straight forward setup and should work perfectly if you follow these steps:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;     &lt;p&gt;On the Exchange 2010 Client Access Server do the following:&lt;/p&gt;      &lt;ol&gt;       &lt;li&gt;         &lt;p&gt;Download the &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ca107ab1-63c8-4c6a-816d-17961393d2b8&amp;amp;displaylang=en"&gt;Microsoft Office Communications Server 2007 R2 Web Service Provider&lt;/a&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Run CWAOWASSPMain.msi and select a location where to save the files.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;From the location selected in the previous point, run the following programs (in this order):&lt;/p&gt;          &lt;p&gt;Visual C++ Redistributable (vcredist_x64.exe)&lt;/p&gt;          &lt;p&gt;Unified Communications Managed API (ucmaredist.msi)&lt;/p&gt;          &lt;p&gt;OCS Service Provider (cwaowassp.msi) - this has to be run from a command prompt with elevated rights&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;Get-ExchangeCertificate&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;In this manner we find out which certificate is used for OWA. You should get a result similar to:&lt;/p&gt;          &lt;p&gt;&lt;img alt="OWA Certificate" src="http://www.exchangeinbox.com/image.aspx?i=785" /&gt;&lt;/p&gt;          &lt;p&gt;We need the one that has &lt;b&gt;W&lt;/b&gt; as service.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using the Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;Get-OwaVirtualDirectory |fl InstantMessaging*&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;This returns the current Lync integration settings. You should get a result like:&lt;/p&gt;          &lt;p&gt;&lt;img alt="OWA Instant Messaging Settings" src="http://www.exchangeinbox.com/image.aspx?i=775" /&gt;&lt;/p&gt;          &lt;p&gt;This means that for the moment there is no integration between your Exchange 2010 and Lync 2010 servers.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;Set-OwaVirtualDirectory &amp;quot;owa (default web site)&amp;quot;             &lt;br /&gt;-InstantMessagingServerName &amp;lt;LyncPoolName&amp;gt;              &lt;br /&gt;-InstantMessagingCertificateThumbprint &amp;lt;Thumbprint&amp;gt;              &lt;br /&gt;-InstantMessagingEnabled $True -InstantMessagingType OCS&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&amp;lt;LyncPoolName&amp;gt;&lt;/b&gt; is your current Lync pool name&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&amp;lt;Thumbprint&amp;gt;&lt;/b&gt; is the policy thumbprint property. This is one of the policy settings we saw in&lt;a href="http://www.exchangeinbox.com/article.aspx?i=182"&gt;Integrating Lync 2010 with Exchange 2010 – Part 1&lt;/a&gt; under &lt;b&gt;Control via Lync Server 2010 in-band policies&lt;/b&gt;.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Exchange Management Shell again run:           &lt;br /&gt;&lt;code&gt;Get-OwaVirtualDirectory |fl InstantMessaging*&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;...to verify if the current Lync integration settings are as we want them. You should get a result like:&lt;/p&gt;          &lt;p&gt;&lt;img alt="OWA Instant Messaging Settings" src="http://www.exchangeinbox.com/image.aspx?i=776" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;From the command prompt Reset IIS server by running:           &lt;br /&gt;&lt;code&gt;iisreset /noforce&lt;/code&gt;&lt;/p&gt;       &lt;/li&gt;     &lt;/ol&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;On the Lync 2010 front end server do the following tasks:&lt;/p&gt;      &lt;ol&gt;       &lt;li&gt;         &lt;p&gt;Open Lync Topology Builder and create &amp;quot;New Trusted Application Pool&amp;quot;&lt;/p&gt;          &lt;p&gt;&lt;img alt="New Trusted Application Pool" src="http://www.exchangeinbox.com/image.aspx?i=777" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Select &amp;quot;Single computer pool&amp;quot;, enter your Exchange Server name under &amp;quot;FQDN&amp;quot; and click &amp;quot;Next&amp;quot;&lt;/p&gt;          &lt;p&gt;&lt;img alt="Application Pool Settings" src="http://www.exchangeinbox.com/image.aspx?i=778" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Select your Lync Front End pool and click &amp;quot;Finish&amp;quot;&lt;/p&gt;          &lt;p&gt;&lt;img alt="Application Pool Next Hop" src="http://www.exchangeinbox.com/image.aspx?i=779" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Use Lync Topology Builder to publish the topology just created&lt;/p&gt;          &lt;p&gt;&lt;img alt="Publish Topology" src="http://www.exchangeinbox.com/image.aspx?i=786" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Lync Server Management Shell run:           &lt;br /&gt;&lt;code&gt;Get-CSTrustedApplicationPool&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;This will help you check if the Trusted Application Pool was created correctly. You should get a result like:&lt;/p&gt;          &lt;p&gt;&lt;img alt="Get-CsTrustedApplicationPool" src="http://www.exchangeinbox.com/image.aspx?i=781" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;From the Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;New-CsTrustedApplication -ApplicationId &amp;lt;OWAApp&amp;gt;             &lt;br /&gt;-TrustedApplicationPoolFqdn &amp;lt;TAPFqdn&amp;gt; -Port &amp;lt;AppPort&amp;gt;&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&amp;lt;OWAApp&amp;gt;&lt;/b&gt; is the name that you want to give to this Application&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&amp;lt;TAPFqdn&amp;gt;&lt;/b&gt; is the Full Qualified Domain Name of your OWA server&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&amp;lt;AppPort&amp;gt;&lt;/b&gt; can be any port that is not used for any other service&lt;/p&gt;          &lt;p&gt;This will add Outlook Web App as a trusted application in Lync Server.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Lync Server Management Shell run:           &lt;br /&gt;&lt;code&gt;Get-CsTrustedApplication&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;...to verify if we have the right settings. You should get a result like:&lt;/p&gt;          &lt;p&gt;&lt;img alt="Get-CsTrustedApplication" src="http://www.exchangeinbox.com/image.aspx?i=782" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Using Lync Server Management Shell run:           &lt;br /&gt;&lt;code&gt;Enable-CsTopology&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;...so as to apply the changes we just did at the Lync configuration&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Test in Outlook Web App if chat and presence is available&lt;/p&gt;          &lt;p&gt;&lt;img alt="OWA Presence" src="http://www.exchangeinbox.com/image.aspx?i=784" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;A very important aspect is that you can disable or enable chat in OWA for certain users using Outlook Web App Mailbox Policies&lt;/p&gt;          &lt;p&gt;&lt;img alt="OWA Policy" src="http://www.exchangeinbox.com/image.aspx?i=783" /&gt;&lt;/p&gt;       &lt;/li&gt;     &lt;/ol&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;h4&gt;Conclusion&lt;/h4&gt;  &lt;p&gt;Today we continued discussing how to integrate Lync Server 2010 with Exchange 2010. Here we saw how to enable access to presence and instant messaging in Outlook Web App OWA.&lt;/p&gt;  &lt;p&gt;In the third and final part of this article, we will see how to also integrate the Exchange 2010 Unified Messaging Server role with Lync.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Exchange 2010 Unified Messaging brings voice and e-mail messaging into one place. Integrating Lync with Exchange we get a voice solution that replaces and is dramatically better than standard PBX solutions.&lt;/b&gt;&lt;/p&gt;  &lt;ul&gt;&lt;/ul&gt;  &lt;p&gt;In &lt;a href="http://www.exchangeinbox.com/article.aspx?i=182"&gt;Integrating Lync 2010 with Exchange 2010 – Part 1&lt;/a&gt; we started our discussion focusing on integrating the Outlook Client interface. In &lt;a href="http://www.exchangeinbox.com/article.aspx?i=184"&gt;Integrating Lync 2010 with Exchange 2010 – Part 2&lt;/a&gt; we turned our attention to the Outlook Web App and saw how to provide users with Lync functionality through it. Today we conclude this series by integrating the Exchange 2010 Unified Messaging Server with Lync.&lt;/p&gt;  &lt;h4&gt;Exchange 2010 and Lync 2010 Voice Integration&lt;/h4&gt;  &lt;p&gt;Exchange Server 2010 Unified Messaging helps you get voice messaging and e-mail messaging into one place, accessible from a normal phone or a computer. Integrating Lync Server 2010 with Exchange we get a voice solution that replaces and is dramatically better than standard PBX solutions. Here are the steps needed to achieve this integration.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;     &lt;p&gt;&lt;b&gt;Install Exchange UM Role&lt;/b&gt; - I will not cover this aspect here. This is well documented at the Microsoft site, check:        &lt;br /&gt;&lt;a href="http://technet.microsoft.com/en-us/library/aa998002.aspx"&gt;Install the Exchange 2010 Unified Messaging Server Role&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;Configure certificates&lt;/b&gt; - Make sure that you have digital certificates installed and configured on each UM server. The certificates have to be issued by a root CA trusted by the Exchange and Lync servers.&lt;/p&gt;      &lt;ul&gt;       &lt;li&gt;         &lt;p&gt;To find out if a certificate is in use for UM, from the Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;Get-ExchangeCertificate&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;&lt;img alt="UM Certifcate" src="http://www.exchangeinbox.com/image.aspx?i=787" /&gt;&lt;/p&gt;          &lt;p&gt;The one that has &lt;b&gt;U&lt;/b&gt; as service is the one that you need.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;If no certificate is selected for the UM role, at the Exchange Management Shell on the server(s) that have the UM role installed, run:           &lt;br /&gt;&lt;code&gt;Enable-ExchangeCertificate -thumbprint &amp;lt;CertificateThumbprint&amp;gt; -Services UM&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;&lt;code&gt;&amp;lt;CertificateThumbprint&amp;gt;&lt;/code&gt; is the thumbprint of the certificate that will be used for this service.&lt;/p&gt;       &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;Create and configure an Exchange UM SIP dial plan.&lt;/b&gt;&lt;/p&gt;      &lt;p&gt;You need to create a SIP dial plan on the Exchange UM server and then associate the Unified Messaging servers to it.&lt;/p&gt;      &lt;ul&gt;       &lt;li&gt;         &lt;p&gt;On the Exchange UM server, using the Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;New-UMDialPlan -Name UMDialPlan             &lt;br /&gt;-NumberOfDigitsInExtension 5              &lt;br /&gt;-URIType SipName              &lt;br /&gt;-VoIPSecurity Secured              &lt;br /&gt;-CountryOrRegionCode 44&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;This will create a new Dial Plan with the following settings:           &lt;br /&gt;&lt;code&gt;UMDialPlan&lt;/code&gt; - the name of the new dial plan            &lt;br /&gt;&lt;code&gt;5&lt;/code&gt; - the number of digits available in the extension number            &lt;br /&gt;&lt;code&gt;SipName&lt;/code&gt; - means that this dial plan will support SIP URIs            &lt;br /&gt;&lt;code&gt;Secured&lt;/code&gt; - means that the traffic will be encrypted using mutual Transport Layer Security (TLS).            &lt;br /&gt;&lt;code&gt;44&lt;/code&gt; - is the region code for UK.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Next using the Exchange Management Shell run:           &lt;br /&gt;&lt;code&gt;Set-UMServer -Identity UMExch -DialPlans UMDialPlan -UMStartupMode TLS&lt;/code&gt;&lt;/p&gt;          &lt;p&gt;This will configure the server UMExch to use the UMDialPlan just created and to start the UM service in TLS mode.&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Restart the Exchange UM service&lt;/p&gt;       &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;On the Exchange UM server create and configure a new AutoAttendant.&lt;/b&gt;&lt;/p&gt;      &lt;p&gt;The UM auto attendant enables the Unified Messaging server to answer incoming calls.&lt;/p&gt;      &lt;p&gt;Using the Exchange Management Shell run:       &lt;br /&gt;&lt;code&gt;New-UMAutoAttendant -Name UMAutoAttendant         &lt;br /&gt;-UMDialPlan UMDialPlan          &lt;br /&gt;-SpeechEnabled $true          &lt;br /&gt;-PilotIdentifierList +4400000          &lt;br /&gt;-Status Enabled&lt;/code&gt;&lt;/p&gt;      &lt;p&gt;This will create a new auto attendant named UMAutoAttendant that will be speech enabled and answers to the +4400000 number&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;On the Exchange UM server run the exchucutil.ps1 script&lt;/b&gt;&lt;/p&gt;      &lt;p&gt;From the scripts folder on the Exchange UM server (usually C:\Program Files\Microsoft\Exchange Server\v14\Scripts) using the Exchange Management Shell, run the exchucutil.ps1 script.&lt;/p&gt;      &lt;p&gt;This will perform the following tasks:&lt;/p&gt;      &lt;ul&gt;       &lt;li&gt;         &lt;p&gt;Grant permission to Lync Server to read Exchange UM AD objects like the SIP dial plans created in the previous task&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Creates a UM IP gateway object for each Lync Server Enterprise Edition pool or Standard Edition server&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Creates an Exchange UM hunt group for each gateway&lt;/p&gt;       &lt;/li&gt;     &lt;/ul&gt;      &lt;p&gt;Before running this script you need to make sure that all the AD replication has completed and that the Dial plan you created in 3 (Create and configure an Exchange UM SIP dial plan) was replicated.&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;Configure Lync Server dial plans&lt;/b&gt;&lt;/p&gt;      &lt;p&gt;For Exchange Server 2010 RTM the Enterprise Voice dial plan has to have a name that matches the Exchange UM dial plan FQDN.&lt;/p&gt;      &lt;p&gt;For Exchange Server 2010 SP1 or later, the Lync Server dial plan and Exchange UM SIP dial plan names do not need to match.&lt;/p&gt;      &lt;p&gt;On the Lync Server run the Exchange UM Integration tool, ocsumutil.exe (C:\Program Files\Common Files\Microsoft Lync Server 2010\Support\OcsUmUtil.exe).&lt;/p&gt;      &lt;p&gt;&lt;img alt="Exchange UM Integration Utility" src="http://www.exchangeinbox.com/image.aspx?i=788" /&gt;&lt;/p&gt;      &lt;p&gt;This tool will create Subscriber Access and Auto Attendant contact objects. It will also validate that there is an Enterprise Voice dial plan with a name that matches the Exchange UMdialplan FQDN. If you are running Exchange Server 2010 SP1, the dial plan names do not need to match, and you can ignore the tool's warning about this.&lt;/p&gt;      &lt;ul&gt;       &lt;li&gt;         &lt;p&gt;Click Load Data to get the information from Active Directory. This will bring you a screen like this:&lt;/p&gt;          &lt;p&gt;&lt;img alt="SIP Dial Plans" src="http://www.exchangeinbox.com/image.aspx?i=789" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Click Add to add a Subscriber Access contact&lt;/p&gt;          &lt;p&gt;&lt;img alt="Exchange UM Subscriber" src="http://www.exchangeinbox.com/image.aspx?i=790" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Click Add to add an Auto-Attendant contact&lt;/p&gt;          &lt;p&gt;&lt;img alt="Exchange UM AutoAttendant" src="http://www.exchangeinbox.com/image.aspx?i=791" /&gt;&lt;/p&gt;       &lt;/li&gt;        &lt;li&gt;         &lt;p&gt;Finally you should get a screen like this. You can safely ignore the warning if you are using Exchange 2010 SP1 or later&lt;/p&gt;          &lt;p&gt;&lt;img alt="Completed Dial Plan" src="http://www.exchangeinbox.com/image.aspx?i=792" /&gt;&lt;/p&gt;       &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;b&gt;Enable Enterprise Voice users for Exchange UM&lt;/b&gt;&lt;/p&gt;      &lt;p&gt;The last step that you need to do is to enable Voice users to be able to use the Exchange UM. To do that, run the following Exchange Management Shell cmdlet:       &lt;br /&gt;&lt;code&gt;Enable-UMMailbox -Identity testuser@testdomain.com -UMMailboxPolicy UMPolicy -Extensions 12345 -SIPResourceIdentifier testuser@testdomain.com -Pin 23753465 -PinExpired $true&lt;/code&gt;&lt;/p&gt;      &lt;p&gt;This will enable testuser@testdomain.com for ExchangeUM.&lt;/p&gt;      &lt;p&gt;To find out more about this command check the TechNet documentation for &lt;a href="http://technet.microsoft.com/en-us/library/aa998033.aspx"&gt;Enable-UMMailbox&lt;/a&gt;.&lt;/p&gt;   &lt;/li&gt; &lt;/ol&gt;  &lt;h4&gt;Conclusion&lt;/h4&gt;  &lt;p&gt;This completes our journey in the integration of Exchange 2010 and Lync 2010. Once you are a little bit familiar with both products, getting this to work is fairly easy.&lt;/p&gt;  &lt;p&gt;Integration pays dividends in terms of productivity as users are able to employ both products through the same interfaces they work with every day. So it is definitely worth the effort. Integration should indeed be at the top of your priority list once these two products are deployed.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Information Store is not starting</title><link>http://it-experts.blogspot.com/2011/10/information-store-is-not-starting.html</link><category>Exchange 2010</category><category>Windows Server 2008</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Sun, 23 Oct 2011 11:42:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-6652779036049496043</guid><description>&lt;p&gt;Articol scris de &lt;a href="http://paulroman.pras.ro/" target="_blank"&gt;Paul Roman&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This is an issue that I've met more than once on server running MS Exchange and Forefront Protection 2010 for Exchange.   &lt;br /&gt;After the Forefront definition updates were installed automatically the Information Store and the Transport service are refusing to start. When you try to start them you receive &amp;quot;The dependency service or group failed to start&amp;quot;. If you investigate the dependencies you will see that both services are dependent of the FSCController service and that service cannot be started.    &lt;br /&gt;In the Application Event log you will find the error 2063 generated by the FSC controller - &amp;quot;An error occurred. Failed to initialize document.&amp;quot;    &lt;br /&gt;To solve this you have to follow the steps:    &lt;br /&gt;1. Disconnect Forefront Protection services from MS Exchange.    &lt;br /&gt;From the folder &amp;quot;\Program Files (x86)\Microsoft Forefront Protection for Exchange Server\&amp;quot;, using command prompt run: &lt;em&gt;Fscutility /disable.&lt;/em&gt;    &lt;br /&gt;Run &lt;em&gt;Fscutility /status &lt;/em&gt;to check is you disconnected the service.    &lt;br /&gt;This will disable the link between Forefront and MS Exchange allowing you to start the Exchange services.    &lt;br /&gt;You can read the whole Microsoft KB &lt;a href="http://support.microsoft.com/kb/929076"&gt;here&lt;/a&gt;.    &lt;br /&gt;2. Uninstall Forefront Protection 2010 for MS Exchange from Control Panel, Program and Features    &lt;br /&gt;3. Rename the folder &amp;quot;\Program Files (x86)\Microsoft Forefront Protection for Exchange Server\&amp;quot; to something else. If you get an error, you should restart the server before trying again to rename the folder.    &lt;br /&gt;3. Reinstall Forefront Protection 2010 for MS Exchange from the installation kit.    &lt;br /&gt;4. Reboot the server as requested and install all the updates related to Forefront Protection.    &lt;br /&gt;This should restore you the protection provided by Forefront for Exchange.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Steve Ballmer spune ca telefoanele cu Android sunt prea complicate</title><link>http://it-experts.blogspot.com/2011/10/steve-ballmer-spune-ca-telefoanele-cu.html</link><category>Android</category><category>Windows Phone</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 19 Oct 2011 20:50:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-7112782067755892252</guid><description>&lt;p&gt;&amp;quot;Cel mai mare avantaj pe care-l avem fata de Android este ca nu trebuie sa fii expert in computere pentru a folosi un telefon cu Windows&amp;quot;, spune Ballmer.&lt;/p&gt;  &lt;p&gt;Android e mai bogat in chestii, dar din pacate muncesti la el de te ia naiba pana il faci sa arate cat de cat ok. Varaianta standard e un bulshit.    &lt;br /&gt;IOS-ul este intr-adevar un SO foarte inteligent, poate fi folosit de oricine in conditii optime.&lt;/p&gt;  &lt;p&gt;Nu stiu cati dintre cei care nu sunt de acord cu afimatia lui Ballmer au folosit vreodata un Android si un iPhone in paralel. Eu am facut-o (vreo 6 luni), si iata concluziile mele:    &lt;br /&gt;1. iOS e MULT mai user friendly. De asemenea, ruleaza mai smooth, si arata mai ingrijit.     &lt;br /&gt;2. App-urile pentru Android sufera considerabil pe partea de calitate in fata celor scrise pentru iOS. Ca sa nu mai zic ca jocuri de mare succes (gen Infinity Blade) nu au fost &amp;quot;portate&amp;quot; pe Android.     &lt;br /&gt;3. De cele mai multe ori e nevoie de root la Android pentru a putea face un update de OS, pentru ca nu vine de la Google direct, ci de la producatorul telefonului (care poate alege sa nu se oboseasca sa faca un update pentru respectivul model de telefon).     &lt;br /&gt;In cazul iOS, de indata ce Apple are un update, e disponibil in iTunes. iOS a avut 25 milioane de download in primele 5 zile de la aparitie, de exemplu.     &lt;br /&gt;Asta face si scrierea de app-uri pentru iOS mai usoara, pentru ca developerii au de acoperit o plaja mai ingusta de versiuni de OS.     &lt;br /&gt;Pana la urma, fiecare isi ia telefonul si OS-ul pe care si le permite, sau care ii plac.     &lt;br /&gt;Nu neg faptul ca Android e o platforma in crestere, si concurenta e foarte buna, pentru noi, end userii.     &lt;br /&gt;Dar nu cred ca necesitatea de a face root si a instala un custom rom e accesibila majoritatii user-ilor de Android, la fel si cum unele din setarile de pe Android mi-au adus aminte de cele de pe Windows Mobile 6.5 (adica sunt bine ascunse, contra intuitive si greu de folosit).&lt;/p&gt;  &lt;p&gt;Noua versiune de Windows Phone (7.5) este serios imbunatatita fata de cea cu care s-au lansat si din multe puncte de vedere bate deja Android. Este mai bine gandit si inchegat decat Android. Singurul dezavntaj major este ca Romania nu este una din tarile suportate de telefon. Ceea ce inseamna:    &lt;br /&gt;- nu se pot cumpara aplicatii, jocuri sau muzica de pe marketplace (unde exista deja mii de aplicatii si jocuri - aproape orice exista pentru android exista deja si pentru WP7).     &lt;br /&gt;- nu exista suport vocal pentru limba romana (telefonul nu stie sa converteasca pentru limba romana sunetul dictat in text si sa trimita un SMS spre exemplu si nici invers sa citeasca SMS-urile primite si sa le redea vocal in limba romana)     &lt;br /&gt;-lipseste personalizarea suportului de cautare pe internet pentru Romania.     &lt;br /&gt;...pentru Romania WP7 nu poate fi de preferat in fata Android, dar daca vorbim in schimb despre SUA , parerea mea este ca WP7 bate deja Android-ul la capitolul telefoane. ..si este parerea cuiva care a lucrat cu ambele. Asteptam asadar ca Microsoft sa includa si Romania intre tarile care se bucura de serviciile sale pe segmentul de telefonie.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Schimbare parola pentru useri in AD (Active Directory) din Command Prompt</title><link>http://it-experts.blogspot.com/2011/07/schimbare-parola-pentru-useri-in-ad.html</link><category>Active Directory</category><category>Windows Server 2008</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Mon, 4 Jul 2011 10:30:00 +0300</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-1645494062036781338</guid><description>&lt;p&gt;Daca doriti sa schimbati , sper exemplu,&amp;#160; parolele pentru 500 de useri in AD ( acceasi parola la toti ), urmand ca apoi ei sa-si schimbe parola puteti folosi comanda de mai jos.    &lt;br /&gt;dsquery user “ou=nume_ou,dc=nume_domeniu,dc=organizatie” -limit 0 | dsmod user -pwd noua_parola&lt;/p&gt;  &lt;p&gt;Pentru schimbarea individuala puteti folosi consola Active Directory Users and Computers.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Unable to connect Outlook 2003 to Exchange 2010</title><link>http://it-experts.blogspot.com/2011/03/unable-to-connect-outlook-2003-to.html</link><category>Exchange 2010</category><category>Outlook</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Thu, 10 Mar 2011 09:40:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-1906257371048816230</guid><description>&lt;p&gt;Articol scris de&amp;#160; &lt;a href="http://paulroman.pras.ro/"&gt;Paul Roman&lt;/a&gt; (MVP for MS Exchange)&lt;/p&gt;  &lt;p&gt;When you try open an email account located on an Exchange 2010 server using Outlook 2003 you will get the “Unable to open your default e-mail folders” error. If you try to connect to the same mailbox using Outlook 2007 or Outlook 2010 beta version you can connect without any problems.   &lt;br /&gt;This is caused by the fact that in Exchange 2010, by default, you need an encrypted conection to access the server. In Outlook 2007 and later this is the default setting but in previous versions this was optional.&lt;/p&gt;  &lt;p&gt;To solve this issue, you have two options:&lt;/p&gt;  &lt;p&gt;1. You configure your email client to use encryption (recommended). You can do this by accesing your email profile and check the “Encrypt data between Micrososoft Office Outlook and Microsoft Exchange” as you can see bellow:&lt;/p&gt;  &lt;p&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEy7ZwtIbZ9FNr1cbTrspbjrHaosrtAHdoiOkjplGzdzyT7aeLDymkfrJMWglGUSvdALRyfo2t7AR40WsnYI8dHEDd7kKUikXT3f41HPUlXQWie3BIiiyN4NUxrCJlexUfTnguOuk3DOQ/s1600-h/outlook.jpg"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEy7ZwtIbZ9FNr1cbTrspbjrHaosrtAHdoiOkjplGzdzyT7aeLDymkfrJMWglGUSvdALRyfo2t7AR40WsnYI8dHEDd7kKUikXT3f41HPUlXQWie3BIiiyN4NUxrCJlexUfTnguOuk3DOQ/s400/outlook.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;2. Or you can disable the encryption on the Exchange 2010 Client Access Server using the following cmdlet (not recommended):&lt;/p&gt;  &lt;p&gt;Set-RpcClientAccess –identity &amp;lt;ServerIdParameter&amp;gt; –EncryptionRequired $false&lt;/p&gt;  &lt;p&gt;Usually I would go with the first choice. It is more secure and there is no reason not to do it. If you need to configure a large number of computers you can always use Group Policy. You can find more info about GPO templates for Office 2003 here:   &lt;br /&gt;&lt;a href="http://office.microsoft.com/en-gb/help/HA011402401033.aspx"&gt;http://office.microsoft.com/en-gb/help/HA011402401033.aspx&lt;/a&gt;&lt;/p&gt;  </description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEy7ZwtIbZ9FNr1cbTrspbjrHaosrtAHdoiOkjplGzdzyT7aeLDymkfrJMWglGUSvdALRyfo2t7AR40WsnYI8dHEDd7kKUikXT3f41HPUlXQWie3BIiiyN4NUxrCJlexUfTnguOuk3DOQ/s72-c/outlook.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>#550 5.1.1 RESOLVER.ADR.ExRecipNotFound; not found ## when recreating an email account</title><link>http://it-experts.blogspot.com/2011/03/550-511-resolveradrexrecipnotfound-not.html</link><category>Event</category><category>Exchange 2010</category><category>Exhange 2007</category><category>Solutii</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Tue, 8 Mar 2011 09:39:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-464722351458363057</guid><description>&lt;p&gt;Articol scris de&amp;#160; &lt;a href="http://paulroman.pras.ro/"&gt;Paul Roman&lt;/a&gt; (MVP for MS Exchange)&lt;/p&gt;  &lt;p&gt;A week ago, one of our customers had a corrupt email account . Now they are using MS Exchange 2010, but they migrated to this solution a couple of months ago from MS Exchange 2003.    &lt;br /&gt;To fix the corrupted mailbox issue, we recommended them to export the valid emails, to delete the corrupted account, to recreate it and to import all the saved emails. Everything work as expected but soon some of their employees started to receive non delivery reports when trying to communicate with that person.     &lt;br /&gt;The reports look like:     &lt;br /&gt;The e-mail address you entered couldn't be found. Please check the recipient's e-mail address and try to resend the message. If the problem continues, please contact your helpdesk.     &lt;br /&gt;Diagnostic information for administrators:     &lt;br /&gt;Generating server: SERVER.contoso.com     &lt;br /&gt;IMCEAEX-_O=CONTOSO_OU=First+20Administrative+20Group_cn=Recipients_cn=mihaeladumitrache@contoso.com     &lt;br /&gt;#550 5.1.1 RESOLVER.ADR.ExRecipNotFound; not found ##     &lt;br /&gt;This is an issue that I’ve seen before. The obvious reason for this is the fact that outlook client caches the emails recipients and when you try to send an email to such a recipient, the email client uses the cached LegacyExchangeDN instead the one from the Organization GAL.     &lt;br /&gt;Since it was a migrated account from Exchange 2003 to Exchange 2010, the old LegacyExchangeDN attribute was different from the one generated for the new account.     &lt;br /&gt;The new one looks like: /o=Contoso/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=username and the old one looks like: /o=Contoso/ou=first administrative group/cn=recipients/cn=username     &lt;br /&gt;A friend of mine (Brad Simionescu) that is working for that client came with an interesting idea:     &lt;br /&gt;- Remove the old disconnected mailbox     &lt;br /&gt;- Force the domain replication     &lt;br /&gt;- Using ADSI editor, replace the new LegacyExchangeDN with the old one     &lt;br /&gt;- Force the domain replication again     &lt;br /&gt;- Rebuild the Exchange address books     &lt;br /&gt;If somebody already downloaded the address book with the new LegacyExchangeDN, you have to follow http://support.microsoft.com/kb/287623 article to delete the new cached info and to download again the address book.&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>How to configure Form Based Authentication in the same time for internal accessing the Exchange server directly and external users accessing the server via Forefront TMG</title><link>http://it-experts.blogspot.com/2011/02/how-to-configure-form-based.html</link><category>Exchange 2010</category><category>IIS</category><category>PowerShell</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Thu, 10 Feb 2011 11:04:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-268890366586740233</guid><description>Articol scris de&amp;nbsp; &lt;a href="http://paulroman.pras.ro/" target="_blank"&gt;Paul Roman&lt;/a&gt; (MVP for MS Exchange)&lt;br /&gt;
&lt;br /&gt;
I answered a question today regarding the fact that when you publish an Exchange server via Forefront TMG and you want to have Form Based Authentication (FBA) for the external users, you have to disable it for the internal users.    &lt;br /&gt;
Publishing OWA within TMG with FBA requires you to enable Basic Authentication for the owa (Default Web Site) virtual directory in Exchange and disable FBA .     &lt;br /&gt;
If you don’t do that, when authenticating from outside your network you will be required to authenticate twice, once on TMG and another time on the Exchange Server.     &lt;br /&gt;
In order to have Form Based Authentication in the same time for your internal and external users you have to create a new web site on the Exchange Server and create a new OWA virtual directory there.     &lt;br /&gt;
The steps are:     &lt;br /&gt;
1. Create a new Web site within your IIS management interface&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYhk100k3dnAKF54_llaPK02CHPFq19ca4g8LpYsthys_jTt89NdDdpnZpcCwQnzprncQCIyd1fumYFi2qQW9RhOF41hzuS-uI-rQxpMhjIho5p_9sTrs6-soKW1Jf-IRRGZOTUWcHbo0/s1600/Blog1.jpg"&gt;&lt;img border="0" height="250" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYhk100k3dnAKF54_llaPK02CHPFq19ca4g8LpYsthys_jTt89NdDdpnZpcCwQnzprncQCIyd1fumYFi2qQW9RhOF41hzuS-uI-rQxpMhjIho5p_9sTrs6-soKW1Jf-IRRGZOTUWcHbo0/s400/Blog1.jpg" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;
2. Configure the new web site considering the followings: &lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
- The IP address and port combination should be unique     &lt;br /&gt;
- Create a folder for the Physical path and assign to the Local Service and the Network service read rights for that location     &lt;br /&gt;
- Remember the site name because you will need it later&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxP7cKxqCqqyei1lbUDOsJTekGnGx6VvM-zF3muGVLx7hDNHKwVW3Jqj6EDkjBDOH26thZNb9SRa2RXysh5GOrDYuB5y06eGS81bqZomhDe4nCNDYvbliuBFYOXuUXhA6ijNj5Lbh4MZg/s1600/Blog2.jpg"&gt;&lt;img border="0" height="314" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxP7cKxqCqqyei1lbUDOsJTekGnGx6VvM-zF3muGVLx7hDNHKwVW3Jqj6EDkjBDOH26thZNb9SRa2RXysh5GOrDYuB5y06eGS81bqZomhDe4nCNDYvbliuBFYOXuUXhA6ijNj5Lbh4MZg/s320/Blog2.jpg" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
3. Verify that the new web site was created and it’s running&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgV7QPHEm3qhR9FukOrSEL8VWnscN9zZzf7KIlWogZCkxKhyphenhypheniHySGXyUnHIru5M3bpzlFlzw24ZcOUkHAc3K4Hz1gjmogstcHAVRixGbhGRNj1nlDx9F8nMkdTyM7Jot4ArJZwxRxg15dE/s1600/Blog3.jpg"&gt;&lt;img border="0" height="237" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgV7QPHEm3qhR9FukOrSEL8VWnscN9zZzf7KIlWogZCkxKhyphenhypheniHySGXyUnHIru5M3bpzlFlzw24ZcOUkHAc3K4Hz1gjmogstcHAVRixGbhGRNj1nlDx9F8nMkdTyM7Jot4ArJZwxRxg15dE/s400/Blog3.jpg" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;
4. In Exchange Powershell console run the command New-OwaVirtualDirectory -WebSiteName "Internal OWA"&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKQJSFz5YOFkLpCyEHA7OFwoby21mYbCZ2xw7WYwnSzPgbBFLWtcyPfEcNNTdTS6lr3Clep9kTT3M5pXgOGm7EeDK6fm2OW8Ji2Ljd_fVCIyfAZXV2SxfZTvRCon1Y7KS73x25DiBruMs/s1600/Blog4.jpg"&gt;&lt;img border="0" height="113" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKQJSFz5YOFkLpCyEHA7OFwoby21mYbCZ2xw7WYwnSzPgbBFLWtcyPfEcNNTdTS6lr3Clep9kTT3M5pXgOGm7EeDK6fm2OW8Ji2Ljd_fVCIyfAZXV2SxfZTvRCon1Y7KS73x25DiBruMs/s320/Blog4.jpg" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
5. Create the corresponding ECP virtual directory by running the command New-ECPVirtualDirectory -WebSiteName "Internal OWA"&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx0Kw5FAbFAdfBO621Y6YnEDEj0hFyOINMWpnOpV2YvDrzU_nhsxg1zqdfD-tlDzM4CAnplxqoJasAEINdaAFpvFjp0umaIr82F68UtEIr5dpsUajfhI1QJIwM3OKi_bZp50V7K4FLcH8/s1600/Blog5.jpg"&gt;&lt;img border="0" height="113" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx0Kw5FAbFAdfBO621Y6YnEDEj0hFyOINMWpnOpV2YvDrzU_nhsxg1zqdfD-tlDzM4CAnplxqoJasAEINdaAFpvFjp0umaIr82F68UtEIr5dpsUajfhI1QJIwM3OKi_bZp50V7K4FLcH8/s320/Blog5.jpg" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
6. Configure the newly created OWA and ECP virtual directory for FBA authentication using the following cmdlets:    &lt;br /&gt;
- set-OwaVirtualDirectory -Identity "owa (Internal OWA)" -FormsAuthentication $true     &lt;br /&gt;
- set-ECPVirtualDirectory -Identity "ecp (Internal OWA)" -FormsAuthentication $true     &lt;br /&gt;
7. Restart the IIS by running in elevated command promt the command iisreset /noforce     &lt;br /&gt;
8. Instruct the internal users to access the newly created virtual directory</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYhk100k3dnAKF54_llaPK02CHPFq19ca4g8LpYsthys_jTt89NdDdpnZpcCwQnzprncQCIyd1fumYFi2qQW9RhOF41hzuS-uI-rQxpMhjIho5p_9sTrs6-soKW1Jf-IRRGZOTUWcHbo0/s72-c/Blog1.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Windows PowerShell Graphical Environment pe Windows Server 2008 R2</title><link>http://it-experts.blogspot.com/2011/01/windows-powershell-graphical.html</link><category>PowerShell</category><category>Windows Server 2008</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Mon, 31 Jan 2011 14:34:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-722562431251545004</guid><description>PowerShell ISE (Integrated Scripting Environment), vechiul Graphical PowerShell, este o alternativa grafica la cunoscutul Command Prompt . &lt;br /&gt;
PowerShell ISE face parte din PowerShell 2.0 care e deja integrat&amp;nbsp; in Windows 7 si Windows Server 2008 R2.&lt;br /&gt;
Principalul avantaj al lui PowerShell ISE este acela ca poti lucra cu 2 paneluri : unul pentru tastarea comenzilor si unul pentru afisarea outputului. Aditional putem adauga un al treilea panel pentru editarea scripturilor (se poate da disable ca sa avem mai mult spatiu).&lt;br /&gt;
&lt;img alt="image" src="http://kolliparachandra.files.wordpress.com/2010/10/image_thumb119.png?w=466&amp;amp;h=331" /&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
Consola Windows PowerShell e instalata default pe Windows Server 2008 R2. PowerShell ISE nu e instalat default.    &lt;br /&gt;
Pasi pentru instalarea PowerShell ISE :     &lt;br /&gt;
&lt;strong&gt;1. &lt;/strong&gt;Click &lt;strong&gt;Server Manager&lt;/strong&gt; de pe toolbarul Quick Launch . Daca nu aveti Quick Launch ,dati&amp;nbsp; click &lt;strong&gt;Start&lt;/strong&gt;,mergeti la&amp;nbsp; &lt;strong&gt;Administrative Tools&lt;/strong&gt;, si apoi&amp;nbsp; click &lt;strong&gt;Server Manager&lt;/strong&gt;.     &lt;br /&gt;
&lt;strong&gt;2. &lt;/strong&gt;In Server Manager, selectati &lt;strong&gt;Features&lt;/strong&gt; , si apoi click &lt;strong&gt;Add Features&lt;/strong&gt;.     &lt;br /&gt;
&lt;strong&gt;3. &lt;/strong&gt;In fereastra &lt;strong&gt;Windows Features&lt;/strong&gt; selectati &lt;strong&gt;Windows PowerShell Integrated Scripting Environment (ISE).&lt;/strong&gt;&lt;br /&gt;
&lt;img height="385" src="https://box416.bluehost.com/~sharepo9/wp-content/uploads/2010/02/ise.png" width="549" /&gt;&lt;strong&gt;      &lt;br /&gt;
4. &lt;/strong&gt;Click &lt;strong&gt;Next&lt;/strong&gt;, si apoi click &lt;strong&gt;Install&lt;/strong&gt;.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Exchange 2010 - numarul de useri pe databse</title><link>http://it-experts.blogspot.com/2011/01/exchange-2010-numarul-de-useri-pe.html</link><category>Exchange 2010</category><category>PowerShell</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Tue, 25 Jan 2011 21:53:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-1530220318451697975</guid><description>&lt;div class="WordSection1"&gt;&lt;div class="MsoNormal"&gt;Am avut nevoie de un mic script sa vad citi useri contine un database…&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;L-am pus si aici(captureaza si database name).&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;$useri_c=Get-MailboxDatabase&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;($useri_c | %{write-host $_.name (get-mailbox -database $_.name).count})&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Cum salvezi in EventViewer toate comenziile executate in Exchange Management shell (EMS)</title><link>http://it-experts.blogspot.com/2011/01/cum-salvezi-in-eventviewer-toate.html</link><category>Exhange 2007</category><category>Power Shell</category><category>Scripting</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 19 Jan 2011 10:59:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-2345648641941705777</guid><description>&lt;p&gt;Daca doriti sa salvati in EventViewer toate comenziile executate in Exchange 2007 management shell , folositi urmatoarea cheia de registrii de mai jos .Ca si rezultat, toate comenziile executate in Exchange Shell vor fii salvate in eventviewer si va puteti intoarce la ele oricind. Astfel putem tine o istorie a schimbarilor facute zilnic.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;set-itemproperty HKLM:\SOFTWARE\Microsoft\PowerShell\1\PowerShellSnapIns\Microsoft.Exchange.Management.PowerShell.Admin –Name &lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;LogpipelineExecutionDetails -value 1&lt;/em&gt;&lt;/p&gt;  </description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Cannot start Microsoft office outlook. Cannot open the outlook window</title><link>http://it-experts.blogspot.com/2011/01/cannot-start-microsoft-office-outlook.html</link><category>Outlook</category><category>Solutii</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 12 Jan 2011 10:14:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-117565180192213340</guid><description>Daca primiti eroarea “Cannot start Microsoft office outlook. Cannot open the outlook window” faceti urmatorii pasi:&lt;br /&gt;
Start-&amp;gt;run..si executati -&amp;gt; “Outlook.exe /resetnavpane”</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>enable ping / icmp in windows 7 din command prompt</title><link>http://it-experts.blogspot.com/2011/01/enable-ping-icmp-in-windows-7-din.html</link><category>Firewall</category><category>Windows 7</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Mon, 10 Jan 2011 10:09:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-8982943061284414838</guid><description>Windows 7. Cea mai simpla metoda pentru a da permite cererile icmp/ping este sa deschizi o fereastra de command prompt cu privilegii de&amp;nbsp; administrator,(right click in accesories si select run as administrator &lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;in Command Prompt)&lt;br /&gt;
Aici rulati comanda C:\Windows\system32&amp;gt;&lt;strong&gt;netsh advfirewall firewall add rule name=”icmp” protocol=icmpv4:any,any dir=in action=allow&lt;/strong&gt;&lt;br /&gt;
Asta e tot</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Cum dai enable ping / icmp in windows 7 fara sa faci disable la  firewall (modul grafic)</title><link>http://it-experts.blogspot.com/2011/01/cum-dai-enable-ping-icmp-in-windows-7.html</link><category>Firewall</category><category>Windows 7</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Thu, 6 Jan 2011 10:01:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-991958461249731985</guid><description>Pentru a permite cererile icmp catre computerul dvs. , fara sa dati disable la&amp;nbsp;&amp;nbsp; firewall ,trebuie sa adaugam o regula la firewall ca mai jos:&lt;br /&gt;
1. Mergeti la&amp;nbsp; &lt;strong&gt;Control Panel&lt;/strong&gt; -&amp;gt; &lt;strong&gt;System and Security&lt;/strong&gt; -&amp;gt;&lt;strong&gt; Windows Firewall&lt;/strong&gt; si click &lt;strong&gt;Advanced Settings&lt;/strong&gt;.&lt;br /&gt;
2. Se deschide o fereastra &lt;strong&gt;Windows Firewall&lt;/strong&gt; with &lt;strong&gt;Advanced Security&lt;/strong&gt; (ca in screenshot).&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/windows_firewall_with_advanced_security3.png"&gt;&lt;img alt="" height="286" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/windows_firewall_with_advanced_security3.png" title="windows_firewall_with_advanced_security" width="484" /&gt;&lt;/a&gt;&lt;br /&gt;
3. Right click pe “&lt;strong&gt;Inbound Rules&lt;/strong&gt;” in partea stinga si&amp;nbsp; click “&lt;strong&gt;New Rule&lt;/strong&gt;”.&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/windows_firewall_new_inbound_rule1.png"&gt;&lt;img alt="windows_firewall_new_inbound_rule" height="342" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/windows_firewall_new_inbound_rule1.png" title="windows_firewall_new_inbound_rule" width="496" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
4. In urmatoarea fereastra selectati&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt; “&lt;strong&gt;Custom rule&lt;/strong&gt;” si click &lt;strong&gt;Next&lt;/strong&gt;.&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/custom_rule1.png"&gt;&lt;img alt="custom_rule" height="287" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/custom_rule1.png" title="custom_rule" width="517" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
5. In the next window select “&lt;strong&gt;All programs&lt;/strong&gt;” and click &lt;strong&gt;Next&lt;/strong&gt;.&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/all_programs1.png"&gt;&lt;img alt="" height="290" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/all_programs1.png" title="all_programs" width="543" /&gt;&lt;/a&gt;&lt;br /&gt;
6. In urmatoarea fereastra selectati &lt;strong&gt;Protocol Type -&amp;gt; ICMPv4&lt;/strong&gt; cum arata mai jos si click &lt;strong&gt;Next&lt;/strong&gt;:&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/icmp1.png"&gt;&lt;img alt="" height="354" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/icmp1.png" title="icmp" width="555" /&gt;&lt;/a&gt;&lt;br /&gt;
7. In urmatoarea fereastra click &lt;strong&gt;Next&lt;/strong&gt; ca in fereastra de mai jos:&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/any_ip_address1.png"&gt;&lt;img alt="" height="347" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/any_ip_address1.png" title="any_ip_address" width="572" /&gt;&lt;/a&gt;&lt;br /&gt;
8.&amp;nbsp; In urmatoarea fereastra click &lt;strong&gt;Next&lt;/strong&gt; si selectati“&lt;strong&gt;Allow the connection&lt;/strong&gt;” :&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/allow_the_connection.png"&gt;&lt;img alt="" height="255" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/allow_the_connection.png" title="allow_the_connection" width="494" /&gt;&lt;/a&gt;&lt;br /&gt;
9. In urmatorul pas lasati bifate(&lt;strong&gt;Domain, Private, Public&lt;/strong&gt;) si click &lt;strong&gt;Next&lt;/strong&gt;:&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/domain_private_public.png"&gt;&lt;img alt="" height="242" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/domain_private_public.png" title="domain_private_public" width="568" /&gt;&lt;/a&gt;&lt;br /&gt;
10. La final dati un nume noii reguli , spre exemplu icmp permit:&lt;br /&gt;
&lt;a href="http://www.usermadetutorials.com/wp-content/uploads/2010/08/rule_name.png"&gt;&lt;img alt="" height="242" src="http://www.usermadetutorials.com/wp-content/uploads/2010/08/rule_name.png" title="rule_name" width="508" /&gt;&lt;/a&gt;&lt;br /&gt;
Asta e tot, regula se va aplica imediat si va aparea in inbound rules. Computerul dvs. va raspunde cererilor ICMP fara a opri sau a da disable la windows firewall.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Windows 8 – posibil noul sistem de operare de la Microsoft</title><link>http://it-experts.blogspot.com/2011/01/windows-8-posibil-noul-sistem-de.html</link><category>News</category><category>Windows 8</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Wed, 5 Jan 2011 14:37:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-1661693381473447355</guid><description>&lt;strong&gt;Windows 8&lt;/strong&gt;. Acesta este numele neoficial al noului sistem de operare de la Microsoft. Nu se stie sigur daca Microsoft va folosi acest nume.Probabil ca da, avand in vedere review-urile foarte bune pe care le primeste Windows 7,si ca toata lumea deja vorbeste de Windows 8 cind se refera&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;la urmatoarea versiune de Windows.&lt;br /&gt;
Zvonurile au fost foarte “sustinute” in ultimele saptamini. &lt;br /&gt;
Un posibil zvon este acela ca zilele astea Steve Ballmer va prezenta niste imagini si informatii suplimentare referitoare la noua versiune de Windows..Tot la nivel de zvon a ramas si faptul ca noua versiune de Windows va oferi support pentru procesoarele ARM.&lt;br /&gt;
Ramane de vazut care va fi noua versiune de Windows si daca va veni cu noi caracteristici astfel incat sa convinga utilizatorii sa faca upgrade.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>SharePoint 2007 Backup</title><link>http://it-experts.blogspot.com/2010/12/sharepoint-2007-backup.html</link><category>Backup</category><category>SharePoint 2007</category><author>noreply@blogger.com (Hardcoded)</author><pubDate>Sat, 4 Dec 2010 23:45:00 +0200</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-841028681541747298.post-5804357573343982119</guid><description>&lt;div class="WordSection1"&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 21px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Indiferent daca aveti unul sau mai multe servere cu roluri diferite, diverse baze de date SQL,customizari pe IIS , web part-uri etc.. trebuie sa mentinem citeva back-upuri.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Microsoft Office SharePoint Server 2007 ofera citeva tools-uri de back-up si &amp;nbsp;recovery (central admin, stsadm, recycle bin) .&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;b&gt;Central Administration site&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Cu acest instrument, un back-up &amp;nbsp;poate fi &amp;nbsp;efectuat la diferite niveluri, cel mai inalt nivel fiind asa numitul SharePoint farm şi nivelul cel mai de jos poate fi tot datebase-ul. Ar trebui remarcat faptul că acest instrument nu ofera o granularitate ridicata &amp;nbsp;şi nu oferă acoperire la &amp;nbsp;nive de site, subsite, sau la nivel de element.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Indicat e sa avem cit mai multe copii de siguranta pentru ca la restaurare daca back-upul e corupt…nu vom putea face restore.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;De asemenea, un alt neajuns e ca &lt;/span&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;nu ofera optiuni de schedule back-up si adminul va trebui sa il porneasca manual sau sa &amp;nbsp;scrie diverse scripturi pentru programarea back-upului&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp;O altă opţiune pentru utilizatorii avansaţi este din linia de comanda folosind &lt;b&gt;stsadm&lt;/b&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;La fel ca back-upul din Central Administration, acest tip de back-up are limitarile lui.Stim cu totii ca, executia diverselor task-uri din linie de comanda e oarecum greoaie. &amp;nbsp;În timp ce acestea sunt utile în vederea îndeplinirii sarcinilor curente &amp;nbsp;de administrator ele nu oferă o adevărata soluţie de backup. O restaurare a bazei de date cu config-urile &amp;nbsp;de SP2007 (care contine multe setari ale farm-ului si multe alte setari din config ) nu se poate realiza cu stsadm si va treabui sa cautam unele solutii bazate pe VSS.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;-&lt;b&gt;Recycle bin&lt;/b&gt; &amp;nbsp;- e bun pentru restaurari individuale de item-uri dar nu ofera multe solutii cind e vorba de optiuni de restaurare.Recycle bin &amp;nbsp; este bun si face o treabă buna cind e vorba de un singur document,item. Daca e sa vorbim de optiuni,Recycle Bin nu are.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Dacă un utilizator şterge un document library, si numai un singur document trebuie să fie restaurat, trebuie restaurat intreg document library-ul. O alta problemă, şi poate si motivul pentru care Recycle Bin &amp;nbsp;nu este considerată o soluţie de back-up &amp;nbsp;buna, este că , captureaza doar item-urile sterse. Erori, date corupte pot aparea. Aceste probleme pot aparea la nivel de farm sau la un singur item…si acestea nu pot fi recuperate folosind Recycle Bin.&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Voi ce solutii folositi ?&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in; margin-left: 0in; margin-right: 0in; margin-top: 0in; vertical-align: baseline;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>