by Scott Muniz | Sep 16, 2020 | Uncategorized
This article is contributed. See the original author and article here.
The September 2020 Cumulative Update Preview for Windows 10 includes the following correction to the Daylight Savings Time (DST) end date for Fiji:
- DST will end in Fiji on January 17, 2021. Due to defined rules in Windows, however, this date is noted in Windows as January 10, 2021, which is incorrect. Installing the September 2020 Cumulative Update Preview (or later) for Windows 10 will fix this issue and ensure that end user devices experience the correct DST transition on January 17th.
- This correction is for devices running the following versions of Windows 10:
- Windows 10, version 1809
- Windows 10, version 1903
- Windows 10, version 1909
- Windows 10, version 2004
- Devices running other supported versions of Windows will see the relevant changes in the October monthly quality update.
For Microsoft’s official policy on DST and time zone changes, please see Daylight saving time help and support. For information on how to update Windows to use the latest global time zone rules, see How to configure daylight saving time for Microsoft Windows operating systems.
by Scott Muniz | Sep 16, 2020 | Azure, Technology, Uncategorized
This article is contributed. See the original author and article here.
Azure Stream Analytics is a full managed service for real-time analytics. In addition to the experience in Azure portal we have developer tools which make development and debugging easier. This blog will introduce a new debugging feature in Azure Stream Analytics tools extension for Visual Studio Code.
Have you ever faced a situation where your streaming job produces no result or unexpected results and you don’t know how to trouble shoot which parts go wrong? We are happy to announce the roll out of the newest debugging feature – job diagram debugging in Visual Studio Code extension for Azure Stream Analytics. This feature brings together job diagrams, metrics, diagnostic logs, and intermediate results to help you quickly isolate the source of a problem. You can not only test your query on your local machine but also connect to live sources such as Event Hub, IoT Hub. The job diagram helps you to understand how data flows between each step, and you can view the intermediate result set and metrics to debug issues. You can iterate fast because each local test of the job only takes seconds.
This blog will use a real example to show you how to debug an Azure Stream Analytics job using job diagram in Visual Studio Code.
Note
This job diagram only shows the data and metrics for local testing in a single node on your own machine. It should not be used for performance and scalability tuning.
Step 1 Install the tools

Step 2 Open your job in Visual Studio Code
Please go to step 3 if you already have your Azure Stream Analytics project opened in Visual Studio Code.
Open the Azure Stream Analytics job you want to debug on the Query Editor on Azure portal. Select from drop down Open in Visual Studio and choose Visual Studio Code. Then choose Open job in Visual Studio Code. The job will be exported as an Azure Stream Analytics project in Visual Studio Code.

Step 3 Run job locally
Since the credentials are already auto-populated, only thing you need to do is to open the script and Run locally. Make sure the input data is sending to your job input sources.

Step 4 Debug using job diagram
The job diagram shown on the right window of the editor shows how data flows from input sources, like Event Hub or IoT Hub, through multiple query steps to output sinks. You can also view the data as well as metrics of each query step in each intermediate result set to find the source of an issue.
Now, let’s look at a real example job below. We have a job receiving stock quotes for different stocks. In the query there are filters on a few stocks but one output does not have any data.
We run the job locally against live input stream from Event Hub. Through job diagram we can see that the step ‘msftquotes’ does not have data flowing in.

To troubleshoot that, let’s zoom in the diagram and select the upstream step ‘typeconvertedquotes’ to see if there is any output. In the node it shows that there are 3135 output events. Also, from the Result tab below it is easy to find out that there are data been output from this step with symbol ‘MSFT’.

Then we select the step ‘msftquotes’ and locate to the corresponding script to take a closer look.
Now we find the root cause – there is a typo in the script, ‘%MSFT%’ is mistakenly typed as ‘%MSFA%’.
MSFTQuotes AS (
SELECT typeconvertedquotes.* FROM typeconvertedquotes
WHERE symbol like ‘%MSFA%’
AND bidSize > 0
),
Let’s fix the typo, stop the job and run again.
Look, the data is flowing into step ‘msftquotes’ and the other downstream steps.

