Saturday, December 28, 2013

Chrome slow on android tablet? (tf700t)

http://www.agent20991.com/1/post/2013/09/chrome-for-android-slow-try-this.html

Seems to work for me.

Goo luck if you try it.

Thursday, December 19, 2013

PSKill.exe does support silent command

If you use PSKill.exe and you need to execute it silently

PSKill.exe Process.exe /accepteula

You can get PSkilBy Mark Russinovich from: 
http://technet.microsoft.com/en-au/sysinternals/bb896683.aspx

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, December 10, 2013

WSUS breaks after applying KB2720211

After applying this: http://support.microsoft.com/kb/2720211 our WSUS broke down.

http://social.technet.microsoft.com/Forums/windowsserver/en-US/e918a191-ef6d-4c4b-b83a-7a4ae20a5217/wsus-30-sp2-will-not-run-after-installing-update-2720211?forum=winserverwsus

If you come across this issue the above link may assist with fixing the issue.

"D/L offline 2720211 installer
change HKEY_LOCAL_MACHINE\Software\Microsoft\Update Services\Server\Setup\wYukonInstalled from 1 to 0 
install update again 
reboot 
change HKEY_LOCAL_MACHINE\Software\Microsoft\Update Services\Server\Setup\wYukonInstalled from 0 to 1 
reboot 
install update AGAIN"
If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, December 09, 2013

Systems Centre Endpoint Protection Exclusion Gotchas

http://blogs.technet.com/b/systemcenterpfe/archive/2012/11/29/system-center-2012-configuration-manager-antivirus-exclusions.aspx

Just be aware that if you use the inbuilt templates to configure SCEP exclusions the XML's assume that you have installed the products in their default locations.. I in our case we install most products elsewhere apart from the default installation directories.

It's easy enough to create a copy of the XML and use powershell or notepad's find and replace to update the XML to point to the correct locations.

If you find this article useful please leave me a comment or click on an ad to show your support.

Wednesday, December 04, 2013

Top Console User not reporting in SCCM

Recently came across an issue where Top Console User was not being uploaded to SCCM

Fix:
Be aware if you configure any Advanced Security Policies in GPO for clients this will stop any simple Security policies settings from applying  to clients. Use one or the other not both as they don't like to co-exist.

If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, November 25, 2013

Get list of collections that have dynamic update enabled


The following powershell code will connect to your SCCM, export all the collections, and then select only those that had dynamically add new resources checked, then export to a CSV file.

gwmi sms_collection -computer SERVER -namespace root\sms\site_XXX |% {[wmi] $_.__Path}|select-object CollectionID,Name,RefreshType|where {$_.refreshtype -eq 6}| Export-csv c:\temp\SCCMcollections.csv -NoTypeInformation

If you find this article useful please leave me a comment or click on an ad to show your support.

SSRS The attempt to connect to the report server failed



turns there was no closing tab in the web.config for  
I closed the section with
and then restarted SSRS and this fixed the issue.

If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, November 11, 2013

How to Disable and Move a list of computers in Active Directory

If you want to disable and move an object in powershell using the pipeline you can if the cmdlet you call supports the -Passthru property. This way you could make a single line powershell that would grab a list of objects, process those objects and then passthru the to the next pipeline.

get-content c:\temp\test.txt | % {Get-ADComputer $_ | Disable-ADaccount -PassThru | Move-ADObject -Targetpath "OU=xxx,,DC=DomainName,DC=COM"} 

If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, October 25, 2013

How to find out what version of SQL you are running.

Open SQL Management Studio
Create a new query
"select * @@version"
Execute.



If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, October 21, 2013

Poweshell Send-MailMessage, sending an e-mail in one line of code

In powershell 2.0 you would of had to write function to send an e-mail from powershell. Lucky for us in Powershell 3.0 it's

Poweshell 3.0 
Send-MailMessage -To $Mailto -From "XYZ@XYZ.com.au" -Subject "XYZ" -SmtpServer "XYZ" -Body "TEST" -Attachments XYZ.csv

