Applies to: Exchange Server 2010
Here a list of Hardware and Software Load Balancers tested and confirmed to work with Exchange 2010.
Applies to: Exchange Server
Need to find out what the latest servicepack or update rollup is for Exchange Server?
Check out this link: http://social.technet.microsoft.com/wiki/contents/articles/exchange-server-and-update-rollups-builds-numbers.aspx
You’ll love it!
Microsoft is launching it’s new Unified Communications Solution on Nov. 17:
Microsoft Lync 2010!
http://www.microsoft.com/en-us/lync/default.aspx
Lync is Microsoft’s new solution uniting voice, IM, audio-, video- and web-conferencing into a richer, more simplified experience.
Try a fully functional version of Lync Server 2010 RC in your own environment: http://www.microsoft.com/en-us/lync/try-it_lync.aspx
Applies to: Microsoft PowerShell
Here a simple but effective command to retrieve a list of all files in a directory tree containing a specific text in the file name.
dir c:users -r -i “*yourtext*”
There is a way to use Powershell to search the contents of a file. This method will not use the Windows index so it will be slow, but it does work.
get-childitem c:users -filter *.txt -recurse | select-string -list -pattern “yourtext” | foreach {$_.Path}
Applies to: PHP, Apache
Let’s imagine your apache webhost has both PHP4 and PHP5 installed, and the default mapping for .php files is linked to PHP4. Now the question is, how do you change that mapping to get PHP5 linked to .php files? (assuming you don’t have administrative priviledges on the webhost)
Workaround: You may choose to simply name your php files with the .php5 file extension if there are only a few scripts that require PHP5 (not really the answer to our problem).
Solution: If you don’t want to rename all your scripts to .php5, create a .htaccess file (or edit the existing .htaccess file, if you already have one). You can create this file using a text editor such as Notepad, WordPad, vi, nano, etc. and place the following line in the text file:
AddType x-mapp-php5 .php
Save the text file as .htaccess in the folder where you need to use PHP5 (or upload the file to the correct folder). The settings specified in the .htaccess file are recursive meaning that the settings will apply to the current folder where the file is saved as well as all subfolders.
Have fun!
Applies to: Windows
DNS search results are cached on local systems to prevent a lookup every time the search is required. Sometimes during troubleshooting it is helpful to see the contents of the DNS client cache. This recipe describes the process of viewing the Windows DNS cache.
To view the DNS cache on the local system, type the following command from a command prompt:
ipconfig /displaydns | more
The | more is optional and will pause the output after each screenful which may be helpful since the DNS cache can get large and the output format uses several lines per record.
A sample output from this command is shown below. This is an address lookup for the host microsoft.com. The Record Name and A (Host) Record lines show the request and answer. The Time To Live field shows the number of seconds before this entry expires.
microsoft.com
—————————————-
Record Name . . . . . : microsoft.com
Record Type . . . . . : 1
Time To Live . . . . : 3597
Data Length . . . . . : 4
Section . . . . . . . : Answer
A (Host) Record . . . : 207.46.197.32
Applies to: Windows Mobile 6
Once Windows Live is configured on the device, it appears that it’s impossible to delete it.
Here’s how to do it:
Open Windows Live in Start – Programs on the device. In the Menu, select Account Options and select Switch Accounts. This will remove all emails from your device. When done, the EULA page will appear. On that screen, make sure you select REJECT. Windows Live setup will stop and you will be taken back to Windows Live main page. Check in Messaging and Windows Live mailbox is gone.
Recent Comments