Other than checking the result for each step, you can also view logs and metrics for the job.
Step 5 Submit to Azure
When local testing is done, submit the job to Azure to run in the cloud environment and further validate the job status in a distributed manner.
Hope you find these new features helpful, and please let us know what capabilities you’re looking for with regard to job debugging in Azure Stream Analytics!
by Scott Muniz | Sep 16, 2020 | Uncategorized
This article is contributed. See the original author and article here.
Wouldn’t it be nice if you could set up custom workflows with connectors to effectively index and generate captions from a large volume of video and audio files, without needing to write a single line of code? With Azure Media Services Video Indexer, you can utilize Logic Apps and Power Automate connectors that are compatible with our API, without coding! The resulting solution provides better visibility into the health of your workflow, while making debugging easier.
Azure Media Services Video Indexer v2 REST API supports both server-to-server and client-to-server communication. Video Indexer users can integrate video and audio insights (including captions) easily into their application logic, unlocking new experiences and monetization opportunities.
In this tutorial, you will learn how to:
- Trigger a Logic Apps / Power Automate flow every time a video file is added to a specific OneDrive or OneDrive Business folder.
- Use the flow to automatically index and generate captions for the video file.
- Set a second flow to save the video captions to a different OneDrive folder.
Prerequisites
- Create an Azure subscription if you do not have one. You can create a free account here.
- A Video Indexer account, with access to the APIs via API key.
- A One Drive or OneDrive Business Account. In your OneDrive, create two folders – one to store videos and the other to store the captions generated by Video Indexer.
In this tutorial, we will use the term “flow” to describe both Power Automate flows and Logic Apps automations. Since the editors and capabilities are almost identical in both solutions, please note that the diagrams and explanations are applicable to both Logic Apps and Power Automate.
Index video automatically by copying it to OneDrive
This scenario is comprised of two separate flows that work together. The first flow is triggered when a file is added to a OneDrive or OneDrive for Business account. The flow uploads the new file to Video Indexer with a callback URL to send a notification once the indexing operation is completed.
The second flow is triggered from the callback URL. It saves the generated captions back to a JSON file in OneDrive. This two-flow approach can effectively be used to support async upload and indexing of a large volume of files.
You can create a similar flow that will be triggered when a blob is added or modified in an Azure Storage account to save the captions to your blob.
Set up the file upload flow
The first flow is triggered whenever a file is added to your OneDrive folder. When triggered, it will create a URL that enables you to upload and index your file in Video Indexer. Let’s start by creating the following flow in Logic Apps or Power Automate. Below is a workflow diagram from Logic Apps editor, but since the Power Automate editor is practically the same you can follow the steps in both solutions.

Note that every OneDrive trigger or action is available both for OneDrive and OneDrive for Business. Make sure to choose the one you use when you create the flow.
To set up the first flow, you will need to provide your OneDrive credentials and Video Indexer API Key.
“Connection name” can be a value of your choosing.


Once you are connected to your OneDrive and Video Indexer accounts, go to the “When a file is created” trigger and select the folder where you want your video files to be stored. In this example we’ve called the folder “VideoIndexer”.

Next, go to the “Create share link” action. Select “File identifier” from the Dynamic content options to send the new file to the “Create share link” action and set the Link type to “Direct” so Video Indexer could access the file in the next steps.

Fill out your account Location and ID to get the Video Indexer account token. Access tokens are needed to use the Video Indexer APIs for security purposes. This ensures that all calls are either coming from you or those who have access permissions to your account. You can read more about access tokens here.

For “Upload video and index”, fill out the required parameters and Video URL. Select “Add new parameter” and select “Callback URL”.

Leave the callback URL empty for now. You will add it after you have finished the second flow and when the callback URL is created.
Add the parameter “Indexing Preset” and set it to “AudioOnly”.
You can also choose the default value for the other parameters or set them according to your needs.
Click “Save”, and you are ready to move on to configuring the second flow, which will be used to generate the captions once the upload and indexing process is completed.
Set up the caption’s Generating flow
Once the uploading and indexing from the first flow is completed, it will send an HTTP request with the correct callback URL to trigger the second flow. It will also retrieve the captions generated by the Video Indexer. In this example, the output of your indexing job is stored in the OneDrive folder you set up. However, it is up to you to decide on how or where you would like to store the output.
Create the second flow separately from the first one:

To set up this flow, you will need to provide your Video Indexer API Key and OneDrive Business credentials again. Update the same parameters as you did for the first flow.
For your trigger, you will see the HTTP POST URL field. The URL will not be generated until after you save your flow; however, you will need the URL eventually. We will come back to this later.
Fill out your account Location and ID to get the Video Indexer account token.
Go to the “Get Video Index” action and fill out the required parameters. For Video ID, put in the following expression: triggerOutputs()[‘queries’][‘id’]