Powershell 2.0
Sendmail
 function sendMail{
     Write-Host "Sending Email"
     #SMTP server name
     $smtpServer = "smtpXXXX"
     #Creating a Mail object
     $msg = new-object Net.Mail.MailMessage
     #Creating SMTP server object
     $smtp = new-object Net.Mail.SmtpClient($smtpServer)
     #Attachment
     $att = new-object Net.Mail.Attachment($OUTfile)
     #Email structure
     $msg.From="test@XYZ.com.au"
     $msg.ReplyTo ="test@XYZ.com.au"
     $msg.To.Add("XYZ.XYZ@XYZ.com.au")
     $msg.subject = "TEST"
     $msg.body = "This is the email Body."
     $msg.Attachments.add($att)
     #Sending email
     $smtp.Send($msg)
     $att.Dispose()

}
I like the Powershell 3.0 version better.


If you find this article useful please leave me a comment or click on an ad to show your support.

Saturday, October 19, 2013

Fix Blurry or non-smooth fonts in 8.1 and chrome

After upgrading to Windows 8 and trying to use chrome I noticed that the fonts in Chrome became very hard to read. The text was blurry.

Simple to fix
  1. Right-click on Desktop and select "Screen resolution" option.
  2. Now click on "Make text and other items larger or smaller" link.
  3. Enable "Let me choose one scaling level for all my displays" option and apply the changes.
  4. Sign out and sign back in to Windows 8 and this should resolve your issue 
If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, October 11, 2013

Microsoft's Gadgeteer aims to make creating gadgets as simple as building with Lego | ZDNet

Microsoft's Gadgeteer aims to make creating gadgets as simple as building with Lego | ZDNet:

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.

How to get SSRS reports working in Google Chrome


  1. On your SSRS server locate the  ReportingServices.js file. Normally you can find it in "C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js"
  2. Edit the file, append this to the end of the file 
    function pageLoad() {    
        var element = document.getElementById("ctl31_ctl09");
        if (element) 
        {
            element.style.overflow = "visible"; 
        } }
Test a report.

Many thanks to the guys on StackOverflow for that one.
http://stackoverflow.com/questions/5428017/cannot-view-ssrs-2008-r2-ssrs-2012-reports-in-safari-chrome-but-works-fine-in

Notes: Any activex control such as Print Control and Zoom Controls will still not work in Chrome. This is because only Internet explorer will support the use of such controls.

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, October 08, 2013

HDD unbootable after softboot - Lenovo X230 Laptop

Problem:
If you find your HDD unbootable after softbooting ( windows reboot, task sequence reboot) on the Lenovo
X230 model laptop.

Workaround:
Cold boot the laptop (Power off/on)

Fix:
Make sure you are running the latest BIOS
http://support.lenovo.com/en_AU/research/hints-or-tips/detail.page?&DocID=HT073834


If you find this article useful please leave me a comment or click on an ad to show your support.

Thursday, September 26, 2013

Woo.. Raspberry Pi

