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

March 25th, 2008

You are currently browsing the articles from MS Windows Vista Compatible Software written on March 25th, 2008.

Essential Windows Vista Sidebar Gadgets

There are lots of Gadgets out there with some nifty purpose but these gadgets are the tools I need during my wandering on various coffee shops looking for free Wi-Fi. These Gadgets are my life saver, My Essential Windows Vista Gadgets.

1. Wireless Network Meter Gadget

The Wireless Network Meter will show you SSID, signal quality, IP address, upload speed, download speed and whether your connection is secure or not secure. For More Info & Support: www.AddGadget.com

2. Battery Meter Gadget

Monitor the battery level of your laptop with this gadget. This gadget provides a much more accurate level reading than the tiny system tray icon. It tells me if I’m plugged in, charging and what percentage of battery power I have.

3. Multi-Meter (Dual-Core)

Info shown:- Cpu usage % ( 2 cores )- Ram Usage %- Ram info ( Total, used, left size)- Status bars animated above 90%- 100 Skins + background selection- Help and email support included- Shortcut options http://thehobbylounge.com

4. Uptime Gadget

This gadget allows you to see how much time has passed since you last restarted your computer.

5. Free Space Gadget

This gadget monitors your PC’s drives and shows you the available space for those you’ve selected.

Written by PC Freak on March 25th, 2008 with no comments.
Read more articles on otherSoftware and News and Reviews.

Clipboard Chaos!

Note: this content originally from http://mygreenpaste.blogspot.com. If you are reading it from some other site, please take the time to visit My Green Paste, Inc. Thank you.

OK, so perhaps chaos is a bit of a harsh word here. But the clipboard was recently driving me nuts! All I was trying to do was copy some text to it, and the operation was failing. Of course, as it was an ad hoc app, I didn't have any kind of error handling. The app worked just fine on one system, but running the app on another system (a virtual machine) consistently resulted in failure to copy the text to the clipboard.

Ultimately, I was able to determine what process was preventing my app from putting data in the clipboard, but I haven't yet found a decent workaround for when the problem happens. It's not critical for me, as the act of copying the text to the clipboard is more of a nicety than a requirement.

Anyway, using P/Invoke and System.Diagnostics, I found that vmusrvc.exe - the Virtual PC "Virtual Machine User Services" - had the clipboard open. Using the timestamps from Process Monitor's Profiling Events (generated at 100 ms intervals), and the timestamp of the failed operation from my app, I was able to determine the stack of vmusrvc.exe:

ntdll.dllKiFastSystemCallRet
vmusrvc.exevmusrvc.exe + 0x9a17
vmusrvc.exevmusrvc.exe + 0x9c24
vmusrvc.exevmusrvc.exe + 0x91f8
vmusrvc.exevmusrvc.exe + 0x907f
USER32.dllInternalCallWinProc + 0x28
USER32.dllUserCallWinProcCheckWow + 0x150
USER32.dllDispatchClientMessage + 0xa3
USER32.dll__fnDWORD + 0x24
ntdll.dllKiUserCallbackDispatcher + 0x13
vmusrvc.exevmusrvc.exe + 0x2d29
vmusrvc.exevmusrvc.exe + 0xdba6
kernel32.dllBaseProcessStart + 0x23

No parameters, of course, and symbol information for vmusrvc.exe does not appear to be available, but obviously user32.dll is processing some message. I may look into this more at a later point.

To find the process that was interfering with my clipboard work, I used P/Invoke to call GetOpenClipboardWindow() and then GetWindowThreadProcessId(), passing in the handle returned by GetOpenClipboardWindow(). Then, finding the process' executable name was just a matter of using the Modules collection of the Process instance returned by passing in the process id retrieved by GetWindowThreadProcessId() to System.Diagnostics.Process.GetProcessById().

The following code:

using System.Runtime.InteropServices;
using System.Diagnostics;
...
string data = "aasdlkjasdlk alkjsdl kajsdlkj al";
try
{
Clipboard.SetData( System.Windows.Forms.DataFormats.Text, data );
}
catch( ExternalException ee )
{
LogIt( ee.ToString() );
IntPtr hWnd = GetOpenClipboardWindow();
if( IntPtr.Zero != hWnd )
{
uint pid = 0;
uint tid = GetWindowThreadProcessId( hWnd, out pid );
LogIt( "Process with hWnd {0}, PID {1} ({1:x}), TID {2} ({2:x}), " +
"name {3} has the clipboard", hWnd, pid, tid,
Process.GetProcessById( (int)pid ).Modules[0].FileName );
}
}

Resulted in the following output:


2008-03-25 00:54:45.4938864--> System.Runtime.InteropServices.ExternalException: Requested Clipboard operation did not succeed.
at System.Windows.Forms.Clipboard.ThrowIfFailed(Int32 hr)
at System.Windows.Forms.Clipboard.SetDataObject(Object data, Boolean copy, Int32 retryTimes, Int32 retryDelay)
at System.Windows.Forms.Clipboard.SetData(String format, Object data)
at Clippy.Form1.button1_Click(Object sender, EventArgs e)
2008-03-25 00:54:45.5339440--> Process with hWnd 65716 (65716), PID 1492 (5d4), TID 1496 (5d8), name C:\Program Files\Virtual Machine Additions\vmusrvc.exe has the clipboard

Interestingly, trying an alternative method of the Clipboard to set the content also failed. The Clipboard.SetDataObject() overload that takes a retryTimes and retryDelay parameter failed in the same fashion after roughly ten seconds when invoked as follows:


Clipboard.SetDataObject( data, false, 100, 100 );

I tried variations on retryTimes and retryDelay, to no avail.