This expression tells the connector to get the Video ID from the output of your trigger. In this case, the output of your trigger will be the output of “Upload video and index” from your first trigger.
Note: This flow can be built without the “Get Video Index” action but using it will provide the “Video Name” field which we will use later to name the captions file.
Go to the “Get Video Captions” action and fill out the required parameters. For Video ID, put in the same value you used in the last action: triggerOutputs()[‘queries’][‘id’]

Go to the “Create file” action and select the folder in which you want the captions to be saved. Every video you upload will create a separate VTT caption file. You can set the caption file name to be identical to your video name by using the Name field from the “Get Video Index” action. For File Content, go to the Dynamic Fields of “Get Video Caption” and click on “See more”. Select the Body field.

Click “Save flow.”
Once the flow is saved, an HTTP POST URL is created in the trigger. Copy the URL from the trigger.

Now, go back to the first flow and paste the URL in the “Upload video and index” action for the Callback URL parameter.
Make sure both flows are saved, and you’re good to go!
Try out your newly created Logic App or Power Automate solution by adding a video to your OneDrive folder. Go back a few minutes later and you will see that the captions appear in the destination folder.
Clean up resources
After you are done with this tutorial, feel free to keep this Logic App or Power Automate solution up and running. However, if you do not want to keep this solution running, turn off both of your flows if you are using Power Automate or disable both flows if you’re using Logic Apps.
Next steps and further reading
For further exploration, read our tutorial on how to use Video Indexer with Logic Apps and Power Automate to automatically index videos on your blob storage and extract the insights JSON.
This tutorial showed an example of Video Indexer connectors. You can use the Video Indexer connectors for any API call provided by Video Indexer. For example, you can upload and retrieve insights, translate the results, get embed-able widgets and even customize your models. In addition, you can choose to trigger those actions based on different sources like updates to file repositories or emails sent. Next, choose to have the results updated to our relevant infrastructure/application or generate other action items.
by Scott Muniz | Sep 16, 2020 | Uncategorized
This article is contributed. See the original author and article here.
It’s time for some more container goodness coming your way! As you probably know, we have been adding some new capabilities into the Containers extension of Windows Admin Center. In recent months we added new capabilities to help not only better manage container images and containers, but to also help you build new container images based on the source of your application. With Windows Admin Center, customers can now containerize existing applications, even if you don’t have the code from which the app was built from and with no developer involvement.
Today we are adding some cool new functionality to the extension again!
Install and configure the container host
Until now, the Containers extension assumed the container host was already configured and ready to go. If that was not the case, users would have to go to the server and install Docker and its dependencies. Now, we have a totally streamlined process inside of Windows Admin Center itself:

When you select the option to install Docker from Windows Admin Center, we will download the package, install the Docker module and the Containers feature, and restart the server. When the server is back online, we will ensure the Docker service is up and running so your container host is properly configured.
Common base container images to pull
When getting started with containers, the first thing you want to do is to ensure you have the base images pulled so when you run a new container or create a new image, you don’t have to wait for the image pull times. However, sometimes we’re not even sure which images to pull. To help with that, we’re adding an option to check the most common Windows base container images:

Keep in mind that while the Windows Admin Center UI allows you select any of the images available, the pull will fail if you try to pull an image that has an OS version higher than the container host you’re targeting. For example: If you have a Windows Server 2019 container host, you can pull LTSC 2019 images or older – not newer.
Disabling functionalities on Kubernetes nodes
One of the flexibilities of the Containers extension on Windows Admin Center is that you can target any Windows container host- even the ones that are part of a Kubernetes cluster. However, some actions on the Containers extension might cause issues in your Kubernetes environment.
For that reason, we are disabling destructive functionalities when Windows Admin Center finds the “kublet.exe” service running on a container host. The disabled functionalities when targeting a Kubernetes node are:
- On the containers tab:
- End containers
- Delete containers
- On the images tab:
- Delete container images
- Run container images
Containers extension now available on public extension feed
On previous updates, the Containers extension was available on the Insiders feed, which required users to manually add that feed to Windows Admin Center. As of today, new updates will go to the public extension feed, so you don’t have to do anything – other than install/update the extension:

We want your feedback!
We’ve been hammering this message over and over, but it is never too much! We need your feedback!
The team would love to understand how you are using the Containers extension, what is working and what is not, as well as what you would like to see added! Do you have an app you’d like to see containerized with Windows Admin Center that you currently can’t? Great! Let us know!
You can send your comments and feedback our way either via comments below, or our GitHub repo by opening a new issue.
Find on Twitter @vrapolinario
by Scott Muniz | Sep 16, 2020 | Uncategorized
This article is contributed. See the original author and article here.