I placed my order for a Raspberry Pi last night. Now to think of  a cool project to use it on (I'm thinking controlling underbench lighting)

If you find this article useful please leave me a comment or click on an ad to show your support.

Wednesday, September 25, 2013

Powershell: Ping List of Computers and Export the results to CSV

This script will ping a list of computers and then output the results into CSV.

Get-Content c:\test\computers.txt | ForEach-Object
    {
        if(Test-Connection -ComputerName $_ -Quiet -Count 1) {
            New-Object -TypeName PSCustomObject -Property @{
                ComputerName = $_
                'Ping Status' = 'Ok'
                }
    }
    else
    {
        New-Object -TypeName PSCustomObject -Property @{
            ComputerName = $_
            'Ping Status' = 'Failed'
        }  
    }
} | Export-Csv -Path c:\test\PingStatus.csv -NoTypeInformation

If you find this article useful please leave me a comment or click on an ad to show your support.

Onenote code formatting

ATTN: Microsoft Office Team. Please put code highlighting into the next version of Onenote.. it's pretty much the only thing stopping me from using Onenote as dedicated code snippet database.

I see that a 3rd Party tool is available for this but it should be availble inside the product
http://www.onenotegem.com/2/post/2013/01/onenote-insert-highlight-syntax-source-code.html

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, September 24, 2013

Monday, September 23, 2013

Citrix Forums : Receiver 4 USB Power Issues ...

Just keep an eye for this issue.. if you install v14.0.0.91 of Citrix Receiver on XP you may find that the electrical current rating for your USB ports dropping from 500ma to 100ma. This is not enough current to run anything beyond a USB keyboard.

There is an updated version of the c:\windows\system32\drivers\ctxusbm.sys floating around that fixes the issue on XP devices. Contact your citrix support to obtain the updated file. We replaced the file and rebooted the issue is fixed on XP devices.

Citrix Forums : Receiver 4 USB Power Issues ...:

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.

Thursday, September 19, 2013

Powershell: Restart service on a list of computers

#Gets a list of machines and then restarts the specified service on each computer.
#Get list of computers
$Computers = Get-Content C:\myscript\serverlist2.txt
#what service
$service = "spooler"
#Function to create object
function OutData($computer,$service,$Object) {
 $out = New-Object psobject
 $out | add-member -type noteproperty -name Computer $computer
 $out | add-member -type noteproperty -name Service $service
 $out | add-member -type noteproperty -name Result $Object
 $out
}
#create empty variable
$result = @()
#main
foreach ($computer in $computers)
    {
    if (Test-Connection -ComputerName $computer -Quiet -count 1)
        {
        $Object = "Restarted $($service) service"
        Restart-Service -InputObject $(Get-Service -Computer $computer -Name $service)
        $result += Outdata $computer $service $object
        }
        else
        {
        $object = "$($computer) not online"
        $result += Outdata $computer $service $object
        }
    }
#export the results
$result | Export-Csv C:\myscript\RestartServiceResults.csv -NoTypeInformation
$Result


If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, September 10, 2013

My Plasma Ball sets of my smoke alarm

I turned on my plasma ball that my dad gave me years ago,, then the smoke alarm went bezerk. I wonder what is happening to cause this.

I suspect the high frequency and high voltage of the plasma ball may be knocking the protons that the smoke alarm uses sense if there is smoke in the room or not off course (normally smoke particles would do this).

Powershell Export-CSV as FileName with Date

Exporting data from powershell in to CSV format is easy. We can use the 'export-csv' cmdlet. However I got stuck trying to append the date to the filename of the CSV.

The tricky bit that I got stuck on was when i tried Get-date I tried like this thinking it would work.
$users | Export-Csv c:\temp\LNCUS-$(Get-Date -format dd-MM-yyyy) .csv -NoTypeInformation  
This failed with the following error


The error happens because the output from Get-Date is not in a string format. To fix this we just need to convert the date format to string by doing the following
$users | Export-Csv c:\temp\LNCUS-$((Get-Date).ToString('MM-dd-yyyy')).csv -NoTypeInformation

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, September 03, 2013

How to restart the task sequence wizard in WINPE without having to reboot

If you make a mistake and cancel out the task sequence wizard in WinPE you can restart it without rebooting. Keep in mind this won't work everytime as it depends on where you failed your task sequence

TsBootShell.exe

To find it you might need to goto to the root of your WinPE drive and type

DIR TsBootShell.exe /s

It will normally be found in

X:\sms\bin\i386

If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, August 16, 2013

How to stop a Windows 7 PC from locking


You can stop a Windows 7 PC from locking by changing the following registry key

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System.
Create a new DWORD 32-bit value named DisableLockWorkstation and give it one of these values:• 1 – Disable Lock Workstation• 0 – Enable Lock Workstation

I found when testing this I did not need to restart for this setting to take effect. 

I found out this registry key the hard way when using a Lenovo BIOS update utility. When the Utility is updating the BIOS it locks the keyboard and mouse and also inserts that setting into the registry. However, it did not remove the registry key after the BIOS update. Therefore I was unable to lock my PC until I found out why. 




If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, July 26, 2013

Malcolm Turnbull confirms users will pay for high speed internet | Information, Gadgets, Mobile Phones News & Reviews | News.com.au

ahh no thanks Mr Turnbull I'll keep my NBN plan for now. 


"If you are in an area where you have fibre to the node … if you've got that and you still want to have fibre to your house, yes, that is possible - and that would be a charge of some thousands of dollars - but I don't think many people will ask for that because the speeds available over the fibre to the node network are so high," he said.

Read more: http://www.news.com.au/technology/malcolm-turnbull-confirms-users-will-pay-for-high-speed-internet/story-e6frfro0-1226685054172#ixzz2a7Uo5qYP


Malcolm Turnbull confirms users will pay for high speed internet | Information, Gadgets, Mobile Phones News & Reviews | News.com.au:

'via Blog this'

Tuesday, May 28, 2013

How to unlock and remove passwords on XLS/XLA 2003 files


  1. Use a Hex editor to open the XLS file 
  2. Search for "DPB="
  3. Edit "DPB=" to "DPx="
  4. Save the XLS file from the Hex editor
  5. Open the XLS file, Excel should throw up an error saying " Do you want to continue loading the project?" Click
  6. Press ALt+f11 and go the the properties of the VBA code and tyep a new password. 
  7. Save the XLS file
  8. Close and re-open the XLS file

Notes:
 This only works for XLS 2003 format files. This process will not work in Office 2007/2010 documents

If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, May 24, 2013

Random network dropouts on Lenovo T410 and X201

I was getting random network dropouts on X201 and T410 Lenovo laptops. Throughout the day users would report  that the NIC simply dropped. Rebooting fixes the issue in most cases.

Turns out both these models use the same hardware "Intel 82577LM" so something is up.

I compared settings to various other network cards and found the only real difference was that the 'receive buffers' were set to '80'.

Setting the 'Receive Buffers' to '256' seems to fix the dropout issue. 
If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, May 03, 2013

PowerTip: Use PowerShell to Show Remaining Battery Time - Hey, Scripting Guy! Blog - Site Home - TechNet Blogs

Show the remaining battery charge (Percentage) using PowerShell.
(Get-WmiObject win32_battery).estimatedChargeRemaining
Want to know what other properties can be looked up?
Get-WmiObject win32_battery | Get-Member
Quick Tip: Win32_Battery class only works if you have a battery in the system to report on (i.e the above code will work on laptops not desktops)


PowerTip: Use PowerShell to Show Remaining Battery Time - Hey, Scripting Guy! Blog - Site Home - TechNet Blogs: "(Get-WmiObject win32_battery).estimatedChargeRemaining"

'via Blog this'

Monday, April 15, 2013

Microsoft Windows 8 and Metro UI: The (d)evolution of the world's most popular OS :: TweakTown

I think article sums up nicely what's going on with Windows 8 right now

Microsoft Windows 8 and Metro UI: The (d)evolution of the world's most popular OS :: TweakTown: "ramatic change towards an interface which is deemed by many as more suitable to"

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, April 09, 2013

Transformer Prime TF700T 4.2 Update Released

ASUS a few days go released the latest update for the TF700T. This is what I've noticed so far.

- Lock screen widgets.
- Daydream feature
- Keyboard seems to be much quicker than before (Keyboard input was an issue in the older update)
- Task manager now takes up the whole screen and has moved to horizontal format (I don't think this is any better)

Speed wise I don't see much difference Chrome app is still VERY VERY slow. Switching apps is still slow.

News from other sites:
Android Police
Transformer Forums
Gforgames
If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, April 02, 2013

Collecting USMT Estimates using ConfigMgr | ConfigMgr FTW

Jason at ConfigmgrFTW! posts a great article about how to Collecting USMT Estimates using ConfigMgr | ConfigMgr FTW:

If you find this article useful please leave me a comment or click on an ad to show your support.

Ebay fees increasing for casuals on the 1st of may.

Looks like eBay is increasing fees for casual sellers from 7.9% to 9.9%. I think it's time for some more competition in the market.

http://sellercentre.ebay.com.au/fs5



If you find this article useful please leave me a comment or click on an ad to show your support.

Thursday, March 28, 2013

SSRS - Display interactive report on one single page

Want to have your SSRS report show on a single page without any page breaks?

The way to do this is click on empty space of your report and then in the properties window select the interactive size and set it to '0'




If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, March 04, 2013

Windows 7 SDK Installation Failure

Issue: 

When installing the Windows 7 SDK the install fails and rolls back the installation before showing a failure message

You find this in the log file

SFX C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\vcredist_x64.exe installation started with log file C:\Users\qjwp\AppData\Local\Temp\Microsoft Windows SDK for Windows 7_0f8d776d-1dab-4e38-b30f-ff0140db5234_SFX.log

C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\SFX\vcredist_x64.exe installation failed with return code 5100

Fix: 
Uninstall visual C++ 2010 Resdistributable  2010 ( both X86 and X64 Versions). Then attempt the install again. 




If you find this article useful please leave me a comment or click on an ad to show your support.

Unable to install VMware tools on Windows 7 X64 - Progress bar never finishes loading

Issue:
I was getting an issue trying to install the VMware Tools on Windows 7 X64.  I would mount the Virtual CD and the program would load but the progress bar would only load to about 90% and never complete.

Resolution:
Uninstall the C++ 2010 and 2008 redistributables and try again.

If you find this article useful please leave me a comment or click on an ad to show your support.

Wednesday, February 20, 2013

Power Consumption in TV's vs overall cost.

"One other trade-off against LCD is that the TV uses considerably more power. Samsung rates this TV at 4.5 stars. Our measures suggested 5.5. Either way, this is much less than current model LCDs, which are typically rated at 7 or 8 stars. This TV might cost you something like AU$100 a year more to run."
That above quote says that running a plasma TV is will cost you more per year to run and this is generally true. But then you have to factor in the original purchase price as well. have a look at the catalogue below. To Purchase the series 8 plasma it's $1996 and the series 8 LED is $3796  this plays a part in to factoring how much that TV will cost you over its lifetime..

It's still cheaper in this case to buy the plasma as even if you get 10 years out of the plasma you still come in cheaper over all when you factor in original purchase price and running costs.



What I am trying to say is that even though running costs of LED's are probably cheaper the total cost of ownership still ways towards purchasing a plasma at this stage.

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, February 19, 2013

Hyper-V Slow Network on HP DL380 G7's

I am yet to find the root cause of why the Hyper-V guests have very slow network transfers on HP DL380 G7's.. If anyone find the cause please comment.

To me it seems the Hyper-V Virtual switch is just slow on these models

I can build a desktop with Windows 8 and install the Hyper-V tools and run up desktop much faster than I can on  the HP DL380's.

Maybe it's the Broadcom cards in the server.

If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, February 18, 2013

4 simple steps to Install Client Hyper-V on Windows 8 via powershell


  1. Open Powershell (as Administrator)
  2. Type "Enable-WindowsOptionalFeature –FeatureName Microsoft-Hyper-V -All"
  3. Press enter. 
  4. Reboot when asked.

If you find this article useful please leave me a comment or click on an ad to show your support.

Friday, February 15, 2013

Source Version mismatches and WDS breaking ERROR 1067

If you WDS service starts failing with Error 1067. You probably have corrupt WIM in you distribution point. If removing the package doesn't fix the issue you may have a stuck distribution on the DP.

Check out how we fixed this issue;

http://joejoeinc.blogspot.com.au/2012/11/sms-despooler-failed-to-merge-delta-to.html


If you find this article useful please leave me a comment or click on an ad to show your support.

Sunday, February 10, 2013

Colour Run 2013



picasaweb.google.com

If you find this article useful please leave me a comment or click on an ad to show your support.

Thursday, February 07, 2013

Raspberry PI RSS feed URL

If you want to add the new feed for Raspberry PI into your news reader (Google Reader)

http://www.raspberrypi.org/feed

If you find this article useful please leave me a comment or click on an ad to show your support.

Monday, January 21, 2013

Error in infopath - The form cannot be loaded because infopath .net programmability support could not be installed automatically


Microsoft InfoPath error "The form cannot be loaded because infopath .net programmability support could not be installed automatically

This error means you probably don't have the required component installed for infopath. You don't have to reinstall office to fix this.

- Open Control Panel
- Goto Programs
- Locate Office 2010
- Right click goto 'change'
- Choose Add or Remove Features, click 'Continue'.
- Open the Feature for 'Microsoft Infopath'
- Right click .NET Programmability Support, Choose run from computer.
- Continue , Wait for finish.
Done.

You can also fix this using and XML file which can come in handy for an SCCM deployment.

Create an XML with the following

Configuration Product="ProPlus">
Level="basic"
CompletionNotice="no"
SuppressModal="yes"
AcceptEula="yes"
NoCancel = "yes"
/>
Id="XDOCSFiles"
State="local"
/>
Id="XDocs_PIA"
State="local"
/> Id="XDOCSHelpFiles"
State="local"
/> Id="GrooveFiles"
State="Absent"
/>
Id="SETUP_REBOOT"
Value="Never"
Children="force"

Save as Infopath.xml and save it in the Office\Config folder (where you source files are).

Then to call it, use:

setup.exe /config .\config\Infopath.xml

Notes:
an XML file can also be used to uninstall a office component

If you find this article useful please leave me a comment or click on an ad to show your support.

Using MBAM to start BitLocker Encryption in a Task Sequence - The Deployment Guys - Site Home - TechNet Blogs

I recently used this to encrypt our hard disks in a task sequence. The configuration worked well.

Using MBAM to start BitLocker Encryption in a Task Sequence - The Deployment Guys - Site Home - TechNet Blogs:

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.

Wednesday, January 09, 2013

Why you shouldn't trust online polls

This blog shows the exact reason why you should not trust online polls.

The Ubermotive Guide to Media Influence |:

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.

Tuesday, January 08, 2013

Download Microsoft System Center 2012 Service Pack 1 Configuration Manager - Clients for Additional Operating Systems from Official Microsoft Download Center

SCCM 2012 now supports Mac and Unix Computers/Clients.

The following scenarios are supported through the Mac client in Microsoft System Center 2012 Configuration Manager SP1: 
  • Discovery – Discovers Mac OS X system in Active Directory and through network discovery
  • Hardware Inventory – Provides hardware inventory and auditing of computers running Mac OS X, including a list of installed software similar to add/remove programs for Windows systems.
  • Settings Management – Ensures computers running Mac OS X comply with company policies using scripts and preference list management.
  • Application Deployment – Distributes required software via app model.
  • Software Updates Management – Distributes patches utilizing Software Distribution and Settings management features.


The following scenarios are supported by the UNIX and Linux clients: 
  • Hardware Inventory - Hardware inventory can be viewed through Resource Explorer and can be used to create collections of UNIX and Linux computers.
  • Software Inventory - Through hardware inventory the list of natively installed software can be gathered from the UNIX and Linux computers - similar to add/remove programs for Windows systems.
  • Software Distribution - Deploy new software, update existing software and apply OS patches to collections of UNIX/Linux computers (using a package and program). Run arbitrary maintenance scripts on a collection of UNIX/Linux servers.
  • Secure and Authenticated Communications
  • Consolidated Reports



Download Microsoft System Center 2012 Service Pack 1 Configuration Manager - Clients for Additional Operating Systems from Official Microsoft Download Center:

'via Blog this'

Monday, January 07, 2013

This Tiny Gizmo Could Be A Very Big Deal In 2013 - And Beyond

This Tiny Gizmo Could Be A Very Big Deal In 2013 - And Beyond: "credible price — only $69.99 gives you a new toy that isn’t quite like the user interface from Minority Report, but it’s not that far off, either."

'via Blog this'

If you find this article useful please leave me a comment or click on an ad to show your support.