Monday, July 21, 2014

Windows Phone 8.1 - Dynamic LockScreen to Arrive Soon
























During the latest Microsoft's BUILD Conference, a lot of features regarding Windows Phone 8.1 (WP 8.1) was revealed.

One of the most hyped features was the Dynamic LockScreen, an innovative feature not only for Windows Phone but also for other smartphones operating systems.
This is a features that should be available very soon.

Basically, this new features allows users to get a more customized lock screen with animated images, control music player, change volume settings, view new messages, etc.

In a proof that Microsoft's it's finally looking at the smartphones business in another away than before, this is not a native WP 8.1 feature but an independent app instead that can be installed via Marketplace.

Although we've not seen nothing since BUILD about this app, a couple of days ago, Joe Belfiore, a corporate vice president and manager for Windows Phone Program Management at Microsoft posted the following tweet, stating that the app could been a week from launching:




The app should be made available on a beta phase in English only and for devices with at least 1GB RAM.

Windows Phone 8.1 on Your Browser




Microsoft's new smartphone OS, Windows Phone 8.1 it's already on it's rollout phase. WP8.1 comes with a lot of new features, so it's normal that WP 7.5 or even WP 8 users get a little lost.

Thinking on that users and obviously for new users, Microsoft has created a website that guides users through the new functionalities in a very interactive and intuitive way.

Because Microsoft it's pushing for getting users from other systems, there's a dedicated area called "Easy to switch" that gives some information for example about how to transfer information from an Apple iPhone or sync contacts and calendar from Android phones.

Take a look and discover Windows Phone 8.1 at:
Microsoft - Windows on your phone
 







Windows 8.1 - Update 2 next 12th August?



Windows 8.1 Update 1 was launched 3 months ago, and brought a lot of stability and some good new features and improvements that boosted Windows 8 adoption, mainly for the home users.

Now, there's some speculation over the internet about the launch of Update 2 possibly in 12th August instead of the previous not official launch date (9th September).

Accordingly with PCPortal.org.ru, Update 2 should be less significant then Update 1 but should bring a little more stability and new functionalities.

Hope to bring more info about it in the next couple of days.
 

Windows 9 - The Future Start Menu Images Appears

windows_menu_iniciar_2

The Microsoft's BUILD conference had a good bunch of news about the future Microsoft's OS, Windows 9.

The option made my Microsoft about removing the "classic" Start Menu from Windows 8 was one of the most criticized decisions.

In a way to make users know that Microsoft it's listening, the news about the return of the Start Menu to Windows 9 was made by Microsoft during BUILD conference but with no release date.

Last week a new image appeared on the internet allegedly of Microsoft Windows 9 build 9788 which shows a more "hybrid" start menu with Desktop and Apps all in the same place.

Windows Phone 8.1 - Available for Nokia Lumia

nokia_lumia_cyan_2
 
The new and hyped Windows Phone 8.1 it's now available for all Nokia Lumia, that where previously shipped with Windows Phone 8.
 
With a lot of new functionalities, the Nokia version of this new phone OS, called Lumia Cyan hads some new cool features like:
  • Nokia Creative Studio - Brings 5 new image filters
  • Nokia SensorCore - Allows the usage of sensors on Nokia Lumia devices for fitness apps without making the battery drain out rapidly
  • New Camera Roll - Gives access to images gallery, editing tools and share options
In all other smartphones (including Lumia) there are also a lot of new features like:
  • Action Center
  • Apps + Store
  • Redesigned Calendar
  • Internet Explorer 11
  • YouTube Player, including HTML5 Support
  • Encripted and signed e-mail support
  • New Start Screen
  • Files (to manage smartphone files)
  • Swipe keyboard
  • Battery Power Sense (for monitoring which apps users most battery)
  • Wi-Fi Direct
  • Miracast, PlayTo, mirror and project via wireless display or USB-Out
  • Virtual Smartcard support
  • Mouse and Keyboard support
And a lot, lot more...like the new personal assistant Cortana in some few countries.
 
Here's a video about the new WP 8.1:
 

 
 
To know more about Windows Phone 8.1 go to:

Wednesday, July 2, 2014

VoiceWake - Wake-on-Lan with...Cortana

 
Well, while WoL it's not a new thing, using it with the new Windows Phone 8.1 personal assistant it's a different story.
VoiceWake integrates with Cortana and let's users wake up machines only by telling her so...
Here's a demo video:



Thursday, May 15, 2014

VMware PowerCLI - Change Pool AutoLogoff Behavior


VMware PowerCLI for View it's a very handful tool if we need to administer a big number of VMware Horizon View pools.
Very similar/based on Microsoft Powershell, VMware PowerCLI allows to run commands directly to VMware View and running scripts also.

Here's a nice one to change a pool's behavior for AutoLogoff after a user's disconnect from a machine.
The script reads a text file that only have the PoolID for all pools that you want to change:

#*********************************************************************
# Application: Change Pool AutoLogoff Timeout From List
#
# Overview: Changes the pool autologoff timeout from a given list
#
#*********************************************************************

$sourcevms = "C:\Pools.txt"
$list = Get-Content $sourcevms

foreach($item in $list){
 Get-Pool -Pool_id $item | Update-AutomaticLinkedClonePool -AutologoffTime 30
}