Update: I have just spent a week testing Windows 8. I have been very impressed with it as a possible future tablet OS. I also think the weakness of Android in this space opens a large opportunity for Microsoft. The iPad has created a public desire for tablets as the next platform. But the iPad fails because it is very much just a large iPhone. Don't get me wrong, I love my iPad and use it constantly for work. But I still need to get up and go to my laptop to do heavy lifting work. The iPad is still really little more than a great Kindle. Windows 8 could be the OS that makes the tablet a work horse for a more mobile future.
Tuesday, 29 November 2011
Time to Close the Book on Windows Tablet?
Update: I have just spent a week testing Windows 8. I have been very impressed with it as a possible future tablet OS. I also think the weakness of Android in this space opens a large opportunity for Microsoft. The iPad has created a public desire for tablets as the next platform. But the iPad fails because it is very much just a large iPhone. Don't get me wrong, I love my iPad and use it constantly for work. But I still need to get up and go to my laptop to do heavy lifting work. The iPad is still really little more than a great Kindle. Windows 8 could be the OS that makes the tablet a work horse for a more mobile future.
Wednesday, 2 November 2011
Opps Duqu infection linked to Microsoft Word exploit
The research says the Trojan exploited a previously unknown vulnerability embedded in Word files, allowing Duqu to modify computers' security protection."
BBC News - Duqu infection linked to Microsoft Word exploit
Yelp and how dumb is social media
Sunday, 30 October 2011
Occupty Wall Street is the hot ticket in New York
'via Blog this'
Thursday, 27 October 2011
RIM and Microsoft Office 365
BlackBerry maker Research In Motion has launched a new service that not only extends access to Microsoft Office 365 but lets businesses better manage their BlackBerry devices.
Currently available as a beta for Microsoft Office 365 customers, BlackBerry's Business Cloud Services offers four key benefits to potential customers, according to RIM:
- Access to Microsoft Exchange online email, calendar, and organizer data from BlackBerry smartphones.
- BlackBerry Balance technology, which lets users see both personal and work-related content on their phones but keeps the two separate from each other.
- Online access to smartphone security features where users can remotely lock or wipe their smartphones or reset their passwords.
- An online console where IT admins can manage and secure the BlackBerry smartphones used by company employees.
"BlackBerry Business Cloud Services is an easy and cost-effective way for businesses and government agencies to extend Microsoft Office 365 to BlackBerry smartphones and manage the deployment in the cloud," RIM Vice President Alan Panezic said in a statement. "We have been working together with Microsoft and select customers through an early access program and we are pleased to now launch an open beta for the service."
Frankly we at the Web 3.0 Lab have never fully understood Microsoft mobile strategy. They seem to be perfectly happy with the iPhone being out there, they complain about Android though they collect license agreements on most Androids sold, they have a strategic relationship with one of the top business phone vendors and they push their own phone.
For Microsoft the future is the cloud. Even if the make a OS for small devices this OS may gain them little more than Internet Explorer, a long term headache. Frankly the web industry would be delighted to see IE in all its version vanish.
Mobile devices are becoming nothing more than windows to the Cloud, and Microsoft's Cloud is a business cloud. RIM has a well established proven technology that could easily catch up, and the Blackberry remains popular in the Enterprise. Microsoft should abandon the sinking ship of Windows Mobile and purchase RIM and turn that in to their platform.
But there may be method to the madness, unlike Apple Microsoft and Google make software, and being trapped in a single hardware platform is not where Microsoft wants to be. But also being forked between two main platforms, where one is highly established does not really make sense either.
See also Microsoft and RIM make partnership
What is Office 365
All my posts on Office 356
Tuesday, 18 October 2011
Restore a site collection SharePoint Server 2010 using PowerShell
- It is now Microsoft Recommendation, don't want to go against that.
- The language is much more elegant, easier to read and write once you get a hang of it.
- The language now supports functions and variables, it is now more of a programming language.
- Its more powerful, allowing you do things like putting site collections in new databases.
function HelloWorld()
{
$say = "Hello world"
echo $say
}
function WaitForJobToFinish([string]$SolutionFileName) { $JobName = "*solution-deployment*$SolutionFileName*" $job = Get-SPTimerJob | ?{ $_.Name -like $JobName } if ($job -eq $null) { Write-Host 'Timer job not found' } else { $JobFullName = $job.Name Write-Host -NoNewLine "Waiting to finish job $JobFullName" while ((Get-SPTimerJob $JobFullName) -ne $null) { Write-Host -NoNewLine . Start-Sleep -Seconds 2 } Write-Host "Finished waiting for job.." } } Add-PsSnapin Microsoft.SharePoint.PowerShell $CurrentDir=$args[0] $solutionName="Limeco.UI.WebParts.wsp" $SolutionPath=$CurrentDir + "\"+$solutionName Write-Host 'Going to disable feature' disable-spfeature -identity Limeco.UI.WebParts_LimecoWebPartFeature -confirm:$false -url http://localhost Write-Host 'Going to uninstall feature' uninstall-spfeature -identity Limeco.UI.WebParts_LimecoWebPartFeature -confirm:$false -force Write-Host 'Going to uninstall solution' Uninstall-SPSolution -identity $solutionName -allwebapplications -confirm:$false Write-Host 'Waiting for job to finish' WaitForJobToFinish Write-Host 'Going to remove solution' Remove-SPSolution –entity $solutionName -confirm:$false Write-Host 'Going to add solution' Add-SPSolution $SolutionPath Write-Host 'Going to install solution to all web applications' Install-SPSolution –entity $solutionName –llwebapplications –ACDeployment Write-Host 'Waiting for job to finish' WaitForJobToFinish Write-Host 'Going to enable Feature' Enable-spfeature -identity Limeco.UI.WebParts_LimecoWebPartFeature -confirm:$false -url http://localhost Remove-PsSnapin Microsoft.SharePoint.PowerShell
Hey, I am a System Admin not a Programmer, isn't PowerShell just over the top
No again.
PowerShell basic functions are much cleaner and easier to run than the same stsadm.exe code.
Example of PowerShell for dummies
Here is a use case. You have been given two backup files from a development box and you need to install the two sites in a web application, each in its own site collection with its own database. We assume here you have already added a second content database.
The web application is on port 80, and is called http://test and the two content databases are WSS_Contet and WSS_Content2. You need to update 2 backup files, one at D:\backups\home.bak and D:\backups\work.bak. Work.bak will be restored to a site collection at http:/sites/work
You are just going to be running PowerShell, you don't have time to make any saved scripts. You were thinking about just using stsadm but your boss, say a project manager, says you must use PowerShell.
Well the good news it is easy. Very easy to do this.
We assume you know how to get in to PowerShell here, if you don't here is a helpful introduction.
So you are logged in to PowerShell with the appropriate rights to the database. I have generally logged in to the server with the Farm account and not the Admin accounts
The first step I do is to list out the Web Applications on the server. You type the PowerShell command:
Get-SPWebAppllication
And you get a list of web applications, there ports and their URLs. One of the URLS in the example is http://test
Now to restore the back to http://test on WSS_Content type the following PowerShell command:
Restore-SPSite http://test -path D:\backups\home.bak -DatabaseName WSS_Content
PowerShell will ask you to confirm that you rally want to do this. Wait until the task completes.
Then to build the second site type:
Restore-SPSite http://test/sites/work -path D:\backups\work.bak -DatabaseName WSS_Content_2
This then takes care of building the new site collection for you, and puts it in the database WSS_Content_2.
Its that easy!
Wednesday, 12 October 2011
Web 3.0 Lab: Proof We Live in the Real World and Not the Matrix...
Tuesday, 20 September 2011
Google+ for everyone
Google+ is now open to everyone. Recently Google+ has had some social policy teething pains, especially around the issue of anonymous access of users. Google+ requires a 'real name' which many users, especially established web personalities who have blogged under a different name for years don't agree with.
Thursday, 15 September 2011
BCS Overview Demo
Business Connectivity Services in SharePoint 2010 Demo Part 1
Tuesday, 13 September 2011
Windows 8 Demo
Ireland's Technology Blog has a video with some more new information about Windows 8. Video requires flash so no Pads.
Microsoft Releases First Test Version of Windows 8 - Ina Fried - News - AllThingsD
Windows 8 looks to be playing catch up with the now dominate Apple for a space it once owned.
Friday, 9 September 2011
Wednesday, 7 September 2011
The writing is on the wall for all of us
Once the leader in web presence Yahoo! collapse along with the fall of MySpace is a stark reminder that in the Cloud business moves very fast.
"When the history of the internet industry comes to be written, Yahoo! will deserve a special place in it for all the wrong reasons. Rarely has a company managed to destroy so much shareholder value in such a short space of time. Before Ms Bartz was brought in to run the business, Yahoo! rejected a bid from Microsoft that valued it at around $45 billion on the ground that the offer was too stingy. Today, its market capitalisation is a mere $16 billion or so."
Wednesday, 31 August 2011
Nokia's developer network hacked
'via Blog this'
Fujitsu Stylistic Q550 tablet review - reviews for UK IT professionals - V3.co.uk
But unlike most consumer tablets, the Stylistic Q550 supports pen input from a digital stylus as well as touch gestures. This enables handwriting capture, as well as making it easier to pick out small objects on the screen, which is often necessary with the Windows 7 user interface."
Tuesday, 23 August 2011
Tripoli Tweets
We are starting to see some of the first geo-tagged tweets coming from Tripoli. You can track real time tweeting intensity with our Clima.Me tool:
Not seeing anything most time now but keep an eye on this to see Libya come to life on the web.
Thursday, 4 August 2011
BBC News - UK student wins Microsoft Excel World Championship
"UK student Rebecca Rickwood has won a global competition to find the best user of Microsoft's spreadsheet software, Excel 2007.
Rebecca, who is 15, was one of 228,000 competitors from 57 countries. She beat 78 students in the final round.
Competitors were required to perform timed tests to demonstrate their skill at making spreadsheets.
Rebecca was presented with her $5000 prize yesterday at a ceremony in San Diego, California."
Friday, 22 July 2011
BBC News - Microsoft revenues hit a record as Xbox sales soar
"The US technology giant Microsoft said its annual revenues hit a record of $69.94bn (£43.4bn).
Sales of the company's Xbox 360 videogame console and its Office software helped fuel the growth.
Net income at the world's biggest software maker jumped 23% to 23.15bn for the year.
The figures, which beat forecasts, showed final quarter revenues reached a record high of $17.37bn, leading to profits of $5.87bn.
Sales rose 8% to $17.37 billion, a boosted chiefly by sales of Office, Xbox and server software behind Microsoft's push into cloud computing."
BBC News - Microsoft revenues hit a record as Xbox sales soar
But the really key paragraph is:
"Microsoft's business division, which sells the Office suite of programs, including Outlook, SharePoint and Excel, was the company's biggest seller in the quarter, increasing sales by 7% to $5.8bn."
So SharePoint is now big business, on the same level of Outlook and Excel, the killer apps of Microsoft's suit.
Tuesday, 19 July 2011
Using the Ribbon in SharePoint 2010: SharePoint 2010 New Features from l...
Rober1236 Jua the Cyber Trekker of Second Life
Thursday, 14 July 2011
.NET frameworks 3 and 3.5 go out of support
.NET Framework 3.0 and 3.5 are now unsupported (as of 12th July 2011) and you need to move to .NET Framework 3.5 SP1 or later to remain on a supported configuration. If you’d like to discuss the implications of this upgrade to your applications, or require any guidance, please don’t hesitate to get in touch.
Full details can be found here:
http://support.microsoft.com/
Full support lifecycles for all the .NET Framework versions can be found here:
Tuesday, 12 July 2011
What every SharePoint pro should know about Google+, it rocks
Circles give you ways to manage your friends and associates. You can organize all your contacts in circles. You can then publish information to different circles. So Google+ gives you technology to communicate to close friends or associates while still tracking major celebrities you don't know. The simple technology of circles merges a private friends network with a public blogging publishing tool, effectively merging Linked In, Facebook and Twitter in to one tool.
Google+ is a real game changer. Using it you start to get a feel for just how bad the existing technology set is. Facebook UI and features are very dated. Facebook did not really push the envelope back in 2003. The outdated design becomes obvious after spending a few hours working with Google+.
Google has certainly set the standard for how social computing will work. Sadly nothing in 2010 MySites comes even close to this. Hopefully Microsoft will have time to catch up, but for now Google has carried out a coup in the Social space.
Tuesday, 28 June 2011
Microsoft launches Office in the cloud
"Microsoft is launching a cloud-based version of its Office software suite.
Called Office 365 the service puts the familiar e-mail, word processing, spreadsheet and collaboration programs on the web.
Microsoft said the programs will be accessible via desktops, laptops and tablets plus Microsoft, RIM, Apple and Android smartphones.
The launch is aimed squarely at Google and others who already offer web-based business software."
Well BBC is a bit late on the story, but the Cloud version of Office is here.
Microsoft launches Office in the cloud
"Microsoft is launching a cloud-based version of its Office software suite.
Called Office 365 the service puts the familiar e-mail, word processing, spreadsheet and collaboration programs on the web.
Microsoft said the programs will be accessible via desktops, laptops and tablets plus Microsoft, RIM, Apple and Android smartphones.
The launch is aimed squarely at Google and others who already offer web-based business software."
Well BBC is a bit late on the story, but the Cloud version of Office is here.
Friday, 24 June 2011
Wednesday, 15 June 2011
Flowr's online business collaboration shows app threat to SharePoint tools updated
Thursday, 2 June 2011
Terence McKenna - Time Acceleration
Web 3.0 Lab: Windows 8 will be a mobile OS
Tuesday, 24 May 2011
Saturday, 21 May 2011
Tech Bubble 2.0, Wall Streets concern, given its record of getting things wrong, is no reason to worry
Friday, 20 May 2011
Cloud computing already flopping? Lessons from Sony
It's a nightmare moment. You are under pressure - to meet customer orders, finish a project, execute a deal - and nothing. Your computers, servers or network are down. If you are lucky, a few nail biting hours and a reboot or three later, you and your IT team have restored services.
But what if your IT infrastructure goes down and there's nothing you can do because your computing power sits in the cloud, provided over the internet by another company? When a key part of Amazon's EC2 cloud service collapsed, many of the firm's customers were reduced to publishing apologies on their websites, and click 'refresh' on Amazon's service health dashboard.
Two of Sony's online gaming services, meanwhile, were hacked, compromising confidential data of more than 100 million customers."
Thursday, 12 May 2011
Web 3.0 Lab: Huddle on death of the enterprise
Tuesday, 10 May 2011
Web 3.0 Lab: Microsoft near $7 billion deal for Skype
Microsoft to buy Skype, will it be a game changer?
Microsoft is putting the finishing touches on a deal to buy Internet phone company Skype for between $7 billion and $8 billion, and a deal could be announced as early as tomorrow, according to a Wall Street Journal report.
The report cited people familiar with the matter who said negotiations were ongoing and could still fall apart. Microsoft representatives did not immediately respond to a request for comment.
The Luxembourg-based company provides a software-based communications service that allows people to make free voice and video calls over the Internet to other Skype users using almost any Internet-connected device. The voice over Internet Protocol, or VoIP service also allows people to make and receive calls from regular telephone numbers using a paid service.
Interest in the Internet telephony giant has been high since online auction giant eBay, which had acquired Skype in 2006, sold off its controlling interest in Skype. Facebook and Google had previously been mentioned as possible suitors for the company, which has been around since 2003 and averages 124 million connected users per month.
The combination of the deal of Nokia and Skype could suddenly make Windows 7 mobile a game changer in the mobile industry. But the news so far has had no impact on Microsoft's stock. Looks like traders are taking a wait and see attitude about Microsoft's efforts to take over this stock. Certainly Microsoft's former domination of the PC universe has suffered under Web 2.0 failures. With Google and Facebook taking a lead people might be wise to be unsure that Microsoft will be able to take advantage of the mobile Internet or Web 3.0.
Out take is that Microsoft is very well position to make better use of Skype than eBay. Skype fits nicely in to the Office 365. And Skype will also extend the Nokia Windows 7 competitive position. We have noticed that the movement to mobile devices is speeding up the pace at which people change machines. People might use a PC for 5 to 7 years. People get new smartphones ever couple of years. So in 4 years from now people could have two upgrades of their smartphones. We have also seen people willing to change smartphones. People have moved from Palm to RIM, RIM to iPhones and iPhone to Android already. If the Windows 7 mobile phone on Nokia creates an attractive offering it might only take a few years for Microsoft to retake much of this area.
In the Pro are for Microsoft we have:
- Microsoft strong position in PC making it still the main platform people create and use information.
- Nokia new phones are excellent.
- Microsoft Office 365 could become the Office productivity platform of almost all business users very soon.
- Skype purchase.
- The excellent reviews Windows 7 Mobile has gotten.
- Weak mobile reputation.
- Strong position of Android in mobile area.
- Web 2.0 owned by other firms like Google and Facebook.
Tuesday, 3 May 2011
Microsoft and RIM to make partnership
"Ballmer also said Microsoft would invest 'uniquely' in BlackBerry services."
Friday, 15 April 2011
Office 365 beta, Microsoft finally makes it to the Cloud with SharePoint
Wednesday, 13 April 2011
Web 3.0 Lab: BBC News - How is technology changing protests?
Wednesday, 6 April 2011
How much information does IT produce? Try a number with 19 zeros!
The first-of-its kind rigorous estimate was generated with server-processing performance standards, server-industry reports, interviews with information technology experts, sales figures from server manufacturers and other sources. (One zettabyte is 10 to the 21st power, or a million million gigabytes.)
The study estimated that enterprise server workloads are doubling about every two years, which means that by 2024 the world's enterprise servers will annually process the digital equivalent of a stack of books extending more than 4.37 light-years to Alpha Centauri, our closest neighboring star system in the Milky Way Galaxy. (Each book is assumed to be 4.8 centimeters thick and contain 2.5 megabytes of information.)"
Web 3.0 Lab: The Tablet is mobile, cameras and 3G now becoming ...
Monday, 4 April 2011
Web 3.0 Lab: Cancer Research UK embraces Wikipedia
"The charity said many people researching the subject are turning to the website.
"But it said there were problems with accuracy and clarity on some of the pages.
"Wikipedia said it encourages experts to edit the site as they have a lot to contribute.
"Cancer Research UK's website has pages of detail about a range of cancers.
"However, using a search engine for the terms 'Breast Cancer' puts the charity in eighth place on the results page. Wikipedia comes second. A trend it repeats across other cancers."