Not sure what vmusrvc.exe is doing with the clipboard (probably has to do with monitoring it for host / guest VM interaction), but the act of setting the contents of the clipboard didn't fail 100% of the time in the VM. Often enough to make it extremely unreliable, though. During "normal" system usage, I was not able to cause a failure when running the app on a non-virtual (actual?) system.

Written by «/\/\Ø|ö±ò\/»®© on March 25th, 2008 with no comments.
Read more articles on P/Invoke and GetOpenClipboardWindow and System.Diagnostics and Clipboard and GetWindowThreadProcessId and Process Monitor and c# and processes and Virtual Machine and otherSoftware and Virtual PC.

Remote Server Administration Tools Available!

You can now download the RSAT toolkit for Windows Vista - go get the package right HERE (32-bit) or HERE (64-bit)...

Time to get Group Policy Preferences and all those other goodies up and running - cool stuff!

 

.

Written by Jakob H. Heidelberg on March 25th, 2008 with no comments.
Read more articles on RSAT and otherSoftware and group policy preferences and gp preferences.

Remote Server Administration Tools (RSAT) Now Available for Windows Vista SP1

Many of you have asked us when the Remote Server Administration Tools (RSAT) would be available for download now that Windows Vista SP1 has been released. As of today, you can!

RSAT is an excellent set of tools for IT Pros wanting to manage their Windows Server environment right from their desktop. RSAT also includes an updated Group Policy Management Console (GPMC), which was previously removed in Windows Vista SP1.

Download: Remote Server Administration Tools (x86)
Download: Remote Server Administration Tools (x64)

RSAT is an updated version of what is called ADMINPAK.MSI and can be used by IT Pros to manage computers running Windows Server 2008. Because many of these tools also work for managing computers running Windows Server 2003, it is essentially "the next version" of ADMINPAK.MSI.

The following are a list of the tools you will find in RSAT:

Role Administration Tools:

  • Active Directory Certificate Services Tools
  • Active Directory Domain Services (AD DS) Tools
  • Active Directory Lightweight Directory Services (AD LDS) Tools
  • DHCP Server Tools
  • DNS Server Tools
  • File Services Tools
  • Network Policy and Access Services Tools
  • Terminal Services Tools
  • Universal Description, Discovery, and Integration (UDDI) Services Tools

Feature Administration Tools:

  • BitLocker Drive Encryption Tools
  • Failover Clustering Tools
  • Group Policy Management Tools
  • Network Load Balancing Tools
  • SMTP Server Tools
  • Storage Manager for SANs Tools
  • Windows System Resource Manager Tools

And these tools also fully supported managing Windows Server 2003 servers:

  • Active Directory Domain Services (AD DS) Tools
  • Active Directory Lightweight Directory Services (AD LDS) Tools
  • Active Directory Certification Authority Tools
  • DHCP Server Tools
  • DNS Server Tools
  • Terminal Services Tools
  • Universal Description, Discovery, and Integration (UDDI) Services Tools
  • Group Policy Management Tools
  • Network Load Balancing Tools

Download RSAT today and start managing your servers!

Written by Nick White on March 25th, 2008 with no comments.
Read more articles on RSAT and Remote Server Administration Tools and otherSoftware and Group Policy and Windows Server 2008 and Featured News.

Windows Vista SP1 doesn`t work with popular chipset

Another problem that has come up with Vista SP1 is that it won't work with "a small number of device drivers." The list, however, includes drivers for an Intel chipset that's found in thousands of PCs and laptops.

The affected chipset is Intel's 945G Express series, which is used in computers from virtually all major system vendors. It's also found on standalone motherboards sold by Asus. The 945G Express chipset driver versions between numbers 7.14.10.1322 and 7.14.10.1403 won't work with Vista SP1, according to Microsoft.

Chipsets provide a connection point for all key subsystems within a PC.

The 945G Express chipset includes Intel's GMA 950 graphics core, which also won't work with Vista SP1 if those drivers are used.

Microsoft is urging Vista users to update all of their hardware to the latest drivers before even attempting to install SP1.

There are many problem connected with vista SP1 release..If you are interested in other problems then here is a List of Vista SP1 problems...Enjoy.. ;)

Via [Eetimes]

Written by ShaDow on March 25th, 2008 with no comments.
Read more articles on Windows Vista Updates (KB) and Vista News and otherSoftware and vista sp1 and Windows vista tips.

Microsoft will release much awaited XP SP3 Next Week

Now that Windows Vista service pack 1 has been released, all eyes have shifted to Microsoft’s plans for Windows XP service pack 3, the final package of updates for the trusty OS. And, according to at least one source, Microsoft will roll out XP SP3 next Monday. As of Wednesday afternoon Pacific time, the BitTorrent search engine Mininova listed a 568.73 MB Windows XP Professional SP3 5503 file available for download. The file, which had 112 seeds and 417 leeches, had been downloaded 2083 times since it was posted Tuesday, according to the listing.
According to the file description notes, Microsoft will release the final version of XP SP3 on March 24, but the 5503 test build passes all Windows Genuine Advantage checks and is able to download Windows updates that previous XP SP3 builds weren’t able to, which suggests that it could, in fact, be the final RTM build. When Microsoft released Vista SP1 in February, the final RTM code was identical to the Vista SP1 Release Candidate (RC) 1 Refresh 2 test build that was released to a group of 15,000 testers two weeks earlier.
A Microsoft spokesperson, perhaps weary from the months-long barrage of Vista SP1 related inquiries, said the final version of XP SP3 is still on target to be released the first half of calendar year 2008, and the XP SP3 5503 build was a minor interim build released to address one specific issue for a subset of private beta testers.

Via [crn]

Written by ShaDow on March 25th, 2008 with no comments.
Read more articles on otherSoftware and xp.

« Older articles

No newer articles