The Microsoft Create: series is back again, now with Microsoft Create: Serverless!
Join us for a half-day of conversations at Microsoft Create: Serverless and connect with the experts and community members to discuss how you can run code for any application without having to manage servers. In this 4 hour session, hear from our keynote speakers Chris Coyier and Chris Nwamba on the Serverless landscape in 2020 and the trends you should look out for.
You will also learn:
Also, learn how to move an existing Express API app to Serverless from Chris Nwamba and Gwyneth Peña S at our workshop and earn an exclusive Azure Hero Builder Badge(r) at the same time! Join us for our open mic networking sessions – Community on Air after event. More details here on aka.ms/createserverless
by Scott Muniz | Sep 16, 2020 | Uncategorized
This article is contributed. See the original author and article here.
Countdown to Microsoft Ignite 2020 (September 22-24, 2020) has officially begun as we are less than a week away from sharing with you our product innovations , roadmap and customer stories. This year’s event will be a free 48-hour all-digital experience. If you have not registered yet, secure your spot today and browse the session catalog to build your personalized schedule.

Here’s a quick rundown of sessions to get you started if you’re looking to learn more about OneDrive.
Note: The links will be active on 9/22.
Keg Segment
KEY04 | The Future of Work by Jared Spataro
When, where, and how we work is fundamentally changing. Microsoft is in a unique position to understand the secular trends that are reshaping the future of work today, and for decades to come. Learn about the risks and durable trends impacting teamwork, organizational productivity, and employee wellbeing. Jared Spataro, CVP of Modern Work, will share the latest research and a framework for success for every IT professional and business leader to empower People for the new world of work, as well as the latest innovation in Microsoft 365 and Teams empowering human ingenuity at scale.
Tuesday, September 22 | 10:00 AM – 10:20 AM PDT
Tuesday, September 22 | 6:00 PM – 6:20 PM PDT
Wednesday, September 23 | 2:00 AM – 2:20 AM PDT
Digital Breakout
DB158 | “Enabling collaboration, communication, and knowledge sharing with Microsoft Teams, SharePoint, Project Cortex, and more” by Jeff Teper
Organizations are moving to a hybrid workplace to support the needs of remote and onsite employees. Jeff and team dive into how teams collaborate fluidly with the latest innovations across Microsoft Teams, SharePoint, Microsoft Lists and OneDrive. He’ll also showcase how organizations can improve employee engagement, communications, and knowledge sharing through SharePoint, Yammer, and Project Cortex.
Tuesday, Sept. 22nd | 12:15pm – 12:45pm PDT
Tuesday, Sept. 22nd | 8:15pm – 8:45pm PDT
Wednesday, Sept. 23rd | 4:15am – 4:45am PDT
DB136 | Embrace a New Way of Work with Microsoft 365 by Angela Byers and Shin-Yi Lim with Ed Kopp (Rockwell Automation) and Magnus Lidström (Scania)
In an unprecedented time of workplace transformation, opportunities to thrive belong to those who embrace and adapt to the new normal. How do we collaborate remotely, stay connected and produce excellent work as a team? How do we stay productive while working from home? Join us for a new way to think about and manage work with Microsoft 365. Learn how Microsoft 365 makes it easier for your team to organize, share and track work all in one place – so you save time and accomplish more together.
Wednesday, September 23 | 12:15 PM – 12:45 PM PDT
Wednesday, September 23 | 8:15 PM – 8:45 PM PDT
Thursday, September 24 | 4:15 AM – 4:45 AM PDT
Ask the Experts
ATE-DB136 | Ask the Experts: Embrace a New Way of Work with Microsoft 365
There will also be two (2x) Ask the Experts opportunities focused on files, lists and tasks running in different time zones to ensure everyone has a chance to connect with our engineering and marketing teams for Q&A. Add them to your session calendar:
Wednesday, September 23 | 9:00 PM – 9:30 PM PDT
Thursday, September 24 | 5:00 AM – 5:30 AM PDT
Pre-Recorded for On Demand
OD315 | “What’s new and coming to OneDrive” by Jason Moore and Ankita Kirti
OneDrive is the intelligent files app for Micrososft 365. In this session, we cover upcoming innovations and explore how new functionality empowers you to work with all files across Microsoft 365, from any device; and to share and collaborate on files seamlessly with people inside and outside your organization. We demo the latest features for Windows, Mac, Web, iOS, and Android as well as share our upcoming feature roadmap.
Skilling Videos
Check out more content and resources in the Virtual Hub and Microsoft Tech Community Video Hub – all links will be live when Ignite officially kicks off.
External sharing & collaboration with OneDrive, SharePoint & Teams by Rafael Lopez-Uricoechea and Stephen Rice
Microsoft 365 provide a rich set of solutions for collaborating with users both inside and outside of your organization. This session offers an in-depth look at existing and brand-new external sharing capabilities. Learn best practices for configuring external sharing and educating users on how to best leverage Microsoft Teams,OneDrive and SharePoint for collaborating with others.
Deployment and configuration of OneDrive sync by Gaia Carini and Carter Green
Are you ready to roll out OneDrive? Learn about how to plan and execute your rollout of OneDrive sync app to get your users into the “ideal state” maximizing creativity and collaboration. Come hear the best tips, tricks, and shortcuts to ensure a quick and easy deployment as well as the upcoming admin and end user features of OneDrive sync.
Driving OneDrive adoption with a remote workforce by Randy Wong and Lauren Khoo
Whether you are working at your office, from home or on the go , OneDrive is essential in connecting you to all your files as well as driving collaboration. Explore best practices , tips and tricks for adopting OneDrive when working remotely. Discover training material for users and admins.
Monitor and manage SharePoint in Microsoft 365 by Dave Minasyan, Rk Menon and Trent Green
SharePoint admins, this session is for you. The intelligent intranet is personal, collaborative, and ever changing. In this session, we’ll focus on upcoming enhancements to the SharePoint admin center – an updated home page, new site management, content services reporting, combined OneDrive admin settings, and more. Join in to see what’s coming to monitor and manage the state of your organization’s intranet get informed of all the latest enhancements, and utilize the new experiences to stay productive
What’s new to easily migrate your content to Microsoft 365 by Eric Warnke and Yogesh Ratnaparkhi
Join us for a demo-driven session on how to migrate your organization’s content into Microsoft 365 with ease and speed! We’ll focus on three areas: moving off legacy file shares, content from SharePoint Server on-premises, and other clouds storage providers like Box, Dropbox, and G Suite. Learn about our comprehensive set of first-party tools, services, and partner ecosystem to successfully migrate your content to Microsoft 365. Learn all you need to know about Migration Manager (aka.ms/MigrationManager), the SharePoint Migration Tool (aka.ms/SPMT), and Mover (aka.ms/Mover).
Turbocharging Microsoft 365 cloud user experiences by Shyam Narayan
Microsoft 365 provides features and platform capabilities designed to make all user experiences better, faster, and easier to govern. Learn how to improve and optimize the performance of SharePoint sites and portals. Explore new ways to drive information architecture and navigation, and how to avoid common pitfalls. This session will highlight both existing investments and new announcements to further turbocharge your Microsoft 365 overall experience.
What’s new in Security & Compliance in SharePoint and OneDrive by Sesha Mani
Microsoft runs on trust, as digital data grows exponentially in your organization it is super critical to safeguard your sensitive corporate data. Microsoft is leading the way in enterprise-grade security and comprehensive compliance solutions. In this session you will learn what’s new and upcoming for SharePoint and OneDrive services in Security & Compliance areas. We will also cover how we help you achieve zero trust security with existing controls/policies in SharePoint and OneDrive.
Simplify email and data migration to Microsoft 365 with Microsoft’s migration service [FastTrack] by Tom Wisnowski
Did you know that FastTrack can help migrate your data when you move to Microsoft 365? Come learn about your migration options: self-serve, partners, and FastTrack experts can help you migrate your data at no additional cost. Find out what’s new with our migration services, see a demo of our Migration Hub and hear real-world customer stories. We’ll show you how simple it is to get started and securely migrate email and data to Exchange Online, SharePoint Online, and OneDrive for Business.
Virtual Booth (Thursday, 9/24)
Toward the end of Ignite, the OneDrive and SharePoint product group will host Virtual Booths via Microsoft Teams. This is a time to see product demos, ask questions and provide feedback directly to the product group team members.
Use this time to learn, connect and engage across several focus areas for OneDrive and SharePoint (links coming soon):
Other product related, pre-Ignite 2020 session guides
You can also review the following related guides to other technology:
Learn more at Microsoft.com/Ignite and follow the action on Twitter: @MS_Ignite, @SharePoint, @OneDrive, @Project, @MSVisio and @MicrosoftStream.
The OneDrive team is really looking forward to engaging with all of you. Be sure to stay connected to the OneDrive community blog where we’ll share more information about the announcements.
Thank you for your time,
Ankita Kirti
Product Marketing Manager, OneDrive
Recent Comments