Your best source of information and news about microsoft, vista and BIOS on the internet

August 23rd, 2007

You are currently browsing the articles from MS Windows Vista Compatible Software written on August 23rd, 2007.

Microsoft Office Windows Installer Problem

http://live.pirillo.com - Poor Big John Midland. Every time he launches a Microsoft Office application the Windows Installer box comes up. Uninstalling and re-installing hasn’t helped the issue. Luckily, I have a very good idea what the problem is.   

Written by Lockergnome on August 23rd, 2007 with no comments.
Read more articles on software.

See if your computers are ready to run Vista, and Office 2007

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.

Windows Vista Hardware Assessment

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…

Click to continue reading "See if your computers are ready to run Vista, and Office 2007"

Written by Steve Wiseman on August 23rd, 2007 with no comments.
Read more articles on software.

ITsVISTA Web Links: August 23rd, 2007

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.

Windows Vista SP1 Beta Open Next Month?

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.

Windows Vista SP1 Build 6001.16633 Released

Microsoft have made the latest build of Vista SP1 (6001.16633) available as a standalone update file to testers.

Build: 6.0.6001.16633 (longhorn.070803-1655)
Filename: windows6.0-kb936330-x86.exe
Size: 684MB

Surprisingly, the update file is in the .exe format. Many (including myself) were expecting Microsoft to deliver the update for Vista SP1 in the the new Vista/Server 2008-only .msu format used for current Hotfixes.

News Source: www.winbeta.org

Written by Odd-Magne Kristoffersen on August 23rd, 2007 with 1 comment.
Read more articles on Windows Vista.

Web Site Monitoring with PowerShell

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.

« Older articles

No newer articles