Your best source of information and news about Vista hardware, xp and microsoft on the internet

September 27th, 2008

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

Where are my Ultimate Extras and DreamScene Content Pack 4?

A couple days ago I saw post over at NeoWin.net informing users that new Ultimate Extras updates for Windows Vista Ultimate customers were released 'silently' through Windows Update. Unfortunately I was at work, and I wouldn't be back home until the weekend. But here I am, checking Windows Update and the only thing I see is a few optional updates for Windows. I am not sure if its only showing for US customers since my local is set to English (Jamaica).

tinker1

Tinker, new in Ultimate Extras

One of the the highlights of the new update is the inclusion of a new game called Tinker, the game revolves around a robot who has somehow lost his way in a confusing world and needs to find his way back home with the help of you of course. The last time a new game was included in Ultimate Extras was back in early 2007 when Microsoft released 'Texas Hold'Em Poker'.

WinUpdate

New Ultimate Extras, hello where are you?

Resources:

Microsoft releases new Ultimate Extras - Microsoft Tinker
Windows Vista Ultimate Extras
Ultimate PC
New Ultimate Extras: Microsoft Tinker and Dreamscene Content Pack 4

Technorati tags: , , , , , , ,

Written by Teching It Easy: Windows Vista & 7 on September 27th, 2008 with no comments.
Read more articles on otherSoftware and Windows Vista.

More Windows 7 screenshots

Windows 7 build continues to make its way across the web and more countries. The German Enthusiast web site Winfuture.de post a huge gallery of additional Windows 7 screenshots, based on the Enterprise SKU. The screenshots also confirm that Windows Media Player is now at version 12.

Check out the rest here

WMP12

Windows Media Player 12.0

WMM 12 ui

Interestingly, WMP 12 looks a lot like Internet Explorer 8, the light bluish color theme to the alignment of toolbar buttons. I love the focus on consistency that was somehow lost along the way in Vista.

Resources:

Windows 7 Preview Teching It Easy

Technorati tags: , , , ,

Written by Teching It Easy: Windows Vista & 7 on September 27th, 2008 with 2 comments.
Read more articles on otherSoftware and windows 7.

8 Useful Google Analytics Tips


