Microsoft Office Windows Installer Problem
Written by Lockergnome on August 23rd, 2007 with no comments.
Read more articles on software.
You are currently browsing the articles from MS Windows Vista Compatible Software written on
Written by Lockergnome on August 23rd, 2007 with no comments.
Read more articles on software.
The Windows Vista Hardware Assessment is a tool released by Microsoft that will allow you to scan your network and determine what computers are ready to run Vista, and Office 2007.
Using WMI it creates a detailed inventory of each computer, and will provide recommendations for hardware upgrades.
The latest version can be downloaded from here
The nice part is that it does not require the deployment of agent software on the computers being inventoried and assessed.
The bad part is that it downloads and installs SQL Server 2005 (Express Edition). So I would take care in picking the machine you will install it on. Why? Because I have seen a few cases where one application that uses SQL Express clobbers another app that is also using it.

It can store information, and generate reports for up to 25,000 computers. To successfully complete inventory, you will need local admin rights, and make sure you enable the “Remote Administration” and “File and Printer Sharing” firewall exceptions on each computer.
It will take about 2 to 3 seconds for each system (Could be longer or shorter depending on your network speed). Once it has completed it will generate two detailed reports. One of them is in Excel, and the other is in Word.

After looking through the reports you will have a good idea of how many systems need to be upgraded before they are Vista ready.
It is a nice tool that I recommend using if you are thinking about upgrading your network to Windows Vista.
Written by Steve Wiseman on August 23rd, 2007 with no comments.
Read more articles on software.
Written by Joe on August 23rd, 2007 with no comments.
Read more articles on Manage and Record and Audio and stuff and News and software.
Microsoft Technet online concierge revealed in a support chat session, that in a month time Vista SP1 Beta will be available for Technet subscribers.
So it seems that the more public beta will start then, might be limited for Technet and MSDN only or as a public CTP. I guess we’ll see in a month.
News Source: bink.nu
Written by Odd-Magne Kristoffersen on August 23rd, 2007 with no comments.
Read more articles on Windows Vista.
Microsoft have made the latest build of Vista SP1 (6001.16633) available as a standalone update file to testers.
Written by Odd-Magne Kristoffersen on August 23rd, 2007 with 1 comment.
Read more articles on Windows Vista.
The following example opens a URL every 5 minutes, tests the content, and measures the time it took to download the HTML for the page. Notice that all the HTML is dumped into a big fat string. The string is then searched for specific text that is known to be in the requested page. Note that this script runs forever and can be stopped with a Ctrl-C.
Example PowerShell script:
$webClient = new-object System.Net.WebClient
$webClient.Headers.Add(”user-agent”, “PowerShell Script”)
while (1 -eq 1) {
$output = “”
$startTime = get-date
$output = $webClient.DownloadString(”http://www.sysinternals.com/“)
$endTime = get-date
if ($output -like “*Mark Russinovich*”) {
“Success`t`t” + $startTime.DateTime + “`t`t” + ($endTime - $startTime).TotalSeconds + ” seconds”
} else {
“Fail`t`t” + $startTime.DateTime + “`t`t” + ($endTime - $startTime).TotalSeconds + ” seconds”
}
sleep(300)
}
Don’t have PowerShell? Get it here!
News Source: blogs.technet.com
Written by Odd-Magne Kristoffersen on August 23rd, 2007 with no comments.
Read more articles on PowerShell.