RSS

Category Archives: Windows

Windows 8 – Sideloading application example (Wordfeud)

Context

One of the negative aspects of working with new technologies is that sometimes you miss some stuff that what available with older versions.

As an example, the Pinball FX2 game/app was in the store of the Windows 8 Consumer Preview, but was not available in the Windows 8 Release Preview. Another example is Wordfeud which was available in the store of the Windows 8 Release Preview, but is not (yet) in the store of the Windows 8 RTM.

[EDIT]

Apparently you can also:

  1. Go to the Windows store
  2. Toggle the AppBar by right clicking, pressing windows key + Z or swiping down from the top of the screen.
  3. Select “Your Apps” 
  4. Choose from the dropdown box: “Apps not installed on this PC”
  5. Select the apps you want to install and press the “Install” button.

[EDIT]

During my time with Wordfeud in the Windows 8 Release Preview I did however see that the developer provided the files to sideload the application. Sideloading means that you can install apps directly without going through the Windows store. More information about sideloading can be found here.

For sideloading Wordfeud, perform the following actions

  1. Run Windows Powershell as administrator
  2. Enable powershell script execution using: set-executionpolicy remotesigned
  3. Download the latest Wordfeud build from http://dl.dropbox.com/u/13365029/WordfeudMetro/index.html
  4. Extract the files to a folder by example : C:\WordfeudMetro_1.0.0.9_AnyCPU_Debug
  5. From within Windows Powershell go to the folder using: cd C:\WordfeudMetro_1.0.0.9_AnyCPU_Debug
  6. Execute the Powershell script by typing: .\Add-AppDevPackage.ps1

For removing the sideloaded Wordfeud, perform the following actions

  1. Run Windows Powershell as administrator
  2. From within Windows Powershell remove the application using: Get-AppxPackage | where PublisherId -eq csykjp4qexh44 | Remove-AppxPackage
 
Leave a comment

Posted by on August 13, 2012 in ICT, Microsoft, Windows, Windows 8

 

Tags: , , , , , , , ,

Windows 8 Consumer Preview first impressions

As most of the IT people already know, Windows 8 Consumer Preview has been released which can be used until January 15, 2013. More information and download links can be found here: http://preview.windows.com/

Even though there are a lot of changes as shown in this article, the main areas I’m interested in are:

  • Metro interface
  • Powershell 3.0
  • Hyper-V 3.0 on the client

As a side note, the Pinball FX2 game has been included, which is one of my favourite pinball games. The Sorcerer’s Lair Table will be free for all Windows 8 users and more pinball tables are expected in the future.

Besides the Windows 8 Consumer Preview, a beta for the Windows 8 Server has also been released, which I will cover at another time.

Metro interface

Since I don’t own a Windows Phone 7, the Metro interface is new to me. I have to say it did not take that much time getting used to, but I did find this video invaluable to getting started:
http://channel9.msdn.com/Blogs/Windows-Blog/Windows-8-Consumer-Preview-Demo

My first impression about the Metro interface is that it looks nice. I’m still in doubt about how useful it will be, but this all depends on the applications being created so it’s a bit early to tell.

Also as a long time Windows user I often find myself reverting to desktop mode. In desktop mode another thing to get used to, is that there is no start menu. By creating desktop shortcuts or  pinning documents to the taskbar this works fine, but it still feels strange.

Powershell 3.0

With Powershell 3.0 some of the major improvements include:

  • Much improved Integrated Script Editor (ISE)
  • More cmdlets (pre-defined commands)
  • Simplified use

For some more information about some of the new or improved feature you can also check:
http://www.computerperformance.co.uk/powershell/index_v3.htm
http://jdhitsolutions.com/blog/2012/02/powershell-3-0-easy-rider/

Hyper-V 3.0

Windows 8 will be the first client OS where you can install Hyper-V. This is great, because as a Microsoft administrator I want to test new operating systems and applications using a virtual testing environment for that. I could of course dual-boot my PC with both a client OS and a server OS, but this is inconvenient. I could also use VMware workstation or any other virtualization solutions, but this causes additional overhead since it is not a type 1 hypervisor. Also Microsoft provides pre-configured environments in the VHD format, which would require additional effort to get them to work correctly in other virtualization solutions.

One of the downsides of the new Hyper-V 3.0 however is that you need a 64-bit processor with Second Level Address Translation (SLAT). With Intel support for this is through a technology called Extended Page Tables (EPT) while with AMD it’s called Nested Page tables (NP). For intel it requires you to have an Intel Core i3, i5, i7 or newer. You can also check with coreinfo if your CPU is supported.

Since my current pc does not meet this requirement, I have not been able to check Hyper-V 3.0 yet. Due to a misstake by Dell however, I expect to be able to test it on my new laptop next week.

For more information regarding new and improved Hyper-V features, please check this article at WindowsITPro.com.

 
Leave a comment

Posted by on March 3, 2012 in Windows, Windows 8

 

Tags: , , ,