When Google released Google Analytics, they allowed webmasters to use near-enterprise level analytics for free. However, there are a lot of things you need to tinker with in order to get some of the data you need from it.

  1. Tracking clicks on links. Every time you put a link to anything external or a download on a page, make sure you add onClick=”javascript: pageTracker._trackPageview(’/link/linkname’); “. Always know where your visitors went.
  2. Tracking user groups. If you’re sending people to a landing page, and you want to know where they go from there, segment them by using onLoad=”javascript:pageTracker._setVar(’Segment/Subgroup’);”. This will help you know what different groups are doing, and split-test user behaviour.
  3. Tracking full referred URLs. You’ll often get visits from forums or blogs that append their URLs. That’s not much use to you, so to make sure you know where people actually came from, set up a filter with the following settings:
    • Name: Full Referrers
    • Type: Custom filter - Advanced
    • Field A -> Extract A: Referral > (.*)
    • Field B -> Extract B: -
    • Output To -> Constructor: User-defined > $A$1
  4. Exclude internal visits. Add a new filter, with the “Exclude all traffic from an IP address” setting. Then add your own IP address, and repeat for any other IPs you don’t want to be included. Make sure you escape any full stops, with a forward slash, like this: 63\.212\.171\.
  5. Tracking across multiple domains/subdomains. If you’re running a very large site, or a site that spans multiple domains, you’ll need to be able to track visits across those sites. Fortunately, we have a way of doing that. Firstly, we set up the following filter:
    • Name: Full URI
    • Type: Custom filter - Advanced
    • Field A -> Extract A: Hostname > (.*)
    • Field B -> Extract B: Request URI > (.*)
    • Output To -> Constructor: Request URI > /$A1$B1

    Now you’ll see URLs in your content reports that look like this: www.example.com/index.html, help.example.com/more.html and so on. Next, we tweak the analytics code slightly, so it looks like this:

    <script type="text/javascript"><!var gaJsHost = (("https:" == document.location.protocol) ? "<a target="_blank" href="https://ssl" mce_href="https://ssl">https://ssl</a>." : "<a target="_blank" href="http://www." mce_href="http://www.">http://www.</a>");
    document.write(unescape("%3Cscript src=’" + gaJsHost + "<a target="_blank" href="http://google-analytics.com/ga.js" mce_href="http://google-analytics.com/ga.js">google-analytics.com/ga.js</a>’ type=’text/javascript’%3E%3C/script%3E"));
    // –></script>
    
    <script type="text/javascript"><!var pageTracker = _gat._getTracker("UA-xxxxx-x");
    <b>pageTracker._setDomainName("none");
    pageTracker._setAllowLinker(true);</b>
    pageTracker._trackPageview();
    // –></script>

    That will make the code work across all our (sub)domains. Finally, whenever you link from one domain to the other, make sure that you stick this piece of code into the link: onclick=”pageTracker._link(this.href); return false;”. Alternatively, if you’re using forms to jump between domains, use this code instead: onSubmit=”javascript:pageTracker._linkByPost(this)”.

  6. Tracking ecommerce transactions. Yes, Google Analytics has a full ecommerce module built in too. To turn it on, go to the account settings, and change the Ecommerce Website button from No to Yes. Now, on your receipt page, add the following code, with the fields below being filled from the order.
    <script type="text/javascript"><!var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    
    document.write(unescape("%3Cscript src=’" + gaJsHost + "google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E"));
    // –></script>
    
    <script type="text/javascript"><!var pageTracker = _gat._getTracker("UA-xxxxx-x");
    pageTracker._trackPageview();
    pageTracker._addTrans(
    "1234", // The ID for the whole transaction
    "Mountain View", // The affiliate name, if there is one. If not, put as your name
    "11.99", // Total transaction value
    "1.29", // Tax
    "5.99", // Shipping charges
    "San Jose", // City
    "California", // State
    "USA" // Country
    );
    
    pageTracker._addItem(
    "1234", // The ID for this single part of the order
    "DD44", // Product SKU
    "T-Shirt", // Product Name
    "Green Medium", // Category
    "11.99", // Price
    "1" // Quantity
    );
    
    pageTracker._trackTrans();
    // –></script>

    The last part (pageTracker._addItem( to the closing ); is repeated for each extra product or order in the transaction. And now you’ve got ecommerce tracking!

  7. Tracking exact keywords for AdWords. The problem with the keyword reports for your paid search campaigns, is that they only show the keyword that was triggered, not the exact keyword the person actually typed in. If you want to get that, you’re going to have to create the following two filters…
    • Name: PPC Keywords 1
    • Type: Custom filter - Advanced
    • Field A -> Extract A: Referral > (\?|&)(q|p)=([^&]*)
    • Field B -> Extract B: Campaign Medium > cpc|ppc
    • Output To -> Constructor: Custom Field 1 > $A3

    Field A Required, Field B Required and Override Output Field need to be set to Yes.

    • Name: PPC Keywords 2
    • Type: Custom filter - Advanced
    • Field A -> Extract A: Custom Field 1 > (.*)
    • Field B -> Extract B: Campaign Term > (.*)
    • Output To -> Constructor: Campaign Term > $B1,($A1)

    Again, Field A Required, Field B Required and Override Output Field need to be set to Yes.
    Now when you look in your reports, you’ll see the actual keyword the searchter typed in, in brackets next to the keyword that was triggered. Cool, huh?

  8. Making the site overlay tool useful. There’s a basic flaw in the way the site overlay works. Unfortunately, it groups all clicks on a URL togeter, so if you’ve got two links to the same URL, it’ll report the total data for both, rather than for each link individually. To get around this, leave the first link to the URL in question as it is, but add &location=x to the end of each additional link (where x isthe number of that link, so the first extra link would be 1, a second would be 2 and so on).
      

Written by Harry Waring on September 27th, 2008 with no comments.
Read more articles on 8 and analytics and Useful and otherSoftware and Tips and computers and google.

Windows 7 – Where is Windows Meeting Space?

I have been perusing thosestart-programs Windows 7 screenshots leaked to the web last week (build 6780) and one of the things I noticed missing from the ‘All Programs’ group is Windows Meeting Space, the ad hoc collaboration tool Microsoft introduced to make setting up meetings and make collaboration more simplified. A lot of persons have derided the software as useless and rarely used and I am wondering if Microsoft has been listening to its customers and decided to end development. I personally have never taken advantage of it except for testing or writing a review about it which you will find here.

Persons covering Windows Vista have also said some not so nice things about Windows Meeting Space, here’s a quote from Preston Galla over at Computer World:

Windows Meeting Center
Have you ever heard of this Vista feature? Likely not. And even if you have, you haven't used it. It's supposed to let you set up meetings over a network or the Internet either on an ad hoc or planned basis. But with no whiteboard, a worthless chat module, and no VoIP, who would ever use it? No one, of course. It's a waste of bits --- let it go.”

Then again, Microsoft could have just disabled the feature in Windows 7 or is planning more advanced features everyday users can take advantage of, since its more focused on groups in an organization today. I personally have some recommendations for it where social networking is concerned. The approach to getting everybody up and running now in Meeting Space is cumbersome, not seamless and dynamic enough. I wish it would just integrate with existing Microsoft technologies such as Windows Mail, Office Outlook and Live Messenger more flawlessly. Inviting somebody needs to be more convenient, a contact pane with quick access to my Address Book and Instant Messaging list so I can send a invite with a pre-ready message would have been nice.

6m

Windows Meeting Space on Vista

I think Microsoft should make Windows Meeting Space into a social networking tool that targets not just businesses, but consumers. It clearly needs to be revamped. Make it a way for users to extend their personal computing experience with family, friends and colleagues. For example, you aggregate, data from a number of online sources such as Twitter, Facebook, Windows Live Space, Pictures, Music, Videos, Flickr and Office files. Have common scenarios setup, home work, business projects, travel with sub categories and makes it full functionality available to all editions of Windows 7 with support for video conferencing. Right now, Windows Meeting Space is limited to the premium Windows Vista SKUs. Hopefully the Windows Team has some surprises in store, hey, maybe it has become one of those Live Apps you will have download.

Technorati tags: , , , , , , , , , , , ,

Written by Teching It Easy: Windows Vista & 7 on September 27th, 2008 with 5 comments.
Read more articles on otherSoftware and windows 7.

How use to use Windows Vista Ultimate Extras Sound Schemes in XP

Now if you interested in using the Windows Vista Ultimate Extras Sound Schemes for XP then all you need to do is follow the steps below..

1. Download Windows Vista Ultimate Extras Sound Schemes
Windows Sound Schemes for 32-bit (x86)
Windows Sound Schemes for 64-bit (x64)

 
2.Once it is downloaded, Extract the files through Winrar in a folder.

3.Now locate a file named "UltSound.inf" , right click on the file n click install. It will get installed in "C:\WINDOWS\Media\Schemes"

4. Now go to Control Panel > Sounds and Audio Devices > Sounds Tab and select watever new sound you want..
Source : {HACKS} Daily

Written by ShaDow on September 27th, 2008 with no comments.
Read more articles on otherSoftware and xp and Downloads and Ultimate Extras.

Vista In Use - Day One


Around the web a search for Vista alone will yield many an article about the terrible experiences people have had, how much better Windows XP is, and how it’s just junk.

It isn’t.

I’m saying this as ever, as a new user to the system, and as a Mac OS X and Linux user too. I’ll wager many of those proponents of the ‘Vista sucks’ message are either those who need/want to drive up visitor numbers/advertising revenue and those willing to read that message to confirm a half baked belief that will vindicate them as right. But this isn’t about what is right or wrong, just the facts. Just the facts Jack.

I purchased an Acer Aspire M1640 the other week as I had decided that I needed to have Vista to develop sidebar gadgets as part of my work. Also the Dell was getting somewhat long in the tooth. So I bought my first new PC ever. I bought it pre-built as it worked out cheaper, quite a lot cheaper. £279 bought a Core 2 Duo E4700 system (2.6GHz), 2GB RAM, 250GB HD, Vista Home Premium license, DVD+/-RW, etc. A good solid middle of the road base unit.

Vista 001 
The Vista desktop definitely isn’t lipstick on a pig!

I can only liken the situation with Windows Vista to that of when Windows 95 came along and replaced Windows 3.1/11 for Workgroups. For the first time in history 95 worked somewhat different to how Windows had up until that point (centered around the MS-DOS Executive/Program Manager) and suddenly that was out and a more Mac/Amiga alike desktop came along with the desktop being fundamentally very similar. Windows 95 also made the 386 history and it really did deserve a Pentium machine with 8MB of RAM — this was quite a big thing in 1995 when a 486 with 4MB was more common.

image 
Flip3D is a gimmick and Compiz has it roundly beat but it’s pretty.

Vista, particularly the Windows Explorer has changed quite dramatically from the Explorer that has evolved from 95 through to XP/2003; and some people are very resistant to change. I work on websites that have a few customers who sadly are not very forgiving of any change, even when it’s for the better.

The start menu goes a bit further than XP did and one thing that got me right away was the lack of the Run command by default. It’s easily added back but then you start using that instant search facility (much better in location/immediate use than Apple’s Spotlight but this in part related to the horrible Dock concept, IMHO.)

image
Searching for a file based on a meta-tag

You then realise not only can you tap in Word and enter to run Word, but us old school types who have found it easier to do Start + Run and tap in winword and enter will find that works as well.

Vista002 
Instant search also finds applications by filename, not just shortcut name!

It even takes parameters. So instant search is search as well as the run command combined.

The start menu also no longer folds out to reveal forever expanding menus that head to the right of the screen. It all works in place. Again takes time to get used to but it is better, but then I like the new KDE 4 Kicker menu! Some don’t.

image 

In terms of speed, so far no problems at all. It boots quicker (and I have loaded up most of what I need) and the applications open quicker. Word 2007 took an age for example (compared to 97-2003) on my P4 Dell with XP but on this it’s open in seconds. Certainly I have better hardware now, but even so, the oft mentioned bloat does not appear to be causing problems at all.

image 
Adding tags to files is a breeze

I will be continuing my observations but what certainly is clear is that particularly in the SP1 era, Vista is actually a great improvement over the slightly anaemic looking XP in comparison. It seems better thought out and has broken away from those conventions first established in Windows 95. This is a good thing.

image 
Windows Explorer gets a needed update for a world hooked on data and lots of it. It’s very nice and better than Mac OS X’s Finder.

I’ve never hated the Mac OS X interface but I have never adored or loved it, mostly because I cannot stand the Dock which is an awful way of managing windows but with Vista it felt very much like what I already knew but with good improvements. In many respects it has a lot of the things that I like about KDE 4.1 about it.

Tune in for more :)

      

Written by lilserenity on September 27th, 2008 with no comments.
Read more articles on windows 95 and change and Computing & Technology and core2duo and windows 3.1 and good and otherSoftware and mac os x and Linux and vista and FUD and PC and experiences and Acer and Windows.

« Older articles

No newer articles