Developing Windows 8 Store Apps using HTML5 Refresh 70-481/70-482 Exam Prep M2: Storage, Networking, and Security Michael Palermo Microsoft Technical Evangelist.

Slides:



Advertisements
Similar presentations
Avoid data leakage, espionage, sabotage and other reputation and business risks without losing employee performance and mobility.
Advertisements

Chromebook Inservice. Agenda Meet the Chromebook’s Hardware Features Google Accounts Wireless Network Connectivity and Login Procedures Initial screen.
Windows Phone 8.1 for Developers Sascha Corti Technical Evangelist, Microsoft Switzerland | techpreacher.corti.com
Module 6: Configuring Windows XP Professional to Operate in a Microsoft Network.
11 CONFIGURING AND MANAGING SHARED FOLDER SECURITY Chapter 8.
Push to ALL the iPhones with Azure Chris Risner Senior Technical Microsoft Azure.
Windows 8 Tips & Tricks for XAML based Windows Store App Ronnie Saurenmann Microsoft
M4: Multimedia and Devices
8/10/2015Windows 71 George South. 8/10/2015Windows Windows Vista Windows Vista was released in January 2007 some five years after Windows XP Vista.
Advanced Windows 8 Apps Using JavaScript Jump Start Exam Prep Advanced Windows 8 Apps Using JavaScript Jeremy Foster Microsoft Developer Evangelist.
Mark O’Shea | Microsoft MVP Windows Expert – IT Pro Introducing The Windows 8.1 Update.
Connected Experiences
Microsoft Office 2003 – Outlook 2003 features Bradley Witham Technical Services Supervisor ITS.
Microsoft Windows 8.1 Enterprise: A brief overview of Microsoft Windows 8 Enhancements. Welcome!
Computing Fundamentals Module A Unit 2: Using Windows Vista LessonTopic 8Looking at Operating Systems 9Looking at the Windows Desktop 10Starting Application.
2 Windows 7 – New Features DirectAccess Active Directory authentication without a VPN connection Firewall and NAT friendly with most existing network.
Integrate your game with Windows platform Vladimir Kolesnikov Technical Evangelist
MCSE Guide to Microsoft Exchange Server 2003 Administration Chapter Four Configuring Outlook and Outlook Web Access.
©Kwan Sai Kit, All Rights Reserved Windows Small Business Server 2003 Features.
Purpose Intended Audience and Presenter Contents Proposed Presentation Length Intended audience is all distributor partners and VARs Content may be customized.
M i SMob i S Mob i Store - Mobile i nternet File Storage Platform Chetna Kaur.
Chromebook Inservice. Agenda Meet the Chromebook’s Hardware Features Google Accounts and Password Changes Wireless Network Connectivity and Login Procedures.
Gaming Engines for Windows 8 M6: Monetizing and Store submission Adam Tuliper Microsoft Technical Evangelist Michael Palermo Microsoft Technical Evangelist.
Module 9: Preparing to Administer a Server. Overview Introduction to Administering a Server Configuring Remote Desktop to Administer a Server Managing.
Windows 8 Tips & Tricks for XAML based Windows Store App Ronnie Saurenmann Microsoft
Join the MVA Community! ▪ Microsoft Virtual Academy—Free online training! ‒ Tailored for IT Pros and Developers ‒ Over 1M registered users ▪ Earn while.
Advanced Windows 8 Apps Using JavaScript Jump Start Exam Prep M5: Data, Files, and Encryption Michael Palermo Microsoft Technical Evangelist Jeremy.
Gaming Engines for Windows 8 M3: Scirra Construct2 Jeremy Foster Microsoft Technical Evangelist Adam Tuliper Microsoft Technical Evangelist.
Module 3 Configuring File Access and Printers on Windows ® 7 Clients.
Module 3: Configuring File Access and Printers on Windows 7 Clients
RM Monitor and RMAlerts Installation, Setup, and Requirements January 23, 2010 John Raffenbeul presented this live via an internet connection. These slides.
Case Study.  Client needed to build data collection agents for various mobile platform  This needs to be integrated with the existing J2ee server 
1350 TAC Training © 2000, Cisco Systems, Inc. Wireless Lab.
Gaming Frameworks for Windows 8 M4: YoYo Games GameMaker Michael Palermo Microsoft Technical Evangelist Jeremy Foster Microsoft Technical Evangelist.
Lesson 10: Configuring Network Settings MOAC : Configuring Windows 8.1.
FCM Workflow using GCM.
Advanced Windows 8 Apps Using JavaScript Jump Start Exam Prep M6: Deployment Jeremy Foster Microsoft Developer Evangelist Michael Palermo Microsoft.
Windows and Windows Phone Application Model Universal Apps What’s new in Windows Phone
WINDOWS AZURE MOBILE SERVICES AN INTRODUCTION Bret Stateham Technical Evangelist
Building Windows Phone applications with Silverlight, part 2 Peter Torr Program Manager, Microsoft
1 Chapter 13: RADIUS in Remote Access Designs Designs That Include RADIUS Essential RADIUS Design Concepts Data Protection in RADIUS Designs RADIUS Design.
Configuring and Deploying Web Applications Lesson 7.
Chapter 2 – Part 1 Introduction To Windows Operating Systems CMPF 112 : COMPUTING SKILLS.
Advanced Windows Store App Development with HTML5 Refresh / Exam Prep M6: Tools and Asynchronous Programming Jeremy Foster Microsoft Technical.
The Microsoft Technical Roadshow 2006 Making Your Life Easier With Windows Server 2003 R2 Melville Thomson IT Pro Evangelist
Hands-On Microsoft Windows Server Implementing User Profiles A local user profile is automatically created at the local computer when you log on.
© 2014 IBM Corporation Mobile Customization & Administration IBM Connections 5.0 Workshop Author: Paul Godby IBM Ecosystem Development Duration: 30 minutes.
1 E-Site - FTP Services Setup / install guide. 2 About FTP services can run on any desired port(s) Runs as a windows service Works for all sites installed.
Administering Microsoft Response Point How to deploy and manage Microsoft Response Point hardware and software Joe Schurman Founder, Executive Director.
Advanced Windows 8 App Development Using JavaScript Jump Start Exam Prep M2: Hardware and Sensors Michael Palermo Microsoft Technical Evangelist.
11 | Managing User Info Jeremy Foster Michael Palermo
M5: Packaging and Deployment
Module 9: Preparing to Administer a Server
Wireless Communication and Networks
Build /4/2018 © 2012 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Power BI Security Best Practices
Fastdroid Produced by : Firas Abdalhaq Mohammad Amour Supervised by : Dr. Raed Alqadi.
ICT Communications Lesson 1: Using the Internet and the World Wide Web
Printers.
Building great Metro style apps for mobile broadband devices
M4: Animations, Custom Controls, and Globalization
More than just File Sync and Share.
TechEd /15/2019 8:08 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Office 365 Development.
Michael Palermo Jeremy Foster
M3: Printing and PlayTo Jeremy Foster Michael Palermo
Module 9: Preparing to Administer a Server
Developing Mobile Solutions with Windows Azure Part II
Michael Palermo Jeremy Foster
Erik Porter Program Manager ASP.NET Microsoft Corporation
Presentation transcript:

Developing Windows 8 Store Apps using HTML5 Refresh / Exam Prep M2: Storage, Networking, and Security Michael Palermo Microsoft Technical Evangelist Jeremy Foster Microsoft Technical Evangelist

Jump Start Target Agenda Developing Windows 8 Store Apps using HTML5 Refresh Module 1: Controls Module 2: Storage, Networking, and Security Module 3: UX/UI

Module Agenda Files Networking Security ˃ ˃

Files Pick a file regardless of app layout New folder & file navigation support Easier management and error control

FILES: PARENT, KNOWNFOLDERS, ISEQUAL, NO ERROR demo

Module Agenda Files Networking Security ˃ ˃

New HTTP Client API var uri = new Windows.Foundation.Uri(" var filter = new Windows.Web.Http.Filters.HttpBaseProtocolFilter(); var httpClient = new Windows.Web.Http.HttpClient(filter); httpClient.GetStringAsync(uri).done( function (response) { // use response }, function (caught) { // caught.Message } );

HTTPCLIENT: GET W/CACHE FILTER demo

BackgroundTransfer Updates BackgroundTransferGroup allows for uploads/downloads in parallel, serial, or based on priority Updates via live tile or toast notifications Automatic switch of download (if likely more than 2 min) to a preferred network

BACKGROUNDTRANSFER demo

Connected Standby Updates Apps on Windows lock screen can receive network packets Support for “quiet hours” Support for Ethernet & mobile broadband network adapters

Geofence “Geofence allows an app to define a radius around a geographical point of interest and have the system alert the app when the device it is running on enters or exits that area.”

GEOLOCATION demo

Module Agenda Files Networking Security ˃ ˃

Security Updates Fingerprint authentication Credential Locker – Default when multiple credentials exist for one resource – LastAccessed to determine how long since used – ApplicationSuiteId for sharing credentials between apps that access a shared resource WebAuthenticationBroker – Updated to automatically fill existing credentials based on user consent – stored in Credential Locker

Selective Wipe “Selective wipe enables you to identify folders and files on a user’s PC that can be revoked (and thereafter deleted) by a command from a server” FileRevocationManager.ProtectAsync FileRevocationManager.GetStatusAsync

FILEREVOCATION demo

Summary New support and enhancements for Files Networking Security